commit:     4d6b7d9a0b6af944a91d125862d6f90401eddb91
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 30 23:10:07 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Mar 30 23:47:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d6b7d9a

sys-apps/keyutils: drop old <1.5.9-r1 versions

 sys-apps/keyutils/Manifest              |  2 -
 sys-apps/keyutils/keyutils-1.5.5.ebuild | 69 ---------------------------------
 sys-apps/keyutils/keyutils-1.5.8.ebuild | 69 ---------------------------------
 sys-apps/keyutils/keyutils-1.5.9.ebuild | 69 ---------------------------------
 4 files changed, 209 deletions(-)

diff --git a/sys-apps/keyutils/Manifest b/sys-apps/keyutils/Manifest
index f984f80..08c5655 100644
--- a/sys-apps/keyutils/Manifest
+++ b/sys-apps/keyutils/Manifest
@@ -1,3 +1 @@
-DIST keyutils-1.5.5.tar.bz2 63397 SHA256 
8fab781fb2d1450b2112a7fbfe6629522ae5a6b901f875a74a201012025a3fc5 SHA512 
372a4881ca5cd679de0e6baa4e0e8c61ec8163b9259b018e1eb4db51fca68c0326d82a745abce96d22de367e88c88fa13b8afe438acfb38af799893630d3ba75
 WHIRLPOOL 
15c03983e18471b97e10f378d97c6e7e9ac7045c1f4721382f500cd8796f4a55575420b515b870ef94714bfb3dc62cb954e66efb2835fcb671c98d2f9ab33ae9
-DIST keyutils-1.5.8.tar.bz2 64880 SHA256 
6c7da37272eb39abc2ebafc9ba4a580d7cf8725b61e1db21e508de7ab24b819c SHA512 
f69b1acd3bff2a821ce31c6a772eea68dfbe57bb1d6128fa344ab9688c9110733b1432176e42b67648ff3a01200f4adbb92e4577132539b4c4af817027ed8f19
 WHIRLPOOL 
e4c8d18c8ea48346a759f0e379a2bb3e6faf30f9c4a4b794485a612e25bbe86a81833e68e28b2def668faa4ff41d476ed5a6cbf105ef76bb31a02169b879f9b6
 DIST keyutils-1.5.9.tar.bz2 74683 SHA256 
4da2c5552c688b65ab14d4fd40fbdf720c8b396d8ece643e040cf6e707e083ae SHA512 
d4ee1dabb87844e18bfd8d094a5bc9ce792c96720b71e77961b6c36bb1addb9acea2a7004ddfba1d09b167af908368162312e5c3656b22a6266955bb57b887e2
 WHIRLPOOL 
0509cce076a32d2f319f596506d4aaeb83e1853ee6337e6a3041e6957e9098f4482ae56a9c6455605b72b3f34701a890e9be666b6fdd752ff14a3d3564dcba19

diff --git a/sys-apps/keyutils/keyutils-1.5.5.ebuild 
b/sys-apps/keyutils/keyutils-1.5.5.ebuild
deleted file mode 100644
index 29ab4b9..0000000
--- a/sys-apps/keyutils/keyutils-1.5.5.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-
-inherit multilib eutils toolchain-funcs linux-info
-
-DESCRIPTION="Linux Key Management Utilities"
-HOMEPAGE="https://people.redhat.com/dhowells/keyutils/";
-SRC_URI="https://people.redhat.com/dhowells/${PN}/${P}.tar.bz2";
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="!prefix? ( >=sys-kernel/linux-headers-2.6.11 )"
-
-pkg_setup() {
-       CONFIG_CHECK="~KEYS"
-       use test && CONFIG_CHECK="${CONFIG_CHECK} ~KEYS_DEBUG_PROC_KEYS"
-       ERROR_KEYS="You must have CONFIG_KEYS to use this package!"
-       ERROR_KEYS_DEBUG_PROC_KEYS="You must have CONFIG_KEYS_DEBUG_PROC_KEYS 
to run the package testsuite!"
-       linux-info_pkg_setup
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-1.5.5-makefile-fixup.patch
-       sed -i \
-               -e '1iRPATH=' \
-               -e '/^C.*FLAGS/s|:=|+=|' \
-               -e 's:-Werror::' \
-               -e '/^BUILDFOR/s:=.*:=:' \
-               -e "/^LIBDIR/s:=.*:=/usr/$(get_libdir):" \
-               -e '/^USRLIBDIR/s:=.*:=$(LIBDIR):' \
-               Makefile || die
-
-       # The lsb check is useless, so avoid spurious command not found 
messages.
-       sed -i -e 's,lsb_release,:,' tests/prepare.inc.sh || die
-       # All the test files are bash, but try to execute via `sh`.
-       sed -i -r \
-               -e 's:([[:space:]])sh([[:space:]]):\1bash\2:' \
-               tests/{Makefile*,*.sh} || die
-       find tests/ -name '*.sh' -exec sed -i '1s:/sh$:/bash:' {} +
-       # Some tests call the kernel which calls userspace, but that will
-       # run the install keyutils rather than the locally compiled one,
-       # so disable round trip tests.
-       rm -rf tests/keyctl/requesting/{bad-args,piped,valid}
-}
-
-src_configure() {
-       tc-export CC
-       tc-export AR
-}
-
-src_test() {
-       # Execute the locally compiled code rather than the
-       # older versions already installed in the system.
-       LD_LIBRARY_PATH=${S} \
-       PATH="${S}:${PATH}" \
-       emake test || die
-}
-
-src_install() {
-       emake DESTDIR="${ED}" install || die
-       dodoc README
-       gen_usr_ldscript -a keyutils
-}

