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 7C52E138334 for ; Mon, 18 Nov 2019 07:53:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA8BAE0877; Mon, 18 Nov 2019 07:53:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1B91E0877 for ; Mon, 18 Nov 2019 07:53:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AAAAB34CF5A for ; Mon, 18 Nov 2019 07:53:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D002526C for ; Mon, 18 Nov 2019 07:53:19 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1574063539.c97a381152cc54d1c11d1478f000d2c487f724e3.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/repo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/repo/Manifest dev-vcs/repo/metadata.xml dev-vcs/repo/repo-1.26.ebuild X-VCS-Directories: dev-vcs/repo/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: c97a381152cc54d1c11d1478f000d2c487f724e3 X-VCS-Branch: master Date: Mon, 18 Nov 2019 07:53:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aad38333-c170-4400-a120-1aca3754835d X-Archives-Hash: ca2103735c0b16925f497d0185980ed9 commit: c97a381152cc54d1c11d1478f000d2c487f724e3 Author: Mike Frysinger gentoo org> AuthorDate: Mon Nov 18 07:49:58 2019 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Nov 18 07:52:19 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c97a3811 dev-vcs/repo: moved & updated from dev-util/repo Signed-off-by: Mike Frysinger gentoo.org> dev-vcs/repo/Manifest | 1 + dev-vcs/repo/metadata.xml | 10 ++++++++++ dev-vcs/repo/repo-1.26.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-vcs/repo/Manifest b/dev-vcs/repo/Manifest new file mode 100644 index 00000000000..71ea0be1a2e --- /dev/null +++ b/dev-vcs/repo/Manifest @@ -0,0 +1 @@ +DIST repo-1.26 29829 BLAKE2B c5dc74214d404e6c11189a3d34c9a771ed5689da14e64588b5db144b6ea3ec38a727238d7dc6e609a22edb5b84d350210564615016f6b36599cf9e3fc3b34ef9 SHA512 1398fab95b4fb4a24fda93d4054384a801b5b70e3dca3a794f458d8e19582ef833ef5a3a0f3a571121d2d9172ce0e70f8b3c6719f6c2f47643ffe6de181e34b4 diff --git a/dev-vcs/repo/metadata.xml b/dev-vcs/repo/metadata.xml new file mode 100644 index 00000000000..de0e9961d99 --- /dev/null +++ b/dev-vcs/repo/metadata.xml @@ -0,0 +1,10 @@ + + + + + vapier@gentoo.org + + +Tool for managing multiple git repositories. From Google, useful for building Android. + + diff --git a/dev-vcs/repo/repo-1.26.ebuild b/dev-vcs/repo/repo-1.26.ebuild new file mode 100644 index 00000000000..d1563fd6add --- /dev/null +++ b/dev-vcs/repo/repo-1.26.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# NB: The $PV tracks the *repo launcher version*, not the last signed release +# of the repo project. They are confusingly different currently. + +EAPI="7" + +PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8} ) + +inherit python-r1 + +DESCRIPTION="Google tool for managing git, particularly multiple repos" +HOMEPAGE="https://gerrit.googlesource.com/git-repo" +SRC_URI="https://storage.googleapis.com/git-repo-downloads/${P}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + !app-admin/radmind + !dev-util/repo" + +S=${WORKDIR} + +src_install() { + python_foreach_impl python_newscript "${DISTDIR}/${P}" ${PN} +}