From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AC693139694 for ; Fri, 3 Mar 2017 23:17:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C29CCE0C39; Fri, 3 Mar 2017 23:17:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E810E0C39 for ; Fri, 3 Mar 2017 23:17:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76E88340A23 for ; Fri, 3 Mar 2017 23:17:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E59B85B6E for ; Fri, 3 Mar 2017 23:17:15 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1488583028.3a9a3024c7e0a7160c116e7bd845bd058742b917.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/mr/mr-1.99999999.ebuild X-VCS-Directories: dev-vcs/mr/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 3a9a3024c7e0a7160c116e7bd845bd058742b917 X-VCS-Branch: master Date: Fri, 3 Mar 2017 23:17:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5d8dccad-a168-4dff-b8db-5c3cd772f72d X-Archives-Hash: 19a25140b906c9184d92d3531d0cc937 commit: 3a9a3024c7e0a7160c116e7bd845bd058742b917 Author: Matthias Maier gentoo org> AuthorDate: Fri Mar 3 23:17:08 2017 +0000 Commit: Matthias Maier gentoo org> CommitDate: Fri Mar 3 23:17:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9a3024 dev-vcs/mr: add live ebuild Package-Manager: Portage-2.3.3, Repoman-2.3.2 dev-vcs/mr/mr-1.99999999.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-vcs/mr/mr-1.99999999.ebuild b/dev-vcs/mr/mr-1.99999999.ebuild new file mode 100644 index 00000000000..b366a34e942 --- /dev/null +++ b/dev-vcs/mr/mr-1.99999999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit git-r3 + +DESCRIPTION="Multiple Repository management tool" +HOMEPAGE="https://myrepos.branchable.com/" +SRC_URI="" +EGIT_REPO_URI="git://myrepos.branchable.com/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + dev-perl/libwww-perl + dev-perl/HTML-Parser" + +src_install() { + dobin mr webcheckout + doman mr.1 webcheckout.1 + dodoc README debian/changelog \ + mrconfig mrconfig.complex + insinto /usr/share/${PN} + doins lib/* +}