diff --git a/sys-apps/keyutils/keyutils-1.5.8.ebuild 
b/sys-apps/keyutils/keyutils-1.5.8.ebuild
deleted file mode 100644
index 5ac75dc..0000000
--- a/sys-apps/keyutils/keyutils-1.5.8.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit multilib eutils toolchain-funcs linux-info
-
-DESCRIPTION="Linux Key Management Utilities"
-HOMEPAGE="https://people.redhat.com/dhowells/keyutils/";
-SRC_URI="https://people.redhat.com/dhowells/${PN}/${P}.tar.bz2";
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="!prefix? ( >=sys-kernel/linux-headers-2.6.11 )"
-
-pkg_setup() {
-       CONFIG_CHECK="~KEYS"
-       use test && CONFIG_CHECK="${CONFIG_CHECK} ~KEYS_DEBUG_PROC_KEYS"
-       ERROR_KEYS="You must have CONFIG_KEYS to use this package!"
-       ERROR_KEYS_DEBUG_PROC_KEYS="You must have CONFIG_KEYS_DEBUG_PROC_KEYS 
to run the package testsuite!"
-       linux-info_pkg_setup
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-1.5.5-makefile-fixup.patch
-       sed -i \
-               -e '1iRPATH=' \
-               -e '/^C.*FLAGS/s|:=|+=|' \
-               -e 's:-Werror::' \
-               -e '/^BUILDFOR/s:=.*:=:' \
-               -e "/^LIBDIR/s:=.*:=/usr/$(get_libdir):" \
-               -e '/^USRLIBDIR/s:=.*:=$(LIBDIR):' \
-               Makefile || die
-
-       # The lsb check is useless, so avoid spurious command not found 
messages.
-       sed -i -e 's,lsb_release,:,' tests/prepare.inc.sh || die
-       # All the test files are bash, but try to execute via `sh`.
-       sed -i -r \
-               -e 's:([[:space:]])sh([[:space:]]):\1bash\2:' \
-               tests/{Makefile*,*.sh} || die
-       find tests/ -name '*.sh' -exec sed -i '1s:/sh$:/bash:' {} +
-       # Some tests call the kernel which calls userspace, but that will
-       # run the install keyutils rather than the locally compiled one,
-       # so disable round trip tests.
-       rm -rf tests/keyctl/requesting/{bad-args,piped,valid}
-}
-
-src_configure() {
-       tc-export CC
-       tc-export AR
-}
-
-src_test() {
-       # Execute the locally compiled code rather than the
-       # older versions already installed in the system.
-       LD_LIBRARY_PATH=${S} \
-       PATH="${S}:${PATH}" \
-       emake test || die
-}
-
-src_install() {
-       emake DESTDIR="${ED}" install || die
-       dodoc README
-       gen_usr_ldscript -a keyutils
-}

diff --git a/sys-apps/keyutils/keyutils-1.5.9.ebuild 
b/sys-apps/keyutils/keyutils-1.5.9.ebuild
deleted file mode 100644
index 4457f56..0000000
--- a/sys-apps/keyutils/keyutils-1.5.9.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit multilib eutils toolchain-funcs linux-info
-
-DESCRIPTION="Linux Key Management Utilities"
-HOMEPAGE="https://people.redhat.com/dhowells/keyutils/";
-SRC_URI="https://people.redhat.com/dhowells/${PN}/${P}.tar.bz2";
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="!prefix? ( >=sys-kernel/linux-headers-2.6.11 )"
-
-pkg_setup() {
-       CONFIG_CHECK="~KEYS"
-       use test && CONFIG_CHECK="${CONFIG_CHECK} ~KEYS_DEBUG_PROC_KEYS"
-       ERROR_KEYS="You must have CONFIG_KEYS to use this package!"
-       ERROR_KEYS_DEBUG_PROC_KEYS="You must have CONFIG_KEYS_DEBUG_PROC_KEYS 
to run the package testsuite!"
-       linux-info_pkg_setup
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-1.5.5-makefile-fixup.patch
-       sed -i \
-               -e '1iRPATH=' \
-               -e '/^C.*FLAGS/s|:=|+=|' \
-               -e 's:-Werror::' \
-               -e '/^BUILDFOR/s:=.*:=:' \
-               -e "/^LIBDIR/s:=.*:=/usr/$(get_libdir):" \
-               -e '/^USRLIBDIR/s:=.*:=$(LIBDIR):' \
-               Makefile || die
-
-       # The lsb check is useless, so avoid spurious command not found 
messages.
-       sed -i -e 's,lsb_release,:,' tests/prepare.inc.sh || die
-       # All the test files are bash, but try to execute via `sh`.
-       sed -i -r \
-               -e 's:([[:space:]])sh([[:space:]]):\1bash\2:' \
-               tests/{Makefile*,*.sh} || die
-       find tests/ -name '*.sh' -exec sed -i '1s:/sh$:/bash:' {} +
-       # Some tests call the kernel which calls userspace, but that will
-       # run the install keyutils rather than the locally compiled one,
-       # so disable round trip tests.
-       rm -rf tests/keyctl/requesting/{bad-args,piped,valid}
-}
-
-src_configure() {
-       tc-export CC
-       tc-export AR
-}
-
-src_test() {
-       # Execute the locally compiled code rather than the
-       # older versions already installed in the system.
-       LD_LIBRARY_PATH=${S} \
-       PATH="${S}:${PATH}" \
-       emake test
-}
-
-src_install() {
-       emake DESTDIR="${ED}" install
-       dodoc README
-       gen_usr_ldscript -a keyutils
-}

Reply via email to