commit:     6cb0d9cc760d27e963782e9b93fc6daa48ecc805
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 19 22:31:10 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Apr 19 22:31:10 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb0d9cc

sys-fs/dmraid: Remove old

Package-Manager: portage-2.2.28

 sys-fs/dmraid/Manifest                 |  2 -
 sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild | 72 ----------------------------------
 sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild | 72 ----------------------------------
 3 files changed, 146 deletions(-)

diff --git a/sys-fs/dmraid/Manifest b/sys-fs/dmraid/Manifest
index b73bc97..dc16291 100644
--- a/sys-fs/dmraid/Manifest
+++ b/sys-fs/dmraid/Manifest
@@ -1,3 +1 @@
-DIST dmraid-1.0.0.rc14.tar.bz2 164234 SHA256 
a777354d6d69a9b58d84966cc7b37bc3f5c89539f885ad25fd874ed1c388fbec SHA512 
0804e1bf91f4707b8845affeb987e68c5a85d97119af27ddba2927c87735a59b86b1fec4f03ac0fbdcde89d779d77e21cab4e6936dd1a82b53a0d8b16eb59768
 WHIRLPOOL 
c5612139d3f24be710fb8e6d51eb6ebe0847dcf804c0c0ba1a5f3142a2680de2b33bfae74bbf3cff704b0da5d9d273c432906f1b7fd46e1057b8ef53cc89ca1e
-DIST dmraid-1.0.0.rc15.tar.bz2 190475 SHA256 
30847258b7f946ed908e79af4058bbf2c9a3791728b8231f7c490ca601566c05 SHA512 
8171e0f3e9a14caa919057b011b7ddccd039e9f1577e103429f85062c2d94e3db2e682da9a0029944a145deea2a000f7913e38b41ccc8b29a9b77cfaacc8bf14
 WHIRLPOOL 
3e9aec71e2182599bc9627704304b83ba8add7a0a2afdd4e371188e26ab326a8a1daaaace928e75dd220242384c445add4a92b2df1b5b213731cb515b3add0e1
 DIST dmraid-1.0.0.rc16-3.tar.bz2 232743 SHA256 
93421bd169d71ff5e7d2db95b62b030bfa205a12010b6468dcdef80337d6fbd8 SHA512 
7c45e5117adc52fc2094b1b2bad4f4c518a46317a2196611966d72085ba3587c4ac8d1080f9d934888c01788f2b2d3d621c6f0d3e2a023c0fb1f9f3fa7fc127e
 WHIRLPOOL 
87915ea0013766da8a9722b437bfe146b4b2c7560a7814ac6caab92054ddc3b4b59ceb4d413609d5eaab92b5cee67886ade7924455f1dba19f1b8dabc25d3498

diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild 
b/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild
deleted file mode 100644
index 342432d..0000000
--- a/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit linux-info flag-o-matic eutils
-
-MY_PV=${PV/_/.}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Device-mapper RAID tool and library"
-HOMEPAGE="https://people.redhat.com/~heinzm/sw/dmraid/";
-SRC_URI="https://people.redhat.com/~heinzm/sw/dmraid/src/old/${MY_P}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static selinux"
-
-DEPEND=">=sys-fs/lvm2-2.02.45
-       selinux? ( sys-libs/libselinux
-                  sys-libs/libsepol )"
-S=${WORKDIR}/${PN}/${MY_PV}
-
-pkg_setup() {
-       if kernel_is lt 2 6 ; then
-               ewarn "You are using a kernel < 2.6"
-               ewarn "DMraid uses recently introduced Device-Mapper features."
-               ewarn "These might be unavailable in the kernel you are running 
now."
-       fi
-       if use static && use selinux ; then
-               eerror "ERROR - cannot compile static with libselinux / 
libsepol"
-               die "USE flag conflicts."
-       fi
-}
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-       epatch "${FILESDIR}"/dmraid-destdir-fix.patch
-}
-
-src_compile() {
-       econf \
-               $(use_enable static static_link) \
-               $(use_enable selinux libselinux) \
-               $(use_enable selinux libsepol) \
-               || die "econf failed"
-       emake -j1 || die "emake failed"
-}
-
-src_install() {
-       emake DESTDIR="${D}" install || die "emake install failed"
-       dodoc CHANGELOG README TODO KNOWN_BUGS doc/*
-}
-
-pkg_postinst() {
-       einfo "For booting Gentoo from Device-Mapper RAID you can use 
Genkernel."
-       einfo " "
-       einfo "Genkernel will generate the kernel and the initrd with a 
statically "
-       einfo "linked dmraid binary (its own version which may not be the same 
as this version):"
-       einfo "emerge -av sys-kernel/genkernel"
-       einfo "genkernel --dmraid --udev all"
-       einfo " "
-       einfo "If you would rather use this version of DMRAID with Genkernel, 
copy the distfile"
-       einfo "from your distdir to '/usr/share/genkernel/pkg/' and update the 
following"
-       einfo "in /etc/genkernel.conf:"
-       einfo "DMRAID_VER=\"${MY_PV/_/.}\""
-       einfo "DMRAID_SRCTAR=\"\${GK_SHARE}/pkg/${A}\""
-       einfo " "
-       ewarn "DMRAID should be safe to use, but no warranties can be given"
-       einfo " "
-}

diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild 
b/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild
deleted file mode 100644
index 7d4c0ab..0000000
--- a/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit linux-info flag-o-matic eutils
-
-MY_PV=${PV/_/.}
-
-DESCRIPTION="Device-mapper RAID tool and library"
-HOMEPAGE="https://people.redhat.com/~heinzm/sw/dmraid/";
-SRC_URI="https://people.redhat.com/~heinzm/sw/dmraid/src/${PN}-${MY_PV}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
-IUSE="static selinux"
-
-DEPEND=">=sys-fs/lvm2-2.02.45
-       selinux? ( sys-libs/libselinux
-                  sys-libs/libsepol )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}/${MY_PV}
-
-pkg_setup() {
-       if kernel_is lt 2 6 ; then
-               ewarn "You are using a kernel < 2.6"
-               ewarn "DMraid uses recently introduced Device-Mapper features."
-               ewarn "These might be unavailable in the kernel you are running 
now."
-       fi
-       if use static && use selinux ; then
-               eerror "ERROR - cannot compile static with libselinux / 
libsepol"
-               die "USE flag conflicts."
-       fi
-}
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-       epatch "${FILESDIR}/${PN}-destdir-fix.patch"
-}
-
-src_compile() {
-       econf \
-               $(use_enable static static_link) \
-               $(use_enable selinux libselinux) \
-               $(use_enable selinux libsepol)
-       emake -j1 || die "emake failed"
-}
-
-src_install() {
-       emake DESTDIR="${D}" install || die "emake install failed"
-       dodoc CHANGELOG README TODO KNOWN_BUGS doc/* || die "dodoc failed"
-}
-
-pkg_postinst() {
-       einfo "For booting Gentoo from Device-Mapper RAID you can use 
Genkernel."
-       einfo " "
-       einfo "Genkernel will generate the kernel and the initrd with a 
statically "
-       einfo "linked dmraid binary (its own version which may not be the same 
as this version):"
-       einfo "  emerge -av sys-kernel/genkernel"
-       einfo "  genkernel --dmraid --udev all"
-       einfo " "
-       einfo "If you would rather use this version of DMRAID with Genkernel, 
copy the distfile"
-       einfo "from your distdir to '/usr/share/genkernel/pkg/' and update the 
following"
-       einfo "in /etc/genkernel.conf:"
-       einfo "  DMRAID_VER=\"${MY_PV/_/.}\""
-       einfo "  DMRAID_SRCTAR=\"\${GK_SHARE}/pkg/${A}\""
-       einfo " "
-       ewarn "DMRAID should be safe to use, but no warranties can be given"
-       einfo " "
-}

Reply via email to