Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/repo-commit/
Date: Sat, 29 Aug 2020 16:32:33
Message-Id: 1598718685.0201732a1f26938d009a5e06c94da79fbcb2524b.soap@gentoo
1 commit: 0201732a1f26938d009a5e06c94da79fbcb2524b
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 16:31:25 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 16:31:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0201732a
7
8 app-portage/repo-commit: Sync live ebuild
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 app-portage/repo-commit/repo-commit-9999.ebuild | 32 ++++++++++++-------------
14 1 file changed, 15 insertions(+), 17 deletions(-)
15
16 diff --git a/app-portage/repo-commit/repo-commit-9999.ebuild b/app-portage/repo-commit/repo-commit-9999.ebuild
17 index 97ac51081e0..5e2bdee57fc 100644
18 --- a/app-portage/repo-commit/repo-commit-9999.ebuild
19 +++ b/app-portage/repo-commit/repo-commit-9999.ebuild
20 @@ -1,29 +1,27 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 +EAPI=7
27
28 -#if LIVE
29 -AUTOTOOLS_AUTORECONF=yes
30 -EGIT_REPO_URI="https://bitbucket.org/gentoo/${PN}.git"
31 +inherit out-of-source
32
33 -inherit git-r3
34 -#endif
35 -
36 -inherit autotools-utils
37 +if [[ ${PV} == *9999 ]]; then
38 + EGIT_REPO_URI="https://bitbucket.org/gentoo/${PN}.git"
39 + inherit autotools git-r3
40 +else
41 + SRC_URI="https://www.bitbucket.org/gentoo/${PN}/downloads/${P}.tar.bz2"
42 + KEYWORDS="~amd64 ~x86"
43 +fi
44
45 DESCRIPTION="A repository commit helper"
46 HOMEPAGE="https://bitbucket.org/gentoo/repo-commit/"
47 -SRC_URI="https://www.bitbucket.org/gentoo/${PN}/downloads/${P}.tar.bz2"
48
49 LICENSE="BSD"
50 SLOT="0"
51 -KEYWORDS="~amd64 ~x86"
52 -IUSE=""
53
54 -RDEPEND=">=sys-apps/portage-2.2.0_alpha86"
55 -#if LIVE
56 +RDEPEND="sys-apps/portage"
57
58 -KEYWORDS=
59 -SRC_URI=
60 -#endif
61 +src_prepare() {
62 + default
63 + [[ ${PV} == *9999 ]] && eautoreconf
64 +}