summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2019-03-30 06:24:13 -0400
committerAnthony G. Basile <blueness@gentoo.org>2019-03-30 06:24:13 -0400
commit5813b2cd43e22386f37935590c1f5c1c558c29e3 (patch)
tree1b2d62bc164611b7fe49389295c682620deec54e /sys-apps
parentsys-apps/install-xattr: version bump to 0.6, address bug #681866 (diff)
downloadgentoo-5813b2cd43e22386f37935590c1f5c1c558c29e3.tar.gz
gentoo-5813b2cd43e22386f37935590c1f5c1c558c29e3.tar.bz2
gentoo-5813b2cd43e22386f37935590c1f5c1c558c29e3.zip
sys-apps/install-xattr: remove older unstable version
Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/install-xattr/install-xattr-0.5-r1.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/sys-apps/install-xattr/install-xattr-0.5-r1.ebuild b/sys-apps/install-xattr/install-xattr-0.5-r1.ebuild
deleted file mode 100644
index 830b2d6cd4f9..000000000000
--- a/sys-apps/install-xattr/install-xattr-0.5-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes"
-HOMEPAGE="https://dev.gentoo.org/~blueness/install-xattr/"
-
-inherit toolchain-funcs
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/elfix.git"
- inherit git-r3
-else
- SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
- S=${WORKDIR}/${PN}
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-src_prepare() {
- default
- tc-export CC
-}
-
-src_compile() {
- if [[ ${PV} == "9999" ]] ; then
- cd "${WORKDIR}/${P}/misc/${PN}" || die
- fi
- default
-}
-
-src_install() {
- if [[ ${PV} == "9999" ]] ; then
- cd "${WORKDIR}/${P}/misc/${PN}" || die
- fi
- DESTDIR=${ED} emake install
-}
-
-# We need to fix how tests are done
-src_test() {
- true
-}