sys-cluster/ploop: add 1.15

Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
This commit is contained in:
Stephan Hartmann
2022-06-19 18:03:49 +02:00
parent 2f826c6e4b
commit 71c068be98
3 changed files with 77 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ploop-1.14.1.tar.bz2 123962 BLAKE2B d4f4f102d2ec0714d79901bd3193f85514e232dc18ffcab254becb954cf794f3598fe7b0f65d0bbb85766bff5ded9d816900b40b81cb6046c31d8b6459c67618 SHA512 7a235865f071de6e2762923d6591c8c6ee00d0d05ec80c6a2a1332f5b6881ccf827f7ddc40dfe1d663b8abf492a188a23f7d28a43dd553d6e37c8091cb3bc484
DIST ploop-1.15.tar.bz2 125618 BLAKE2B ad7d06865606c20bdd9601ce343817a332653f3f7544dd27f08d3fb5ff2ee8112ef1ae0217546c28fde3dba076b0703b5881e8a019eec663964dd39885c5524c SHA512 07a691aeed949971534dcf9bb5138defacf25d7c437336df84a5ec3759cba0c20f6724660b7c8a204b3f455d15a892e20b060b0e0ea27280eeba738c36f280cb

View File

@@ -0,0 +1,12 @@
diff --git a/lib/delta_sysfs.c b/lib/delta_sysfs.c
index 98e7254..e44fb3b 100644
--- a/lib/delta_sysfs.c
+++ b/lib/delta_sysfs.c
@@ -29,6 +29,7 @@
#include <linux/fs.h>
#include <sys/ioctl.h>
#include <sys/utsname.h>
+#include <sys/sysmacros.h>
#include "ploop.h"

View File

@@ -0,0 +1,64 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit tmpfiles toolchain-funcs
DESCRIPTION="openvz tool and a library to control ploop block devices"
HOMEPAGE="https://wiki.openvz.org/Download/ploop"
SRC_URI="https://download.openvz.org/utils/ploop/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
BDEPEND="virtual/pkgconfig"
DEPEND="dev-libs/libxml2"
RDEPEND="${DEPEND}
sys-block/parted
sys-fs/e2fsprogs
sys-process/lsof
sys-apps/findutils"
PATCHES=(
"${FILESDIR}"/disable_create_run_dir.patch
"${FILESDIR}"/${PN}-1.15-makedev-include.patch
)
DOCS=( tools/README )
src_prepare() {
default
# 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() {
emake DESTDIR="${D}" LIBDIR=/usr/$(get_libdir) install
rm "${ED}"/usr/$(get_libdir)/*.a || die
}
pkg_postinst() {
tmpfiles_process ploop.conf
}