From 3ec81dc7cc5f9ac92d5538a27f779455136014d7 Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Sat, 4 Feb 2017 03:00:13 +0200 Subject: sys-fs/loop-aes: cleanup + remove stable loop-aes is not stable nor popular Package-Manager: portage-2.3.3 --- app-crypt/loop-aes-losetup/Manifest | 2 - .../loop-aes-losetup/loop-aes-losetup-2.21.ebuild | 96 ---------------------- 2 files changed, 98 deletions(-) delete mode 100644 app-crypt/loop-aes-losetup/loop-aes-losetup-2.21.ebuild (limited to 'app-crypt/loop-aes-losetup') diff --git a/app-crypt/loop-aes-losetup/Manifest b/app-crypt/loop-aes-losetup/Manifest index 4cd35f94e54a..c8bf1eb9c389 100644 --- a/app-crypt/loop-aes-losetup/Manifest +++ b/app-crypt/loop-aes-losetup/Manifest @@ -1,4 +1,2 @@ -DIST util-linux-2.21-20120228.diff.bz2 43809 SHA256 fc28d4f0e2737b53a4db59072ab0fcf4180a8ece28c79219a21780124798572a SHA512 94135ed18699efd949f5937576da2721957177bbef9be8234ae48ee34f30f4cb65361a541f79c636ed6d6bb5c2786e1096d096407834e1421d82ee78ae0790e9 WHIRLPOOL ba23dccc56fc49d7ad9075537317ad4580ace2a4cd8f6b0250f42035c03ba910f3cafa8e8b1da4c7e5a0960d74c42f2706fda579a3b4a6cadc61dccd2fff3ff0 -DIST util-linux-2.21.tar.xz 2954504 SHA256 5192e8ba7dcf3cf0dc447f07b3d177f6cb3fb49dfae54ac45d6c8c7d86eeab0f SHA512 aab384db2d1a3e08fd560a3e4d7ed7d6b2ceac61386db94eecae65bd540200a8549e141b99d8dad5c6f96587940b574d0544984acef6a35d1f24870e0072c552 WHIRLPOOL 1968ddd63fd21ef9542bb8afc77292ed2bad6f83e1cd67aa4159db8b320abd80ee0d20a062df35ae2ad91e0bc9068168b9f9e44aa39eaf4861d436dd855bea5d DIST util-linux-2.26-20150310.diff.bz2 41017 SHA256 18d88810d5d6e95313c23162566bcf7e1a7b785bed5dd395127c144127c9e9ef SHA512 c8e7d7a4795d2ed75af5e0513c19510ca649682df86655ecabe1563586bdb46f32bb9abd6cfb09df230f935cfa396e0d63b1545a40a5f4ce47524a82e7dd7ca6 WHIRLPOOL 2ca00b9ec52b64ce1e083b9a706003d1f0445fb5d7f391e28b698c684dba5cb8bc2a590565dcc23ac6527b8099838435b86e7a78097ab8a19491fe14b6c50ca6 DIST util-linux-2.26.tar.xz 3847960 SHA256 a23c6f39dea0ed215ccd589509ffc7bb6f706f6e1a04760f493fb0fd7e93c489 SHA512 af07d49a433fce683da7bdf9aea5693ad108aa16166e0147716175bd779fe5090029617dd7db153bc0f5efcf7bdd377761a616efd4cca90a87bf317132ede88c WHIRLPOOL 4f7c9463bfe1523819671824de26e051c496c86884ca34b25208762179345c799fe61e566228ebfcbca2f2b63163539e37b06e438a58f562cf7b53f954564150 diff --git a/app-crypt/loop-aes-losetup/loop-aes-losetup-2.21.ebuild b/app-crypt/loop-aes-losetup/loop-aes-losetup-2.21.ebuild deleted file mode 100644 index 56078777ccc0..000000000000 --- a/app-crypt/loop-aes-losetup/loop-aes-losetup-2.21.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git" -inherit eutils toolchain-funcs flag-o-matic autotools - -MY_PV="${PV/_/-}" -MY_P="util-linux-${MY_PV}" -LOOPAES_PV="${PV}-20120228" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Loop-AES losetup utility" -HOMEPAGE="https://www.kernel.org/pub/linux/utils/util-linux/" -SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz - http://loop-aes.sourceforge.net/updates/util-linux-${LOOPAES_PV}.diff.bz2" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-linux" - -LICENSE="GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain" -SLOT="0" -IUSE="nls selinux uclibc static" - -RDEPEND="selinux? ( sys-libs/libselinux )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - virtual/os-headers" - -src_prepare() { - epatch "${WORKDIR}"/util-linux-*.diff - use uclibc && sed -i -e s/versionsort/alphasort/g -e s/strverscmp.h/dirent.h/g mount/lomount.c - eautoreconf - elibtoolize -} - -lfs_fallocate_test() { - # Make sure we can use fallocate with LFS #300307 - cat <<-EOF > "${T}"/fallocate.c - #define _GNU_SOURCE - #include - main() { return fallocate(0, 0, 0, 0); } - EOF - append-lfs-flags - $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} "${T}"/fallocate.c -o /dev/null >/dev/null 2>&1 \ - || export ac_cv_func_fallocate=no - rm -f "${T}"/fallocate.c -} - -src_configure() { - lfs_fallocate_test - econf \ - --disable-agetty \ - --disable-chsh-only-listed \ - --disable-cramfs \ - --disable-fallocate \ - --disable-fsck \ - --disable-kill \ - --disable-last \ - --disable-libmount \ - --disable-libmount-mount \ - --disable-libuuid \ - --disable-login-utils \ - --disable-makeinstall-chown \ - --disable-makeinstall-setuid \ - --disable-mesg \ - --disable-mountpoint \ - --disable-partx \ - --disable-pg-bell \ - --disable-pivot_root \ - --disable-raw \ - --disable-rename \ - --disable-require-password \ - --disable-reset \ - --disable-schedutils \ - --disable-switch_root \ - --disable-unshare \ - --disable-use-tty-group \ - --disable-uuidd \ - --disable-wall \ - --disable-write \ - --enable-libblkid \ - --enable-mount \ - --without-ncurses \ - --without-udev \ - $(use_enable nls) \ - $(use_with selinux) \ - $(tc-has-tls || echo --disable-tls) \ - $(use static && echo --enable-static-programs=losetup) -} - -src_install() { - emake install DESTDIR="${T}/root" - newsbin "${T}/root/sbin/losetup" loop-aes-losetup - use static && newsbin "${T}/root/bin/losetup.static" loop-aes-losetup.static -} -- cgit v1.2.3-65-gdbad