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: Sun, 14 Apr 2019 09:22:46
Message-Id: 1555233749.7d61018d40319e9dc1379b80c2292fe30c429183.grobian@gentoo
1 commit: 7d61018d40319e9dc1379b80c2292fe30c429183
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 14 08:35:21 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 14 09:22:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d61018d
7
8 app-portage/portage-utils: drop 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.64.ebuild | 43 ----------------------
15 2 files changed, 44 deletions(-)
16
17 diff --git a/app-portage/portage-utils/Manifest b/app-portage/portage-utils/Manifest
18 index 481c23a3390..d40cb87dad2 100644
19 --- a/app-portage/portage-utils/Manifest
20 +++ b/app-portage/portage-utils/Manifest
21 @@ -1,4 +1,3 @@
22 DIST portage-utils-0.62.tar.xz 527216 BLAKE2B ac8331b74998ddb86db55a937992447bccf60611cc259ceb5fe79918c1a43b6dc4633e4ad64462e2df5c39e8d8aa193bd57ab24dcd714e088357eb3cb177e972 SHA512 71b2888cef1bf7549c3829cc7d4bbe2e99a711434bae4fb78c55b9c37815b61623518f19ab87db30f533d771398933c085640dc7c8ffcedf87a70ac702a52fa1
23 -DIST portage-utils-0.64.tar.xz 533124 BLAKE2B c3e0ecdc2d82af197dabb8434677d4c3bfbbee01c482c496d89d2f7be988ef894e0b3c7cb64337216144644a48ee3213fc1683ae6d75091e471189a4550b8c71 SHA512 e384b88454607aa9123ac3a71d55fb16de475ba59f4ba6efd236594f42140e75650696430138cdb6e1c4e1792db091bbc1db42b1c1102fd579af6514ecefffb7
24 DIST portage-utils-0.73.tar.xz 1585564 BLAKE2B b743f459770ebceaa86cc47b0a9d0172ee495bbe2930cd57c2909d3ac2d7c1672447e84240245e1b98922004f4f34418d75b39c7e1550a34a07b964b7ecbcc8d SHA512 d35af62e3b6551c5224a3afb89ebf2e08cf42de266389c3423782c19fcfe8934433a4554ea5ed629de495a66371f0220c479fa84f24d68655211b8538e18d105
25 DIST portage-utils-0.74.tar.xz 1587792 BLAKE2B 7c4588e3d44266a5260df42cc685aa03c584248e9970956033e4191a7a842a4b2162110ac99c2bb18645aaafc6ae6ee960e9b26ba0a8863497911eef1e943f64 SHA512 cd3f44c135b3d44e15a95eed41281fce62f225a9d05d5d5bb1be230b2d59cdb87755f011b313a9ec32e4cafdf3b3979c4ef423365edd7dcc472ca2e38c09c83e
26
27 diff --git a/app-portage/portage-utils/portage-utils-0.64.ebuild b/app-portage/portage-utils/portage-utils-0.64.ebuild
28 deleted file mode 100644
29 index 1a7cb5264db..00000000000
30 --- a/app-portage/portage-utils/portage-utils-0.64.ebuild
31 +++ /dev/null
32 @@ -1,43 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI="5"
37 -
38 -inherit toolchain-funcs
39 -
40 -DESCRIPTION="small and fast portage helper tools written in C"
41 -HOMEPAGE="https://wiki.gentoo.org/wiki/Portage-utils"
42 -SRC_URI="mirror://gentoo/${P}.tar.xz
43 - https://dev.gentoo.org/~vapier/dist/${P}.tar.xz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -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"
48 -IUSE="nls static"
49 -
50 -RDEPEND="dev-libs/iniparser:0"
51 -DEPEND="${RDEPEND}
52 - app-arch/xz-utils
53 - static? ( dev-libs/iniparser:0[static-libs] )"
54 -
55 -src_prepare() {
56 - # bug #638970, caused by gemato writing Manifest.gz files in
57 - # metadata/md5-cache dir, unlike hashgen
58 - sed -i -e '/find [.] -mindepth/s/-type f/-type f ! -name "Manifest.*"/' \
59 - tests/atom_explode/dotest || die
60 -}
61 -
62 -src_configure() {
63 - # Avoid slow configure+gnulib+make if on an up-to-date Linux system
64 - if use prefix || ! use kernel_linux || \
65 - has_version '<sys-libs/glibc-2.10'
66 - then
67 - econf --with-eprefix="${EPREFIX}"
68 - else
69 - tc-export CC
70 - fi
71 -}
72 -
73 -src_compile() {
74 - emake NLS=$(usex nls) STATIC=$(usex static)
75 -}