diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-11-09 20:28:12 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-11-09 20:30:09 -0500 |
commit | 2bef8741a3e11372a1cbd5d1daaf23e118b02353 (patch) | |
tree | 2f803c8707736ac05ddabbe3914b2042133ed43b /sys-apps | |
parent | net-dns/avahi: bump 0.7-r3 to EAPI=7 (diff) | |
download | gentoo-2bef8741a3e11372a1cbd5d1daaf23e118b02353.tar.gz gentoo-2bef8741a3e11372a1cbd5d1daaf23e118b02353.tar.bz2 gentoo-2bef8741a3e11372a1cbd5d1daaf23e118b02353.zip |
sys-apps/install-xattr: version bump to 0.8
See: https://bugs.gentoo.org/699550
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/install-xattr/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/install-xattr/install-xattr-0.8.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/sys-apps/install-xattr/Manifest b/sys-apps/install-xattr/Manifest index f22e4e080e17..fc0ca8e58254 100644 --- a/sys-apps/install-xattr/Manifest +++ b/sys-apps/install-xattr/Manifest @@ -1,2 +1,3 @@ DIST install-xattr-0.5.tar.bz2 16136 BLAKE2B 8973584d4819b9f500dcfb76ed0eaddce725b78e72dfa73ccff52c745e6f041926f8f930e5c5035fa888402c6b530207546098864266268dee2c897404bf7c74 SHA512 0bbde3a548fc5062041b38f90ac09c402f3cb0aebf4f0c331552fc44d39dd3d5e4d73bca0811de36c53af8afa5d22e543a7c90107d272f2a1b97c819b244eb7c DIST install-xattr-0.7.tar.bz2 16200 BLAKE2B bdddd4610e5fbb6f6ccfcdfb37abacff00ada5ca5fa18a6a4ad254b623ebe6dc9d0a2c8931f919f8623ed8f64e9c09584d6beabffbf3c72088f80383b198a2d7 SHA512 1cb4a4e72a9c5820081e032bd0d681ef985a228ad9bb025d5eb31c7b57678348d772f270def803376f2d9d4f8e6ebcede9629ce65eef917b3e8a06d6f40eec44 +DIST install-xattr-0.8.tar.bz2 16359 BLAKE2B 25c483211ea6d01f46d9739fd3f1327e543e8b986a252d97e8b012ff6169a9b6430dc0ab7c184bf04c6665182c242eb37f7059d2d23cecececea723bde74cb56 SHA512 3af95a724d95286854767fe28679b024de8d257ce2d21addecbd40906e10bf48cfd4263609c6c2f436c6a807e91d24118110fda041091fadbefd848c892af778 diff --git a/sys-apps/install-xattr/install-xattr-0.8.ebuild b/sys-apps/install-xattr/install-xattr-0.8.ebuild new file mode 100644 index 000000000000..484fbb669765 --- /dev/null +++ b/sys-apps/install-xattr/install-xattr-0.8.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes" +HOMEPAGE="https://dev.gentoo.org/~blueness/install-xattr/" + +inherit flag-o-matic 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 ~riscv ~s390 ~sh ~sparc ~x86" + S=${WORKDIR}/${PN} +fi + +LICENSE="GPL-3" +SLOT="0" + +src_prepare() { + default + tc-export CC + append-cppflags "-D_FILE_OFFSET_BITS=64" +} + +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 +} |