Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/portage-utils/
Date: Thu, 30 May 2019 10:29:37
Message-Id: 1559211998.3aeaba5688ef7a40803aedc6b3f8d6c51847bd61.grobian@gentoo
1 commit: 3aeaba5688ef7a40803aedc6b3f8d6c51847bd61
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 30 10:26:13 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Thu May 30 10:26:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aeaba56
7
8 app-portage/portage-utils: add RC for 0.80
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 app-portage/portage-utils/Manifest | 1 +
14 .../portage-utils-0.80_pre20190530.ebuild | 52 ++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/app-portage/portage-utils/Manifest b/app-portage/portage-utils/Manifest
18 index 1f034f2af8e..f639c7069a1 100644
19 --- a/app-portage/portage-utils/Manifest
20 +++ b/app-portage/portage-utils/Manifest
21 @@ -1,2 +1,3 @@
22 DIST portage-utils-0.62.tar.xz 527216 BLAKE2B ac8331b74998ddb86db55a937992447bccf60611cc259ceb5fe79918c1a43b6dc4633e4ad64462e2df5c39e8d8aa193bd57ab24dcd714e088357eb3cb177e972 SHA512 71b2888cef1bf7549c3829cc7d4bbe2e99a711434bae4fb78c55b9c37815b61623518f19ab87db30f533d771398933c085640dc7c8ffcedf87a70ac702a52fa1
23 DIST portage-utils-0.74.tar.xz 1587792 BLAKE2B 7c4588e3d44266a5260df42cc685aa03c584248e9970956033e4191a7a842a4b2162110ac99c2bb18645aaafc6ae6ee960e9b26ba0a8863497911eef1e943f64 SHA512 cd3f44c135b3d44e15a95eed41281fce62f225a9d05d5d5bb1be230b2d59cdb87755f011b313a9ec32e4cafdf3b3979c4ef423365edd7dcc472ca2e38c09c83e
24 +DIST portage-utils-0.80_pre20190530.tar.xz 1758056 BLAKE2B 2d595db45ecfe125da80924b145be4d1ebfcda09afb3dd39c4dfa084b4113e162637cbfc8f3362554b39de55339462de9714cbef6194816b7340e77c335d3432 SHA512 720bb057e6428d51832d1e92e8ae1fb4d7b6c1f407f78656ef4853822b08525849614f7f760a395385d69400c08bf103eb05308b87bd9f7189cac53e95e93583
25
26 diff --git a/app-portage/portage-utils/portage-utils-0.80_pre20190530.ebuild b/app-portage/portage-utils/portage-utils-0.80_pre20190530.ebuild
27 new file mode 100644
28 index 00000000000..5ff83758116
29 --- /dev/null
30 +++ b/app-portage/portage-utils/portage-utils-0.80_pre20190530.ebuild
31 @@ -0,0 +1,52 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="6"
36 +
37 +inherit toolchain-funcs
38 +
39 +DESCRIPTION="Small and fast Portage helper tools written in C"
40 +HOMEPAGE="https://wiki.gentoo.org/wiki/Portage-utils"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +IUSE="nls static openmp +qmanifest"
45 +
46 +if [[ ${PV} == *9999 ]]; then
47 + inherit git-r3 autotools
48 + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage-utils.git"
49 +else
50 + SRC_URI="mirror://gentoo/${P}.tar.xz
51 + https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz"
52 + KEYWORDS="~amd64 ~arm64 ~hppa ~m68k ~mips ~ppc64 ~s390 ~sh ~sparc ~ppc-aix ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
53 +fi
54 +
55 +RDEPEND="dev-libs/iniparser:0"
56 +DEPEND="${RDEPEND}
57 + app-arch/xz-utils
58 + static? ( dev-libs/iniparser:0[static-libs] )
59 + qmanifest? (
60 + openmp? (
61 + || (
62 + >=sys-devel/gcc-4.2:*[openmp]
63 + sys-devel/clang-runtime:*[openmp]
64 + )
65 + )
66 + app-crypt/libb2
67 + dev-libs/openssl:0=
68 + sys-libs/zlib
69 + app-crypt/gpgme
70 + )
71 + "
72 +
73 +src_prepare() {
74 + default
75 +}
76 +
77 +src_configure() {
78 + econf \
79 + --disable-maintainer-mode \
80 + --with-eprefix="${EPREFIX}" \
81 + $(use_enable qmanifest) \
82 + $(use_enable openmp)
83 +}