Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-config: binutils-config-3-r1.ebuild ChangeLog binutils-config-3.ebuild
Date: Thu, 29 Sep 2011 20:27:07
Message-Id: 20110929202656.B5B1120036@flycatcher.gentoo.org
1 vapier 11/09/29 20:26:56
2
3 Modified: ChangeLog
4 Added: binutils-config-3-r1.ebuild
5 Removed: binutils-config-3.ebuild
6 Log:
7 Make linker switching more general, and add a `die` helper.
8
9 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.50 sys-devel/binutils-config/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/ChangeLog?rev=1.50&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/ChangeLog?rev=1.50&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/ChangeLog?r1=1.49&r2=1.50
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/ChangeLog,v
21 retrieving revision 1.49
22 retrieving revision 1.50
23 diff -u -r1.49 -r1.50
24 --- ChangeLog 29 Aug 2011 00:56:45 -0000 1.49
25 +++ ChangeLog 29 Sep 2011 20:26:56 -0000 1.50
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-devel/binutils-config
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/ChangeLog,v 1.49 2011/08/29 00:56:45 vapier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/ChangeLog,v 1.50 2011/09/29 20:26:56 vapier Exp $
31 +
32 +*binutils-config-3-r1 (29 Sep 2011)
33 +
34 + 29 Sep 2011; Mike Frysinger <vapier@g.o> files/binutils-config-3,
35 + -binutils-config-3.ebuild, +binutils-config-3-r1.ebuild:
36 + Make linker switching more general, and add a `die` helper.
37
38 29 Aug 2011; Mike Frysinger <vapier@g.o> files/binutils-config-3:
39 Make profile switching more atomic #380759.
40
41
42
43 1.1 sys-devel/binutils-config/binutils-config-3-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/binutils-config-3-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-config/binutils-config-3-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: binutils-config-3-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/binutils-config-3-r1.ebuild,v 1.1 2011/09/29 20:26:56 vapier Exp $
53
54 DESCRIPTION="Utility to change the binutils version being used"
55 HOMEPAGE="http://www.gentoo.org/"
56 SRC_URI=""
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
61 IUSE=""
62
63 RDEPEND="userland_GNU? ( >=sys-apps/findutils-4.2 )"
64
65 src_install() {
66 newbin "${FILESDIR}"/${PN}-${PV} ${PN} || die
67 doman "${FILESDIR}"/${PN}.8
68 }