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: Fri, 10 May 2019 11:30:52
Message-Id: 1557487834.50bc230632f57b9d5315f84e7ce399380b527371.grobian@gentoo
1 commit: 50bc230632f57b9d5315f84e7ce399380b527371
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 10 11:30:34 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri May 10 11:30:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50bc2306
7
8 app-portage/portage-utils: cleanup old
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 app-portage/portage-utils/Manifest | 1 -
14 .../portage-utils/portage-utils-0.73.ebuild | 36 ----------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/app-portage/portage-utils/Manifest b/app-portage/portage-utils/Manifest
18 index d40cb87dad2..1f034f2af8e 100644
19 --- a/app-portage/portage-utils/Manifest
20 +++ b/app-portage/portage-utils/Manifest
21 @@ -1,3 +1,2 @@
22 DIST portage-utils-0.62.tar.xz 527216 BLAKE2B ac8331b74998ddb86db55a937992447bccf60611cc259ceb5fe79918c1a43b6dc4633e4ad64462e2df5c39e8d8aa193bd57ab24dcd714e088357eb3cb177e972 SHA512 71b2888cef1bf7549c3829cc7d4bbe2e99a711434bae4fb78c55b9c37815b61623518f19ab87db30f533d771398933c085640dc7c8ffcedf87a70ac702a52fa1
23 -DIST portage-utils-0.73.tar.xz 1585564 BLAKE2B b743f459770ebceaa86cc47b0a9d0172ee495bbe2930cd57c2909d3ac2d7c1672447e84240245e1b98922004f4f34418d75b39c7e1550a34a07b964b7ecbcc8d SHA512 d35af62e3b6551c5224a3afb89ebf2e08cf42de266389c3423782c19fcfe8934433a4554ea5ed629de495a66371f0220c479fa84f24d68655211b8538e18d105
24 DIST portage-utils-0.74.tar.xz 1587792 BLAKE2B 7c4588e3d44266a5260df42cc685aa03c584248e9970956033e4191a7a842a4b2162110ac99c2bb18645aaafc6ae6ee960e9b26ba0a8863497911eef1e943f64 SHA512 cd3f44c135b3d44e15a95eed41281fce62f225a9d05d5d5bb1be230b2d59cdb87755f011b313a9ec32e4cafdf3b3979c4ef423365edd7dcc472ca2e38c09c83e
25
26 diff --git a/app-portage/portage-utils/portage-utils-0.73.ebuild b/app-portage/portage-utils/portage-utils-0.73.ebuild
27 deleted file mode 100644
28 index 26bbfdf9535..00000000000
29 --- a/app-portage/portage-utils/portage-utils-0.73.ebuild
30 +++ /dev/null
31 @@ -1,36 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
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 -SRC_URI="mirror://gentoo/${P}.tar.xz
42 - https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 -IUSE="nls static"
48 -
49 -RDEPEND="dev-libs/iniparser:0"
50 -DEPEND="${RDEPEND}
51 - app-arch/xz-utils
52 - static? ( dev-libs/iniparser:0[static-libs] )"
53 -
54 -src_configure() {
55 - # Avoid slow configure+gnulib+make if on an up-to-date Linux system
56 - if use prefix || ! use kernel_linux || \
57 - has_version '<sys-libs/glibc-2.10'
58 - then
59 - econf --with-eprefix="${EPREFIX}"
60 - else
61 - tc-export CC
62 - fi
63 -}
64 -
65 -src_compile() {
66 - emake NLS=$(usex nls) STATIC=$(usex static)
67 -}