Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-freebsd/freebsd-ubin: ChangeLog freebsd-ubin-9.2_rc3.ebuild
Date: Wed, 28 Aug 2013 15:33:23
Message-Id: 20130828153317.8D74D2004C@flycatcher.gentoo.org
1 aballier 13/08/28 15:33:17
2
3 Modified: ChangeLog freebsd-ubin-9.2_rc3.ebuild
4 Log:
5 do not move fuser to /bin, bug #469454 by Yuta SATOH
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.97 sys-freebsd/freebsd-ubin/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?rev=1.97&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?rev=1.97&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog?r1=1.96&r2=1.97
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v
19 retrieving revision 1.96
20 retrieving revision 1.97
21 diff -u -r1.96 -r1.97
22 --- ChangeLog 26 Aug 2013 20:45:55 -0000 1.96
23 +++ ChangeLog 28 Aug 2013 15:33:17 -0000 1.97
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sys-freebsd/freebsd-ubin
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.96 2013/08/26 20:45:55 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/ChangeLog,v 1.97 2013/08/28 15:33:17 aballier Exp $
29 +
30 + 28 Aug 2013; Alexis Ballier <aballier@g.o>
31 + freebsd-ubin-9.2_rc3.ebuild:
32 + do not move fuser to /bin, bug #469454 by Yuta SATOH
33
34 *freebsd-ubin-9.2_rc3 (26 Aug 2013)
35
36
37
38
39 1.2 sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild?r1=1.1&r2=1.2
44
45 Index: freebsd-ubin-9.2_rc3.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- freebsd-ubin-9.2_rc3.ebuild 26 Aug 2013 20:45:55 -0000 1.1
52 +++ freebsd-ubin-9.2_rc3.ebuild 28 Aug 2013 15:33:17 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild,v 1.1 2013/08/26 20:45:55 aballier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-9.2_rc3.ebuild,v 1.2 2013/08/28 15:33:17 aballier Exp $
58
59 EAPI=5
60
61 @@ -139,7 +139,7 @@
62
63 # baselayout requires these in /bin
64 dodir /bin
65 - for bin in sed printf fuser; do
66 + for bin in sed printf ; do
67 mv "${D}/usr/bin/${bin}" "${D}/bin/" || die "mv ${bin} failed"
68 dosym /bin/${bin} /usr/bin/${bin} || die "dosym ${bin} failed"
69 done