Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/ploop/
Date: Fri, 15 Feb 2019 19:24:12
Message-Id: 1550258638.b3aff0c8263d4a431122ec1e975347a19b272735.zlogene@gentoo
1 commit: b3aff0c8263d4a431122ec1e975347a19b272735
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 19:23:58 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 19:23:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3aff0c8
7
8 sys-cluster/ploop: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 sys-cluster/ploop/Manifest | 1 -
14 sys-cluster/ploop/ploop-1.13.2.ebuild | 58 -----------------------------------
15 2 files changed, 59 deletions(-)
16
17 diff --git a/sys-cluster/ploop/Manifest b/sys-cluster/ploop/Manifest
18 index f1c194393c9..dee8217c2c4 100644
19 --- a/sys-cluster/ploop/Manifest
20 +++ b/sys-cluster/ploop/Manifest
21 @@ -1,2 +1 @@
22 -DIST ploop-1.13.2.tar.bz2 122821 BLAKE2B f71174ae9eba00c00714faa760abb356bf4fa5ede48cdb2366ef685f703f58950d0e49d65634eaca05529289666c548c93e7d526929e3ae51814b0ccc8736cdf SHA512 85a3314dc1114b692cd98290412fd2ea78c516964c712487dd72f8347fd583172d8836f997d63ccade89ee39be031669074d9bc957926b97175e659ec505ddfb
23 DIST ploop-1.14.1.tar.bz2 123962 BLAKE2B d4f4f102d2ec0714d79901bd3193f85514e232dc18ffcab254becb954cf794f3598fe7b0f65d0bbb85766bff5ded9d816900b40b81cb6046c31d8b6459c67618 SHA512 7a235865f071de6e2762923d6591c8c6ee00d0d05ec80c6a2a1332f5b6881ccf827f7ddc40dfe1d663b8abf492a188a23f7d28a43dd553d6e37c8091cb3bc484
24
25 diff --git a/sys-cluster/ploop/ploop-1.13.2.ebuild b/sys-cluster/ploop/ploop-1.13.2.ebuild
26 deleted file mode 100644
27 index e0953461d6c..00000000000
28 --- a/sys-cluster/ploop/ploop-1.13.2.ebuild
29 +++ /dev/null
30 @@ -1,58 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -inherit eutils toolchain-funcs multilib systemd
37 -
38 -DESCRIPTION="openvz tool and a library to control ploop block devices"
39 -HOMEPAGE="https://wiki.openvz.org/Download/ploop"
40 -SRC_URI="https://download.openvz.org/utils/ploop/${PV}/src/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="debug static-libs"
46 -
47 -DEPEND="
48 - dev-libs/libxml2
49 - virtual/pkgconfig
50 - "
51 -
52 -RDEPEND="dev-libs/libxml2
53 - !<sys-cluster/vzctl-4.8
54 - sys-block/parted
55 - sys-fs/e2fsprogs
56 - sys-process/lsof
57 - sys-apps/findutils
58 - "
59 -
60 -DOCS=( tools/README )
61 -
62 -src_prepare() {
63 - # Respect CFLAGS and CC, do not add debug by default
64 - sed -i \
65 - -e 's|CFLAGS =|CFLAGS +=|' \
66 - -e '/CFLAGS/s/-g -O0 //' \
67 - -e '/CFLAGS/s/-O2//' \
68 - -e 's|CC=|CC?=|' \
69 - -e 's/-Werror//' \
70 - -e '/DEBUG=yes/d' \
71 - -e '/LOCKDIR/s/var/run/' \
72 - Makefile.inc || die 'sed on Makefile.inc failed'
73 - # Avoid striping of binaries
74 - sed -e '/INSTALL/{s: -s::}' -i tools/Makefile || die 'sed on tools/Makefile failed'
75 -
76 - # respect AR and RANLIB, bug #452092
77 - tc-export AR RANLIB
78 - sed -i -e 's/ranlib/$(RANLIB)/' lib/Makefile || die 'sed on lib/Makefile failed'
79 -}
80 -
81 -src_compile() {
82 - emake CC="$(tc-getCC)" V=1 $(usex debug 'DEBUG' '' '=yes' '')
83 -}
84 -
85 -src_install() {
86 - default
87 - ldconfig -n "${D}/usr/$(get_libdir)/" || die
88 -}