Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
Date: Sat, 04 Mar 2023 00:01:04
Message-Id: 1677888044.f26230b8257ce62b10da5acbeb2ed9d59b534b92.conikost@gentoo
1 commit: f26230b8257ce62b10da5acbeb2ed9d59b534b92
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 3 23:57:55 2023 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 00:00:44 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26230b8
7
8 sys-fs/cryptmount: drop 6.1.0
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 sys-fs/cryptmount/Manifest | 1 -
13 sys-fs/cryptmount/cryptmount-6.1.0.ebuild | 75 -------------------------------
14 2 files changed, 76 deletions(-)
15
16 diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
17 index 899267c28d38..f80e1e8ced04 100644
18 --- a/sys-fs/cryptmount/Manifest
19 +++ b/sys-fs/cryptmount/Manifest
20 @@ -1,2 +1 @@
21 -DIST cryptmount-6.1.0.tar.gz 548225 BLAKE2B 71039c7e2d3fb82fdd4797ce829ce7731c3b6b61c30730b1c5da449d2a559ed6cf8026527f6ed2f6d0b134327e0b3ca54f626cc42e528317f00d29001ead01b5 SHA512 a8f43dc9d4cbc87be4fde96a5b79d44bb154ef5b79f353daee1128728c537c8a10a5324a4c4a39d7926fd393bf944da5aaf4e279ff325f7fe47a01559ae5b1d5
22 DIST cryptmount-6.2.0.tar.gz 548497 BLAKE2B 45602d86624464c8c1c2ad9cf3ffc4bf311d60ae16c2294111b1fc98bb0e02952c69c767a1c583428c3d8eb0ade2caddb17d3187f4dd34d780772b299ea1a6c0 SHA512 005d9333792a567515ce6d487d2dfa18f19cb077a64d9c356562acefc1947581d2d0f584ad623e0aab8aed1b34f1614af3a42f0c582d31e0831cdb8eb22bb7ce
23
24 diff --git a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
25 deleted file mode 100644
26 index b884fde28f5f..000000000000
27 --- a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
28 +++ /dev/null
29 @@ -1,75 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit linux-info
36 -
37 -DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
38 -HOMEPAGE="http://cryptmount.sourceforge.net/"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
45 -REQUIRED_USE="
46 - luks? ( gcrypt )
47 - openssl? ( gcrypt )
48 -"
49 -
50 -RDEPEND="
51 - sys-fs/lvm2
52 - virtual/libiconv
53 - virtual/libintl
54 - gcrypt? ( dev-libs/libgcrypt:0= )
55 - luks? ( sys-fs/cryptsetup )
56 - openssl? ( dev-libs/openssl:0= )
57 - systemd? ( sys-apps/systemd )
58 - udev? ( virtual/udev )
59 -"
60 -
61 -DEPEND="
62 - ${RDEPEND}
63 - sys-kernel/linux-headers
64 -"
65 -
66 -BDEPEND="nls? ( sys-devel/gettext )"
67 -
68 -CONFIG_CHECK="BLK_DEV_DM"
69 -ERROR_BLK_DEV_DM="
70 - Please enable Device Mapper support in your kernel config
71 - -> Device Drivers
72 - -> Multiple devices driver support (RAID and LVM)
73 - -> Multiple devices driver support (RAID and LVM)
74 - <*>/<M> Device mapper support
75 -"
76 -
77 -src_prepare() {
78 - default
79 -
80 - # Since SELinux is hardcoded, remove it on disabled SELinux profile
81 - if ! use selinux; then
82 - sed -e '/selinux/d' -i dmutils.c || die
83 - fi
84 -}
85 -
86 -src_configure() {
87 - local myeconf=(
88 - --disable-rpath
89 - $(use_enable argv0switch)
90 - $(use_enable cswap)
91 - $(use_enable fsck)
92 - $(use_with gcrypt libgcrypt)
93 - $(use_enable largefile)
94 - $(use_enable mount delegation)
95 - $(use_enable nls)
96 - $(use_enable luks)
97 - $(use_enable openssl openssl-compat)
98 - $(use_with systemd)
99 - $(use_enable udev libudev)
100 -
101 - )
102 -
103 - econf "${myeconf[@]}"
104 -}