Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/install-xattr: install-xattr-9999.ebuild ChangeLog install-xattr-0.2.ebuild
Date: Sun, 01 Jun 2014 01:29:22
Message-Id: 20140601012916.EEAC92004E@flycatcher.gentoo.org
1 blueness 14/06/01 01:29:16
2
3 Modified: ChangeLog
4 Added: install-xattr-9999.ebuild
5 Removed: install-xattr-0.2.ebuild
6 Log:
7 Remove 0.2 and add -9999 for testing
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
10
11 Revision Changes Path
12 1.11 sys-apps/install-xattr/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?rev=1.11&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?rev=1.11&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/ChangeLog?r1=1.10&r2=1.11
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v
21 retrieving revision 1.10
22 retrieving revision 1.11
23 diff -u -r1.10 -r1.11
24 --- ChangeLog 1 Jun 2014 00:32:12 -0000 1.10
25 +++ ChangeLog 1 Jun 2014 01:29:16 -0000 1.11
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-apps/install-xattr
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v 1.10 2014/06/01 00:32:12 blueness Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/ChangeLog,v 1.11 2014/06/01 01:29:16 blueness Exp $
31 +
32 +*install-xattr-9999 (31 May 2014)
33 +
34 + 31 May 2014; Anthony G. Basile <blueness@g.o>
35 + +install-xattr-9999.ebuild, -install-xattr-0.2.ebuild:
36 + Remove 0.2 and add -9999 for testing
37
38 *install-xattr-0.2 (01 Jun 2014)
39
40
41
42
43 1.1 sys-apps/install-xattr/install-xattr-9999.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-9999.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/install-xattr/install-xattr-9999.ebuild?rev=1.1&content-type=text/plain
47
48 Index: install-xattr-9999.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/install-xattr/install-xattr-9999.ebuild,v 1.1 2014/06/01 01:29:16 blueness Exp $
53
54 EAPI=5
55 DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes."
56 HOMEPAGE="http://dev.gentoo.org/~blueness/install-xattr/"
57
58 inherit toolchain-funcs
59
60 if [[ ${PV} == "9999" ]] ; then
61 EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/elfix.git"
62 KEYWORDS=""
63 inherit git-2
64 else
65 SRC_URI="http://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
67 fi
68
69 LICENSE="GPL-3"
70 SLOT="0"
71
72 src_prepare() {
73 tc-export CC
74 }
75
76 src_compile() {
77 if [[ ${PV} == "9999" ]] ; then
78 cd ${WORKDIR}/${P}/misc/${PN}
79 else
80 cd ${WORKDIR}/${PN}
81 fi
82 default
83 }
84
85 src_install() {
86 if [[ ${PV} == "9999" ]] ; then
87 cd ${WORKDIR}/${P}/misc/${PN}
88 else
89 cd ${WORKDIR}/${PN}
90 fi
91 default
92 }
93
94 # We need to fix how tests are done
95 src_test() {
96 true
97 }