Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils-config/
Date: Thu, 06 Aug 2020 21:22:51
Message-Id: 1596748957.c669615c7bb8ef3a408ef39de5165cde1721ea19.slyfox@gentoo
1 commit: c669615c7bb8ef3a408ef39de5165cde1721ea19
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 6 21:19:06 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 21:22:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c669615c
7
8 sys-devel/binutils-config: drop old
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 sys-devel/binutils-config/Manifest | 1 -
14 .../binutils-config/binutils-config-5.3.1.ebuild | 43 ----------------------
15 2 files changed, 44 deletions(-)
16
17 diff --git a/sys-devel/binutils-config/Manifest b/sys-devel/binutils-config/Manifest
18 index 2add03ff704..11c1fba10ee 100644
19 --- a/sys-devel/binutils-config/Manifest
20 +++ b/sys-devel/binutils-config/Manifest
21 @@ -1,2 +1 @@
22 -DIST binutils-config-5.3.1.tar.xz 6688 BLAKE2B 3bc1b96a96b0c30e425f4ffd42f86a09e2a80cc3ad1dcf77d4b5d2d9eb3d6bc607f78dfff1ae888fe8abfe44405a1e4d1ab325aa92fc5889c18aa3187a506647 SHA512 c6d188b70935604a8a519c036dda210c20e5b6e916fab33e5026bd5c78adfff0a1aa85003759b751275576ff33471b25c920beb6b1c088115f28918389e09ce2
23 DIST binutils-config-5.3.2.tar.xz 6840 BLAKE2B 4f02b8d1f3f8d4adca811772edba6167fc0e739f8ff1e895f30745eca45b559da6622bb76a0cac6016d6e864fe7ad6c921c64c7ec1c18c130b3a64a1dd7b9cbc SHA512 03dfecf46fee941b7b9fc35b63ffd22c795ab54f0444f16fc00ed44d27c81f6baaca33170fb700cfc4d767be469f305890882839536363bc466ad200d28d2228
24
25 diff --git a/sys-devel/binutils-config/binutils-config-5.3.1.ebuild b/sys-devel/binutils-config/binutils-config-5.3.1.ebuild
26 deleted file mode 100644
27 index 2a949b4fb17..00000000000
28 --- a/sys-devel/binutils-config/binutils-config-5.3.1.ebuild
29 +++ /dev/null
30 @@ -1,43 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit prefix
37 -
38 -if [[ ${PV} == 9999 ]]; then
39 - EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/binutils-config.git"
40 - inherit git-r3
41 -else
42 - SRC_URI="https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz"
43 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86"
44 -fi
45 -
46 -DESCRIPTION="Utility to change the binutils version being used"
47 -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Toolchain"
48 -
49 -LICENSE="GPL-2"
50 -SLOT="0"
51 -IUSE="+native-symlinks"
52 -
53 -# We also RDEPEND on sys-apps/findutils which is in base @system
54 -RDEPEND="sys-apps/gentoo-functions"
55 -
56 -src_compile() {
57 - emake DESTDIR="${D}" PV="${PV}" USE_NATIVE_LINKS="$(usex native-symlinks)"
58 -}
59 -
60 -src_install() {
61 - emake DESTDIR="${D}" PV="${PV}" install
62 -
63 - use prefix && eprefixify "${ED}"/usr/bin/${PN}
64 -}
65 -
66 -pkg_postinst() {
67 - # Re-register all targets. USE flags or new versions can change
68 - # installed symlinks.
69 - local x
70 - for x in $(binutils-config -C -l 2>/dev/null | awk '$NF == "*" { print $2 }') ; do
71 - binutils-config ${x}
72 - done
73 -}