Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/install-xattr/
Date: Sat, 30 Mar 2019 10:24:37
Message-Id: 1553941453.5813b2cd43e22386f37935590c1f5c1c558c29e3.blueness@gentoo
1 commit: 5813b2cd43e22386f37935590c1f5c1c558c29e3
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 30 10:24:13 2019 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 30 10:24:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5813b2cd
7
8 sys-apps/install-xattr: remove older unstable version
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 sys-apps/install-xattr/install-xattr-0.5-r1.ebuild | 45 ----------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/sys-apps/install-xattr/install-xattr-0.5-r1.ebuild b/sys-apps/install-xattr/install-xattr-0.5-r1.ebuild
17 deleted file mode 100644
18 index 830b2d6cd4f..00000000000
19 --- a/sys-apps/install-xattr/install-xattr-0.5-r1.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes"
28 -HOMEPAGE="https://dev.gentoo.org/~blueness/install-xattr/"
29 -
30 -inherit toolchain-funcs
31 -
32 -if [[ ${PV} == "9999" ]] ; then
33 - EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/elfix.git"
34 - inherit git-r3
35 -else
36 - SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2"
37 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
38 - S=${WORKDIR}/${PN}
39 -fi
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -
44 -src_prepare() {
45 - default
46 - tc-export CC
47 -}
48 -
49 -src_compile() {
50 - if [[ ${PV} == "9999" ]] ; then
51 - cd "${WORKDIR}/${P}/misc/${PN}" || die
52 - fi
53 - default
54 -}
55 -
56 -src_install() {
57 - if [[ ${PV} == "9999" ]] ; then
58 - cd "${WORKDIR}/${P}/misc/${PN}" || die
59 - fi
60 - DESTDIR=${ED} emake install
61 -}
62 -
63 -# We need to fix how tests are done
64 -src_test() {
65 - true
66 -}