diff options
author | Alexander Vershilov <qnikst@gentoo.org> | 2013-09-04 07:00:06 +0000 |
---|---|---|
committer | Alexander Vershilov <qnikst@gentoo.org> | 2013-09-04 07:00:06 +0000 |
commit | 53c0e4d1bd9d840c3f19a84e8e5a2258e18b2a11 (patch) | |
tree | ef63c1287d18f3599fcf811ab75ec86fcb96847c /sys-cluster/ploop | |
parent | removed old versions: they doesn't work with in tree kernels (thanks to slepn... (diff) | |
download | gentoo-2-53c0e4d1bd9d840c3f19a84e8e5a2258e18b2a11.tar.gz gentoo-2-53c0e4d1bd9d840c3f19a84e8e5a2258e18b2a11.tar.bz2 gentoo-2-53c0e4d1bd9d840c3f19a84e8e5a2258e18b2a11.zip |
sys-cluster/ploop: remove old version
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xEAD50D64D8D3571A!)
Diffstat (limited to 'sys-cluster/ploop')
-rw-r--r-- | sys-cluster/ploop/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/ploop/ploop-1.7.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/sys-cluster/ploop/ChangeLog b/sys-cluster/ploop/ChangeLog index 73cbc42c9374..f391528b6128 100644 --- a/sys-cluster/ploop/ChangeLog +++ b/sys-cluster/ploop/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/ploop # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.20 2013/09/04 06:11:18 qnikst Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.21 2013/09/04 07:00:06 qnikst Exp $ + + 04 Sep 2013; Alexander Vershilov <qnikst@gentoo.org> -ploop-1.7.ebuild: + sys-cluster/ploop: remove old version *ploop-1.9 (04 Sep 2013) diff --git a/sys-cluster/ploop/ploop-1.7.ebuild b/sys-cluster/ploop/ploop-1.7.ebuild deleted file mode 100644 index 86ee4079976c..000000000000 --- a/sys-cluster/ploop/ploop-1.7.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ploop-1.7.ebuild,v 1.1 2013/06/03 11:36:06 maksbotan Exp $ - -EAPI=5 - -inherit eutils toolchain-funcs multilib systemd - -DESCRIPTION="openvz tool and a library to control ploop block devices" -HOMEPAGE="http://wiki.openvz.org/Download/ploop" -SRC_URI="http://download.openvz.org/utils/ploop/${PV}/src/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug static-libs" - -DEPEND="dev-libs/libxml2" -RDEPEND="${DEPEND}" - -DOCS=( tools/README ) - -src_prepare() { - # Respect CFLAGS and CC, do not add debug by default - sed -i \ - -e 's|CFLAGS =|CFLAGS +=|' \ - -e '/CFLAGS/s/-g -O0 //' \ - -e '/CFLAGS/s/-O2//' \ - -e 's|CC=|CC?=|' \ - -e 's/-Werror//' \ - -e '/DEBUG=yes/d' \ - -e '/LOCKDIR/s/var/run/' \ - Makefile.inc || die 'sed on Makefile.inc failed' - # Avoid striping of binaries - sed -e '/INSTALL/{s: -s::}' -i tools/Makefile || die 'sed on tools/Makefile failed' - - epatch "${FILESDIR}/ploop-1.2-soname.patch" - - # respect AR and RANLIB, bug #452092 - tc-export AR RANLIB - sed -i -e 's/ranlib/$(RANLIB)/' lib/Makefile || die 'sed on lib/Makefile failed' -} - -src_compile() { - emake CC="$(tc-getCC)" V=1 $(usex debug 'DEBUG' '' '=yes' '') -} - -src_install() { - default - ldconfig -n "${D}/usr/$(get_libdir)/" || die - use static-libs || rm "${D}/usr/$(get_libdir)/libploop.a" || die 'remove static lib failed' - - systemd_newtmpfilesd "${FILESDIR}/ploop.tmpfiles" ploop.conf -} - -pkg_postinst() { - elog "Warning - API changes" - elog "1. This version requires running vzkernel >= 2.6.32-042stab061.1" - elog "2. DiskDescriptor.xml created by older ploop versions are converted to current format" -} |