diff options
author | Maxim Koltsov <maksbotan@gentoo.org> | 2015-04-23 13:15:29 +0000 |
---|---|---|
committer | Maxim Koltsov <maksbotan@gentoo.org> | 2015-04-23 13:15:29 +0000 |
commit | e75ba31e628877ee5324f981ebab981e0e6b1d6c (patch) | |
tree | d10e22f8192133c31489243e8718bc8c9656d7b5 /sys-cluster | |
parent | Clean old versions, thanks to Andreis Vinogradovs (diff) | |
download | gentoo-2-e75ba31e628877ee5324f981ebab981e0e6b1d6c.tar.gz gentoo-2-e75ba31e628877ee5324f981ebab981e0e6b1d6c.tar.bz2 gentoo-2-e75ba31e628877ee5324f981ebab981e0e6b1d6c.zip |
Clean old versions, thanks to Andreis Vinogradovs
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/ploop/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/ploop/ploop-1.11.ebuild | 72 |
2 files changed, 4 insertions, 73 deletions
diff --git a/sys-cluster/ploop/ChangeLog b/sys-cluster/ploop/ChangeLog index 228e32f99083..92e72d0ac2c3 100644 --- a/sys-cluster/ploop/ChangeLog +++ b/sys-cluster/ploop/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/ploop # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.34 2015/03/11 08:00:14 civil Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ChangeLog,v 1.35 2015/04/23 13:15:29 maksbotan Exp $ + + 23 Apr 2015; Maxim Koltsov <maksbotan@gentoo.org> -ploop-1.11.ebuild: + Clean old versions, thanks to Andreis Vinogradovs *ploop-1.12.2 (11 Mar 2015) diff --git a/sys-cluster/ploop/ploop-1.11.ebuild b/sys-cluster/ploop/ploop-1.11.ebuild deleted file mode 100644 index c52fbf5a67c2..000000000000 --- a/sys-cluster/ploop/ploop-1.11.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ploop/ploop-1.11.ebuild,v 1.3 2014/07/27 15:29:15 zlogene 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 - virtual/pkgconfig - " - -RDEPEND="dev-libs/libxml2 - !<sys-cluster/vzctl-4.5 - sys-block/parted - sys-fs/e2fsprogs - sys-process/lsof - sys-apps/findutils - " - -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' - - # 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 -} - -pkg_postinst() { - elog "Warning - API changes" - elog "1. This version requires running vzkernel >= 2.6.32-042stab79.5 and vzctl-4.5 ot above" - elog "2. DiskDescriptor.xml created by older ploop versions will be converted to new format" - elog "3. If you have use --diskquota parameter on gentoo CT, please install sys-fs/quota on CT. " - elog "[3] is gentoo specific messages (due to stage3 not contain quota tools) " - elog "" - elog "" - elog "If you use OpenRC init system, please add tmpfiles.setup service in boot runlevel" - elog "Otherwise, openvz container won't work properly!" - -} |