* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2017-07-17 21:38 Patrice Clement
0 siblings, 0 replies; 35+ messages in thread
From: Patrice Clement @ 2017-07-17 21:38 UTC (permalink / raw
To: gentoo-commits
commit: 832ad1449fcbc8a81eed4712202f29ba8382b4b0
Author: Igor Savlook <isav <AT> alzari <DOT> pw>
AuthorDate: Tue Jul 11 05:45:44 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Jul 17 21:38:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=832ad144
sys-fs/crypmount: new ebuild.
cryptmount allows management and user-mode mounting of encrypted filing systems
on GNU/Linux systems. Filesystems & crypto-swap can be on either raw block
devices or ordinary files, with device-mapper (dm-crypt) and loopback devices
setup automatically.
Gentoo-Bug: https://bugs.gentoo.org/624520
Closes: https://github.com/gentoo/gentoo/pull/5086
sys-fs/cryptmount/Manifest | 1 +
sys-fs/cryptmount/cryptmount-5.2.2.ebuild | 52 +++++++++++++++++++++++++++++++
sys-fs/cryptmount/metadata.xml | 11 +++++++
3 files changed, 64 insertions(+)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
new file mode 100644
index 00000000000..fd79944ef9a
--- /dev/null
+++ b/sys-fs/cryptmount/Manifest
@@ -0,0 +1 @@
+DIST cryptmount-5.2.2.tar.gz 743638 SHA256 2730782bcf1834e6f1b3575db1dde53e638d3679bc09d4eaf63111b428767859 SHA512 e8767728c49b7f8dc4f777778d5a9d1b912ea2c4c5363dbb5035a208aa1bd1f2565ce12a0666d75e9ee677bde04029082d20c22cf46a216f5e87a4adf7093572 WHIRLPOOL 772479a152b8ee3f2bb645b4d35a387522ba242b768a1d81b476734395d6696fa12923655e18e1bb69b07f15eeafa7a895dd4c7f685a9c93ac777cf87c6c0a1f
diff --git a/sys-fs/cryptmount/cryptmount-5.2.2.ebuild b/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
new file mode 100644
index 00000000000..75d179508ab
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info systemd
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="nls +ssl systemd"
+
+
+DOCS=( AUTHORS ChangeLog NEWS README RELNOTES ToDo )
+
+RDEPEND="
+ dev-libs/libgcrypt
+ nls? ( virtual/libintl )
+ ssl? ( dev-libs/openssl )
+ systemd? ( sys-apps/systemd )"
+
+DEPEND="
+ ${RDEPEND}
+ nls? ( sys-devel/gettext )"
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="Please enable Device mapper support in your kernel config
+ -> Device Drivers
+ -> Multi-device support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM) (MD)
+ <M> Device mapper support"
+
+src_configure() {
+ econf \
+ --enable-cswap \
+ --enable-delegation \
+ --enable-fsck \
+ --enable-luks \
+ --with-libgcrypt \
+ $(use_enable nls) \
+ $(use_enable ssl openssl-compat) \
+ $(use_with systemd)
+}
+
+src_install() {
+ default
+}
diff --git a/sys-fs/cryptmount/metadata.xml b/sys-fs/cryptmount/metadata.xml
new file mode 100644
index 00000000000..33947efb5f3
--- /dev/null
+++ b/sys-fs/cryptmount/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sav@alzari.pw</email>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ </maintainer>
+ <longdescription>A utility for management and user-mode mounting of encrypted filesystems</longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2017-07-18 6:29 Patrice Clement
0 siblings, 0 replies; 35+ messages in thread
From: Patrice Clement @ 2017-07-18 6:29 UTC (permalink / raw
To: gentoo-commits
commit: c9d438e230dc29884a4689f59189f3032d1b1b5e
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 06:29:37 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 06:29:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9d438e2
sys-fs/cryptmount: fix warnings.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
sys-fs/cryptmount/cryptmount-5.2.2.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.2.2.ebuild b/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
index 75d179508ab..5708d3b0ad3 100644
--- a/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
@@ -15,13 +15,12 @@ KEYWORDS="~amd64 ~x86"
IUSE="nls +ssl systemd"
-
DOCS=( AUTHORS ChangeLog NEWS README RELNOTES ToDo )
RDEPEND="
- dev-libs/libgcrypt
+ dev-libs/libgcrypt:0=
nls? ( virtual/libintl )
- ssl? ( dev-libs/openssl )
+ ssl? ( dev-libs/openssl:0= )
systemd? ( sys-apps/systemd )"
DEPEND="
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2017-10-02 22:57 Jonas Stein
0 siblings, 0 replies; 35+ messages in thread
From: Jonas Stein @ 2017-10-02 22:57 UTC (permalink / raw
To: gentoo-commits
commit: d3573f00b1a2797752134fa44e16ee28ffcdab0e
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 2 22:57:38 2017 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Oct 2 22:57:38 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3573f00
sys-fs/cryptmount: Update contact
Fixed typo in mail contact.
Package-Manager: Portage-2.3.10, Repoman-2.3.3
sys-fs/cryptmount/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/metadata.xml b/sys-fs/cryptmount/metadata.xml
index 33947efb5f3..ccc363c97a2 100644
--- a/sys-fs/cryptmount/metadata.xml
+++ b/sys-fs/cryptmount/metadata.xml
@@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>sav@alzari.pw</email>
+ <email>isav@alzari.pw</email>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2017-12-20 22:54 Craig Andrews
0 siblings, 0 replies; 35+ messages in thread
From: Craig Andrews @ 2017-12-20 22:54 UTC (permalink / raw
To: gentoo-commits
commit: 091370ab89714574974f0de3dba57a63e205a9f5
Author: Igor Savlook <isav <AT> alzari <DOT> pw>
AuthorDate: Sun Aug 13 19:44:54 2017 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 22:53:15 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=091370ab
sys-fs/cryptmount: lvm2 package is needed to compile
Also fix email in metadata.xml
Closes: https://bugs.gentoo.org/625550
sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild | 52 ++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild b/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild
new file mode 100644
index 00000000000..690f70da85b
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info systemd
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="nls +ssl systemd"
+
+DOCS=( AUTHORS ChangeLog NEWS README RELNOTES ToDo )
+
+RDEPEND="
+ dev-libs/libgcrypt:0=
+ sys-fs/lvm2:0=
+ nls? ( virtual/libintl )
+ ssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )"
+
+DEPEND="
+ ${RDEPEND}
+ nls? ( sys-devel/gettext )"
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="Please enable Device mapper support in your kernel config
+ -> Device Drivers
+ -> Multi-device support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM) (MD)
+ <M> Device mapper support"
+
+src_configure() {
+ econf \
+ --enable-cswap \
+ --enable-delegation \
+ --enable-fsck \
+ --enable-luks \
+ --with-libgcrypt \
+ $(use_enable nls) \
+ $(use_enable ssl openssl-compat) \
+ $(use_with systemd)
+}
+
+src_install() {
+ default
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2019-03-18 18:27 Matt Turner
0 siblings, 0 replies; 35+ messages in thread
From: Matt Turner @ 2019-03-18 18:27 UTC (permalink / raw
To: gentoo-commits
commit: ef75fc19d32a532430f50d1b732a385d1dbde991
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Thu Mar 7 21:49:35 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Mar 18 18:27:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef75fc19
sys-fs/cryptmount: bump to version 5.3.1
Closes: https://bugs.gentoo.org/628734
Closes: https://bugs.gentoo.org/641176
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11289
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 +
sys-fs/cryptmount/cryptmount-5.3.1.ebuild | 75 +++++++++++++++++++++++++++++++
sys-fs/cryptmount/metadata.xml | 45 ++++++++++++++++---
3 files changed, 114 insertions(+), 7 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index de2cf8aaaf2..0bb0a1c73bd 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1 +1,2 @@
DIST cryptmount-5.2.2.tar.gz 743638 BLAKE2B fdcf0ec18904bd847d905a1241c0e4e9c825b9c73f2cab0406426d56d22a0ef4d26701d9955b4f7975cc1cedcd650758cd4aebb29805e6cf8a8c05ef9202b8b7 SHA512 e8767728c49b7f8dc4f777778d5a9d1b912ea2c4c5363dbb5035a208aa1bd1f2565ce12a0666d75e9ee677bde04029082d20c22cf46a216f5e87a4adf7093572
+DIST cryptmount-5.3.1.tar.gz 748020 BLAKE2B 63c66717ed8a8ede983894564576d26720a571b47bd33f3cd160596d831c017c7239b307eb9fb8112c6a51f91799117a47392675f9fe53c0286ada84887d528e SHA512 c4bfb7a2bd2f672dfed014d3a4b1feaa4d20237f9b658ea981a0a054e83ad4d0282089a006ceb769ee05e0cf6ecd004c97b48d69973ed630330e77bf13925680
diff --git a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
new file mode 100644
index 00000000000..2562091101a
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info systemd
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
+REQUIRED_USE="
+ luks? ( gcrypt )
+ openssl? ( gcrypt )
+"
+
+RDEPEND="
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ nls? ( sys-devel/gettext )
+ luks? ( sys-fs/cryptsetup )
+ openssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )
+ udev? ( virtual/udev )
+ virtual/libiconv
+ virtual/libintl
+"
+
+DEPEND="
+ ${RDEPEND}
+ sys-kernel/linux-headers
+"
+
+DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.OpenSSL" "README.sshfs" "RELNOTES" "ToDo" )
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+ Please enable Device Mapper support in your kernel config
+ -> Device Drivers
+ -> Multiple devices driver support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM)
+ <*>/<M> Device mapper support
+"
+
+src_prepare() {
+ default
+
+ # Since SELinux is hardcoded, remove it on disabled SELinux profile
+ if ! use selinux; then
+ sed -e '/selinux/d' -i dmutils.c || die
+ fi
+}
+
+src_configure() {
+ local myeconf=(
+ --disable-rpath
+ $(use_enable argv0switch)
+ $(use_enable cswap)
+ $(use_enable fsck)
+ $(use_with gcrypt libgcrypt)
+ $(use_enable largefile)
+ $(use_enable mount delegation)
+ $(use_enable nls)
+ $(use_enable luks)
+ $(use_enable openssl openssl-compat)
+ $(use_with systemd)
+ $(use_enable udev libudev)
+
+ )
+
+ econf "${myeconf[@]}"
+}
diff --git a/sys-fs/cryptmount/metadata.xml b/sys-fs/cryptmount/metadata.xml
index ccc363c97a2..8468e05cbbe 100644
--- a/sys-fs/cryptmount/metadata.xml
+++ b/sys-fs/cryptmount/metadata.xml
@@ -1,11 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>isav@alzari.pw</email>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- </maintainer>
- <longdescription>A utility for management and user-mode mounting of encrypted filesystems</longdescription>
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ </maintainer>
+ <longdescription>
+ Cryptmount was written to make it as easy for ordinary users
+ to access encrypted filesystems on-demand using the newer devmapper
+ mechansism as it was to use the older, now deprecated, cryptoloop methods.
+ This offers the following advantages:
+
+ Access to improved functionality in the kernel
+ Transparent support for filesystems stored on either raw disk partitions or loopback files
+ Separate encryption of filesystem access keys, allowing access passwords to be changed without re-encrypting the entire filesystem
+ Storing multiple encrypted filesystems within a single disk partition, using a designated subset of blocks for each
+ Rarely used filesystems do not need to be mounted at system startup
+ Un-mounting of each filesystem is locked so that this can only be performed by the user that mounted it, or the superuser
+ Encrypted filesystems compatible with cryptsetup
+ Encrypted access-keys can be chosen to be compatible with openssl, or managed via libgcrypt, or (for 2.0 release-series) built-in SHA1/Blowfish ciphers
+ Support for encrypted swap partitions (superuser only)
+ Support for setting up encrypted filesystems or crypto-swap at system boot-up
+ </longdescription>
+ <use>
+ <flag name="argv0switch">Default action given by progname.</flag>
+ <flag name="cswap">Enable support for encrypted swap.</flag>
+ <flag name="fsck">Check filesystems before mounting.</flag>
+ <flag name="gcrypt">Support libgcrypt-encryption of keys.</flag>
+ <flag name="largefile">Enable support for large files.</flag>
+ <flag name="mount">Use systemd mount/umount for operations.</flag>
+ <flag name="luks">Enable key management via LUKS</flag>
+ <flag name="openssl">Support openssl-encryption of keys.</flag>
+ </use>
+ <upstream>
+ <bugs-to>https://sourceforge.net/p/cryptmount/bugs/</bugs-to>
+ <remote-id type="sourceforge">cryptmount</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2019-07-05 17:50 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2019-07-05 17:50 UTC (permalink / raw
To: gentoo-commits
commit: 5ef30a222db70e1529f4214a762a0b719bf9c120
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Tue Jul 2 14:58:22 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 5 17:43:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef30a22
sys-fs/cryptmount: drop old version
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/12378
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild | 52 ----------------------------
sys-fs/cryptmount/cryptmount-5.2.2.ebuild | 51 ---------------------------
3 files changed, 104 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 0bb0a1c73bd..837cf9608ed 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-5.2.2.tar.gz 743638 BLAKE2B fdcf0ec18904bd847d905a1241c0e4e9c825b9c73f2cab0406426d56d22a0ef4d26701d9955b4f7975cc1cedcd650758cd4aebb29805e6cf8a8c05ef9202b8b7 SHA512 e8767728c49b7f8dc4f777778d5a9d1b912ea2c4c5363dbb5035a208aa1bd1f2565ce12a0666d75e9ee677bde04029082d20c22cf46a216f5e87a4adf7093572
DIST cryptmount-5.3.1.tar.gz 748020 BLAKE2B 63c66717ed8a8ede983894564576d26720a571b47bd33f3cd160596d831c017c7239b307eb9fb8112c6a51f91799117a47392675f9fe53c0286ada84887d528e SHA512 c4bfb7a2bd2f672dfed014d3a4b1feaa4d20237f9b658ea981a0a054e83ad4d0282089a006ceb769ee05e0cf6ecd004c97b48d69973ed630330e77bf13925680
diff --git a/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild b/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild
deleted file mode 100644
index 690f70da85b..00000000000
--- a/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="nls +ssl systemd"
-
-DOCS=( AUTHORS ChangeLog NEWS README RELNOTES ToDo )
-
-RDEPEND="
- dev-libs/libgcrypt:0=
- sys-fs/lvm2:0=
- nls? ( virtual/libintl )
- ssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )"
-
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="Please enable Device mapper support in your kernel config
- -> Device Drivers
- -> Multi-device support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM) (MD)
- <M> Device mapper support"
-
-src_configure() {
- econf \
- --enable-cswap \
- --enable-delegation \
- --enable-fsck \
- --enable-luks \
- --with-libgcrypt \
- $(use_enable nls) \
- $(use_enable ssl openssl-compat) \
- $(use_with systemd)
-}
-
-src_install() {
- default
-}
diff --git a/sys-fs/cryptmount/cryptmount-5.2.2.ebuild b/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
deleted file mode 100644
index 5708d3b0ad3..00000000000
--- a/sys-fs/cryptmount/cryptmount-5.2.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="nls +ssl systemd"
-
-DOCS=( AUTHORS ChangeLog NEWS README RELNOTES ToDo )
-
-RDEPEND="
- dev-libs/libgcrypt:0=
- nls? ( virtual/libintl )
- ssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )"
-
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="Please enable Device mapper support in your kernel config
- -> Device Drivers
- -> Multi-device support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM) (MD)
- <M> Device mapper support"
-
-src_configure() {
- econf \
- --enable-cswap \
- --enable-delegation \
- --enable-fsck \
- --enable-luks \
- --with-libgcrypt \
- $(use_enable nls) \
- $(use_enable ssl openssl-compat) \
- $(use_with systemd)
-}
-
-src_install() {
- default
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2019-07-24 20:49 Thomas Deutschmann
0 siblings, 0 replies; 35+ messages in thread
From: Thomas Deutschmann @ 2019-07-24 20:49 UTC (permalink / raw
To: gentoo-commits
commit: d249e27aa2db100736434e4b2b34d6530517ceba
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 24 20:21:32 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Jul 24 20:48:25 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d249e27a
sys-fs/cryptmount: x86 stable (bug #690398)
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
index 2562091101a..26f6030e5f5 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2019-10-22 21:56 Piotr Karbowski
0 siblings, 0 replies; 35+ messages in thread
From: Piotr Karbowski @ 2019-10-22 21:56 UTC (permalink / raw
To: gentoo-commits
commit: 2bb130e1000b425dbcbb7ac6eb5174a7e9b2c5e6
Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 22 21:56:02 2019 +0000
Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 21:56:02 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb130e1
sys-fs/cryptmount: 5.3.1 amd64 stable (#690398)
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
index 26f6030e5f5..68573f304ed 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2019-12-02 23:22 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2019-12-02 23:22 UTC (permalink / raw
To: gentoo-commits
commit: 2a4d640a4b857e1acdca0d223430c6965dc2db39
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 2 23:08:43 2019 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Dec 2 23:21:08 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a4d640a
sys-fs/cryptmount: updated metadata.xml
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/sys-fs/cryptmount/metadata.xml b/sys-fs/cryptmount/metadata.xml
index 8468e05cbbe..766e5db5d56 100644
--- a/sys-fs/cryptmount/metadata.xml
+++ b/sys-fs/cryptmount/metadata.xml
@@ -2,12 +2,9 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>ck+gentoo@bl4ckb0x.de</email>
+ <email>conikost@gentoo.org</email>
<name>Conrad Kostecki</name>
</maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- </maintainer>
<longdescription>
Cryptmount was written to make it as easy for ordinary users
to access encrypted filesystems on-demand using the newer devmapper
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2019-12-05 21:47 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2019-12-05 21:47 UTC (permalink / raw
To: gentoo-commits
commit: fca37692af75feadeb9be3dba5a9d4abe5c8f06f
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 5 21:00:23 2019 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Dec 5 21:46:06 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fca37692
sys-fs/cryptmount: bump to version 5.3.2
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 +
sys-fs/cryptmount/cryptmount-5.3.2.ebuild | 76 +++++++++++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 837cf9608ed..587aa0df704 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1 +1,2 @@
DIST cryptmount-5.3.1.tar.gz 748020 BLAKE2B 63c66717ed8a8ede983894564576d26720a571b47bd33f3cd160596d831c017c7239b307eb9fb8112c6a51f91799117a47392675f9fe53c0286ada84887d528e SHA512 c4bfb7a2bd2f672dfed014d3a4b1feaa4d20237f9b658ea981a0a054e83ad4d0282089a006ceb769ee05e0cf6ecd004c97b48d69973ed630330e77bf13925680
+DIST cryptmount-5.3.2.tar.gz 545190 BLAKE2B 708c6ba33060c0698361de7bcdc5e0a5932e063c9178c0a6b9cfb1cba9ec236337dbda0664e8755cc017113ee8ef0149c47fc85019a57ac84bf240790d5d798c SHA512 972c7fefadb86bb82cdeb96b185f45bec08ac07d39474a4c7e2a473bc2453624ffcc387b6836a02260dcd0d1176a5a743c45bdf3d7e78d2f519f02a48c62a6b8
diff --git a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
new file mode 100644
index 00000000000..76c9f7fce27
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info systemd
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
+REQUIRED_USE="
+ luks? ( gcrypt )
+ openssl? ( gcrypt )
+"
+
+RDEPEND="
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ luks? ( sys-fs/cryptsetup )
+ openssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )
+ udev? ( virtual/udev )
+ virtual/libiconv
+ virtual/libintl
+"
+
+DEPEND="
+ ${RDEPEND}
+ sys-kernel/linux-headers
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+ Please enable Device Mapper support in your kernel config
+ -> Device Drivers
+ -> Multiple devices driver support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM)
+ <*>/<M> Device mapper support
+"
+
+src_prepare() {
+ default
+
+ # Since SELinux is hardcoded, remove it on disabled SELinux profile
+ if ! use selinux; then
+ sed -e '/selinux/d' -i dmutils.c || die
+ fi
+}
+
+src_configure() {
+ local myeconf=(
+ --disable-rpath
+ $(use_enable argv0switch)
+ $(use_enable cswap)
+ $(use_enable fsck)
+ $(use_with gcrypt libgcrypt)
+ $(use_enable largefile)
+ $(use_enable mount delegation)
+ $(use_enable nls)
+ $(use_enable luks)
+ $(use_enable openssl openssl-compat)
+ $(use_with systemd)
+ $(use_enable udev libudev)
+
+ )
+
+ econf "${myeconf[@]}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2020-01-27 15:44 Thomas Deutschmann
0 siblings, 0 replies; 35+ messages in thread
From: Thomas Deutschmann @ 2020-01-27 15:44 UTC (permalink / raw
To: gentoo-commits
commit: cdc0f308845f0e9bd178cc0398e0010ae2957757
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 27 15:29:58 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jan 27 15:44:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc0f308
sys-fs/cryptmount: x86 stable (bug #705790)
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
index 76c9f7fce27..a4e882b5ede 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2020-02-08 13:43 Mikle Kolyada
0 siblings, 0 replies; 35+ messages in thread
From: Mikle Kolyada @ 2020-02-08 13:43 UTC (permalink / raw
To: gentoo-commits
commit: 44eddd176098ec1b73654c42f83e0af3cbca1b0e
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 8 13:43:14 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Feb 8 13:43:14 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44eddd17
sys-fs/cryptmount: amd64 stable wrt bug #705790
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
index a4e882b5ede..95c674a5b8b 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2020-02-08 14:46 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2020-02-08 14:46 UTC (permalink / raw
To: gentoo-commits
commit: 9bbd3da04be990cb674b810b76ce30333c6423fe
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 8 14:45:37 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Feb 8 14:45:37 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bbd3da0
sys-fs/cryptmount: drop old version
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-5.3.1.ebuild | 75 -------------------------------
2 files changed, 76 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 587aa0df704..3b432492b8e 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-5.3.1.tar.gz 748020 BLAKE2B 63c66717ed8a8ede983894564576d26720a571b47bd33f3cd160596d831c017c7239b307eb9fb8112c6a51f91799117a47392675f9fe53c0286ada84887d528e SHA512 c4bfb7a2bd2f672dfed014d3a4b1feaa4d20237f9b658ea981a0a054e83ad4d0282089a006ceb769ee05e0cf6ecd004c97b48d69973ed630330e77bf13925680
DIST cryptmount-5.3.2.tar.gz 545190 BLAKE2B 708c6ba33060c0698361de7bcdc5e0a5932e063c9178c0a6b9cfb1cba9ec236337dbda0664e8755cc017113ee8ef0149c47fc85019a57ac84bf240790d5d798c SHA512 972c7fefadb86bb82cdeb96b185f45bec08ac07d39474a4c7e2a473bc2453624ffcc387b6836a02260dcd0d1176a5a743c45bdf3d7e78d2f519f02a48c62a6b8
diff --git a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild b/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
deleted file mode 100644
index 68573f304ed..00000000000
--- a/sys-fs/cryptmount/cryptmount-5.3.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- gcrypt? ( dev-libs/libgcrypt:0= )
- nls? ( sys-devel/gettext )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
- virtual/libiconv
- virtual/libintl
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.OpenSSL" "README.sshfs" "RELNOTES" "ToDo" )
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2021-01-03 20:52 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2021-01-03 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 54a3466b12b9dad218a81d98bde9e953f1fa8b1f
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 3 20:47:35 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jan 3 20:52:12 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a3466b
sys-fs/cryptmount: drop old version
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-5.3.2.ebuild | 76 -------------------------------
2 files changed, 77 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index bdaea2b03c3..a59d3072e05 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-5.3.2.tar.gz 545190 BLAKE2B 708c6ba33060c0698361de7bcdc5e0a5932e063c9178c0a6b9cfb1cba9ec236337dbda0664e8755cc017113ee8ef0149c47fc85019a57ac84bf240790d5d798c SHA512 972c7fefadb86bb82cdeb96b185f45bec08ac07d39474a4c7e2a473bc2453624ffcc387b6836a02260dcd0d1176a5a743c45bdf3d7e78d2f519f02a48c62a6b8
DIST cryptmount-5.3.3.tar.gz 545925 BLAKE2B 7a20d3a3b5805b1fe9ed84aafe6aaebeab4c62652dc8f53ecd70a7e0a0aa993ab5a03d54967910b94e6d8bde28f7ee7bb90a115a2bf101c9d4f4177fee26f90d SHA512 9945630316feee513a64e11dffa61ece77d0dff43a7b611d91fcb0a7c902402effb30ba15266d52c2f5381aa3ab7290a9a0999ca391c3c15cbdb83debe7dcca0
diff --git a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild b/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
deleted file mode 100644
index 95c674a5b8b..00000000000
--- a/sys-fs/cryptmount/cryptmount-5.3.2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- gcrypt? ( dev-libs/libgcrypt:0= )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
- virtual/libiconv
- virtual/libintl
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2021-01-03 20:52 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2021-01-03 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 3b9f8969477d660027650d6681f4cabd623e08e5
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 3 20:29:37 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jan 3 20:52:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9f8969
sys-fs/cryptmount: bump to version 5.3.3
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 +
sys-fs/cryptmount/cryptmount-5.3.3.ebuild | 76 +++++++++++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 3b432492b8e..bdaea2b03c3 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1 +1,2 @@
DIST cryptmount-5.3.2.tar.gz 545190 BLAKE2B 708c6ba33060c0698361de7bcdc5e0a5932e063c9178c0a6b9cfb1cba9ec236337dbda0664e8755cc017113ee8ef0149c47fc85019a57ac84bf240790d5d798c SHA512 972c7fefadb86bb82cdeb96b185f45bec08ac07d39474a4c7e2a473bc2453624ffcc387b6836a02260dcd0d1176a5a743c45bdf3d7e78d2f519f02a48c62a6b8
+DIST cryptmount-5.3.3.tar.gz 545925 BLAKE2B 7a20d3a3b5805b1fe9ed84aafe6aaebeab4c62652dc8f53ecd70a7e0a0aa993ab5a03d54967910b94e6d8bde28f7ee7bb90a115a2bf101c9d4f4177fee26f90d SHA512 9945630316feee513a64e11dffa61ece77d0dff43a7b611d91fcb0a7c902402effb30ba15266d52c2f5381aa3ab7290a9a0999ca391c3c15cbdb83debe7dcca0
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
new file mode 100644
index 00000000000..4359dff13dc
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info systemd
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
+REQUIRED_USE="
+ luks? ( gcrypt )
+ openssl? ( gcrypt )
+"
+
+RDEPEND="
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ luks? ( sys-fs/cryptsetup )
+ openssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )
+ udev? ( virtual/udev )
+ virtual/libiconv
+ virtual/libintl
+"
+
+DEPEND="
+ ${RDEPEND}
+ sys-kernel/linux-headers
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+ Please enable Device Mapper support in your kernel config
+ -> Device Drivers
+ -> Multiple devices driver support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM)
+ <*>/<M> Device mapper support
+"
+
+src_prepare() {
+ default
+
+ # Since SELinux is hardcoded, remove it on disabled SELinux profile
+ if ! use selinux; then
+ sed -e '/selinux/d' -i dmutils.c || die
+ fi
+}
+
+src_configure() {
+ local myeconf=(
+ --disable-rpath
+ $(use_enable argv0switch)
+ $(use_enable cswap)
+ $(use_enable fsck)
+ $(use_with gcrypt libgcrypt)
+ $(use_enable largefile)
+ $(use_enable mount delegation)
+ $(use_enable nls)
+ $(use_enable luks)
+ $(use_enable openssl openssl-compat)
+ $(use_with systemd)
+ $(use_enable udev libudev)
+
+ )
+
+ econf "${myeconf[@]}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2021-07-01 21:45 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2021-07-01 21:45 UTC (permalink / raw
To: gentoo-commits
commit: bc49799c105d0b519e7e1aa6e6df61a6ccc5bdf0
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 1 21:40:51 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Jul 1 21:44:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc49799c
sys-fs/cryptmount: amd64 stable
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
index baad90fc75a..f93c199dc0f 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2021-07-01 21:45 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2021-07-01 21:45 UTC (permalink / raw
To: gentoo-commits
commit: 4f49ffcbbf05ad42fa520d42255ae9b931842fd6
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 1 21:39:34 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Jul 1 21:44:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f49ffcb
sys-fs/cryptmount: x86 stable
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
index 4359dff13dc..baad90fc75a 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2021-09-03 1:53 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2021-09-03 1:53 UTC (permalink / raw
To: gentoo-commits
commit: c3b7366902e75119c0c8a84764c082b579d1b16f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 2 21:19:57 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 2 23:52:18 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3b73669
sys-fs/cryptmount: [QA] fix UnusedInherits
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
index f93c199dc0f..51ac0e120a8 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit linux-info systemd
+inherit linux-info
DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
HOMEPAGE="http://cryptmount.sourceforge.net/"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-02-09 22:57 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-02-09 22:57 UTC (permalink / raw
To: gentoo-commits
commit: f2d37a4cea7426fc4ddd34e8325e0e542bf6eba6
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 9 21:40:18 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Feb 9 22:56:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d37a4c
sys-fs/cryptmount: drop 5.3.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.3.ebuild | 76 -------------------------------
1 file changed, 76 deletions(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
deleted file mode 100644
index 51ac0e120a86..000000000000
--- a/sys-fs/cryptmount/cryptmount-5.3.3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- gcrypt? ( dev-libs/libgcrypt:0= )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
- virtual/libiconv
- virtual/libintl
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-02-09 22:57 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-02-09 22:57 UTC (permalink / raw
To: gentoo-commits
commit: 0d4dedb07cdbb756216c8b904cda3c4b908ded0b
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 9 21:40:08 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Feb 9 22:56:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d4dedb0
sys-fs/cryptmount: update EAPI 7 -> 8
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild | 76 ++++++++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild
new file mode 100644
index 000000000000..ceafbdd5eb6d
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit linux-info
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
+REQUIRED_USE="
+ luks? ( gcrypt )
+ openssl? ( gcrypt )
+"
+
+RDEPEND="
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ luks? ( sys-fs/cryptsetup )
+ openssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )
+ udev? ( virtual/udev )
+ virtual/libiconv
+ virtual/libintl
+"
+
+DEPEND="
+ ${RDEPEND}
+ sys-kernel/linux-headers
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+ Please enable Device Mapper support in your kernel config
+ -> Device Drivers
+ -> Multiple devices driver support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM)
+ <*>/<M> Device mapper support
+"
+
+src_prepare() {
+ default
+
+ # Since SELinux is hardcoded, remove it on disabled SELinux profile
+ if ! use selinux; then
+ sed -e '/selinux/d' -i dmutils.c || die
+ fi
+}
+
+src_configure() {
+ local myeconf=(
+ --disable-rpath
+ $(use_enable argv0switch)
+ $(use_enable cswap)
+ $(use_enable fsck)
+ $(use_with gcrypt libgcrypt)
+ $(use_enable largefile)
+ $(use_enable mount delegation)
+ $(use_enable nls)
+ $(use_enable luks)
+ $(use_enable openssl openssl-compat)
+ $(use_with systemd)
+ $(use_enable udev libudev)
+
+ )
+
+ econf "${myeconf[@]}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-06-07 20:14 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-06-07 20:14 UTC (permalink / raw
To: gentoo-commits
commit: 5974cc4e5efb0880c4339283dfdc8af573674ba4
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 7 20:13:13 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Jun 7 20:13:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5974cc4e
sys-fs/cryptmount: add missing dep
Closes: https://bugs.gentoo.org/849635
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../{cryptmount-5.3.3-r1.ebuild => cryptmount-5.3.3-r2.ebuild} | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild
similarity index 99%
rename from sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild
rename to sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild
index ceafbdd5eb6d..ec1442f7ac9c 100644
--- a/sys-fs/cryptmount/cryptmount-5.3.3-r1.ebuild
+++ b/sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild
@@ -19,13 +19,14 @@ REQUIRED_USE="
"
RDEPEND="
+ sys-fs/lvm2
+ virtual/libiconv
+ virtual/libintl
gcrypt? ( dev-libs/libgcrypt:0= )
luks? ( sys-fs/cryptsetup )
openssl? ( dev-libs/openssl:0= )
systemd? ( sys-apps/systemd )
udev? ( virtual/udev )
- virtual/libiconv
- virtual/libintl
"
DEPEND="
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-09-04 11:06 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-09-04 11:06 UTC (permalink / raw
To: gentoo-commits
commit: 7dec9ac33a53cdda750f64a1dd79789c0076d418
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 4 10:58:04 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 4 11:06:05 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dec9ac3
sys-fs/cryptmount: add 6.0
Bug: https://bugs.gentoo.org/864340
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 +
sys-fs/cryptmount/cryptmount-6.0.ebuild | 77 +++++++++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index a59d3072e054..7b61f5f27489 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1 +1,2 @@
DIST cryptmount-5.3.3.tar.gz 545925 BLAKE2B 7a20d3a3b5805b1fe9ed84aafe6aaebeab4c62652dc8f53ecd70a7e0a0aa993ab5a03d54967910b94e6d8bde28f7ee7bb90a115a2bf101c9d4f4177fee26f90d SHA512 9945630316feee513a64e11dffa61ece77d0dff43a7b611d91fcb0a7c902402effb30ba15266d52c2f5381aa3ab7290a9a0999ca391c3c15cbdb83debe7dcca0
+DIST cryptmount-6.0.tar.gz 556919 BLAKE2B 54226756a6772810ff68c78ff38502df3890a428830eaa34612640d7e5cefd92085e288c5e45ff5b7e5c8bb8b524f458e55f5080e7e62435ae33a46f76c06845 SHA512 aac4ea4969542ade267b3c697988b15ded23fca3c7a330c7b78d990b2b3ad1a393af2d0bea93908187b50e404847cd580a325182397e2667064165764a55b017
diff --git a/sys-fs/cryptmount/cryptmount-6.0.ebuild b/sys-fs/cryptmount/cryptmount-6.0.ebuild
new file mode 100644
index 000000000000..e7fbfa348097
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-6.0.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit linux-info
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
+REQUIRED_USE="
+ luks? ( gcrypt )
+ openssl? ( gcrypt )
+"
+
+RDEPEND="
+ sys-fs/lvm2
+ virtual/libiconv
+ virtual/libintl
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ luks? ( sys-fs/cryptsetup )
+ openssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )
+ udev? ( virtual/udev )
+"
+
+DEPEND="
+ ${RDEPEND}
+ sys-kernel/linux-headers
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+ Please enable Device Mapper support in your kernel config
+ -> Device Drivers
+ -> Multiple devices driver support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM)
+ <*>/<M> Device mapper support
+"
+
+src_prepare() {
+ default
+
+ # Since SELinux is hardcoded, remove it on disabled SELinux profile
+ if ! use selinux; then
+ sed -e '/selinux/d' -i dmutils.c || die
+ fi
+}
+
+src_configure() {
+ local myeconf=(
+ --disable-rpath
+ $(use_enable argv0switch)
+ $(use_enable cswap)
+ $(use_enable fsck)
+ $(use_with gcrypt libgcrypt)
+ $(use_enable largefile)
+ $(use_enable mount delegation)
+ $(use_enable nls)
+ $(use_enable luks)
+ $(use_enable openssl openssl-compat)
+ $(use_with systemd)
+ $(use_enable udev libudev)
+
+ )
+
+ econf "${myeconf[@]}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-10-04 20:34 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-10-04 20:34 UTC (permalink / raw
To: gentoo-commits
commit: 32d461a2a26e8c22ddc1d7826dcccdeddc89a9e9
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 19:21:40 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 20:33:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32d461a2
sys-fs/cryptmount: amd64 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.0.ebuild b/sys-fs/cryptmount/cryptmount-6.0.ebuild
index e7fbfa348097..d8727060b295 100644
--- a/sys-fs/cryptmount/cryptmount-6.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-10-04 20:34 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-10-04 20:34 UTC (permalink / raw
To: gentoo-commits
commit: c5855a5f6d4e74edab0345f013a81385b882414d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 19:22:11 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 20:33:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5855a5f
sys-fs/cryptmount: x86 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.0.ebuild b/sys-fs/cryptmount/cryptmount-6.0.ebuild
index d8727060b295..ec1442f7ac9c 100644
--- a/sys-fs/cryptmount/cryptmount-6.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-10-04 20:34 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-10-04 20:34 UTC (permalink / raw
To: gentoo-commits
commit: 73e9a1e02c10ac2f97c61f96316d074eb0e84daf
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 4 19:22:32 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Oct 4 20:33:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e9a1e0
sys-fs/cryptmount: drop 5.3.3-r2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild | 77 ----------------------------
2 files changed, 78 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 7b61f5f27489..2ec6c70bf5ba 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-5.3.3.tar.gz 545925 BLAKE2B 7a20d3a3b5805b1fe9ed84aafe6aaebeab4c62652dc8f53ecd70a7e0a0aa993ab5a03d54967910b94e6d8bde28f7ee7bb90a115a2bf101c9d4f4177fee26f90d SHA512 9945630316feee513a64e11dffa61ece77d0dff43a7b611d91fcb0a7c902402effb30ba15266d52c2f5381aa3ab7290a9a0999ca391c3c15cbdb83debe7dcca0
DIST cryptmount-6.0.tar.gz 556919 BLAKE2B 54226756a6772810ff68c78ff38502df3890a428830eaa34612640d7e5cefd92085e288c5e45ff5b7e5c8bb8b524f458e55f5080e7e62435ae33a46f76c06845 SHA512 aac4ea4969542ade267b3c697988b15ded23fca3c7a330c7b78d990b2b3ad1a393af2d0bea93908187b50e404847cd580a325182397e2667064165764a55b017
diff --git a/sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild b/sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild
deleted file mode 100644
index ec1442f7ac9c..000000000000
--- a/sys-fs/cryptmount/cryptmount-5.3.3-r2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- sys-fs/lvm2
- virtual/libiconv
- virtual/libintl
- gcrypt? ( dev-libs/libgcrypt:0= )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-10-10 21:00 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-10-10 21:00 UTC (permalink / raw
To: gentoo-commits
commit: 98e158a02eb784a9f1f1c33763ac4b7569472356
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 20:51:24 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 20:59:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e158a0
sys-fs/cryptmount: add 6.1.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 +
sys-fs/cryptmount/cryptmount-6.1.0.ebuild | 75 +++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 2ec6c70bf5ba..029963f25862 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1 +1,2 @@
DIST cryptmount-6.0.tar.gz 556919 BLAKE2B 54226756a6772810ff68c78ff38502df3890a428830eaa34612640d7e5cefd92085e288c5e45ff5b7e5c8bb8b524f458e55f5080e7e62435ae33a46f76c06845 SHA512 aac4ea4969542ade267b3c697988b15ded23fca3c7a330c7b78d990b2b3ad1a393af2d0bea93908187b50e404847cd580a325182397e2667064165764a55b017
+DIST cryptmount-6.1.0.tar.gz 548225 BLAKE2B 71039c7e2d3fb82fdd4797ce829ce7731c3b6b61c30730b1c5da449d2a559ed6cf8026527f6ed2f6d0b134327e0b3ca54f626cc42e528317f00d29001ead01b5 SHA512 a8f43dc9d4cbc87be4fde96a5b79d44bb154ef5b79f353daee1128728c537c8a10a5324a4c4a39d7926fd393bf944da5aaf4e279ff325f7fe47a01559ae5b1d5
diff --git a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
new file mode 100644
index 000000000000..0e747c46700e
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit linux-info
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
+REQUIRED_USE="
+ luks? ( gcrypt )
+ openssl? ( gcrypt )
+"
+
+RDEPEND="
+ sys-fs/lvm2
+ virtual/libiconv
+ virtual/libintl
+ gcrypt? ( dev-libs/libgcrypt:0= )
+ luks? ( sys-fs/cryptsetup )
+ openssl? ( dev-libs/openssl:0= )
+ systemd? ( sys-apps/systemd )
+ udev? ( virtual/udev )
+"
+
+DEPEND="
+ ${RDEPEND}
+ sys-kernel/linux-headers
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+ Please enable Device Mapper support in your kernel config
+ -> Device Drivers
+ -> Multiple devices driver support (RAID and LVM)
+ -> Multiple devices driver support (RAID and LVM)
+ <*>/<M> Device mapper support
+"
+
+src_prepare() {
+ default
+
+ # Since SELinux is hardcoded, remove it on disabled SELinux profile
+ if ! use selinux; then
+ sed -e '/selinux/d' -i dmutils.c || die
+ fi
+}
+
+src_configure() {
+ local myeconf=(
+ --disable-rpath
+ $(use_enable argv0switch)
+ $(use_enable cswap)
+ $(use_enable fsck)
+ $(use_with gcrypt libgcrypt)
+ $(use_enable largefile)
+ $(use_enable mount delegation)
+ $(use_enable nls)
+ $(use_enable luks)
+ $(use_enable openssl openssl-compat)
+ $(use_with systemd)
+ $(use_enable udev libudev)
+
+ )
+
+ econf "${myeconf[@]}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-11-10 0:10 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-11-10 0:10 UTC (permalink / raw
To: gentoo-commits
commit: e9dfc5cc745e2841111040f86f57b3561a51979b
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 00:09:13 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 00:09:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9dfc5cc
sys-fs/cryptmount: x86 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
index b3b696d0b0ca..b884fde28f5f 100644
--- a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-11-10 0:10 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-11-10 0:10 UTC (permalink / raw
To: gentoo-commits
commit: 2b3e4c146e2c55e7945d98626b867c1e3a510ed9
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 00:09:31 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 00:09:31 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b3e4c14
sys-fs/cryptmount: drop 6.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-6.0.ebuild | 77 ---------------------------------
2 files changed, 78 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 029963f25862..591f67c91aba 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-6.0.tar.gz 556919 BLAKE2B 54226756a6772810ff68c78ff38502df3890a428830eaa34612640d7e5cefd92085e288c5e45ff5b7e5c8bb8b524f458e55f5080e7e62435ae33a46f76c06845 SHA512 aac4ea4969542ade267b3c697988b15ded23fca3c7a330c7b78d990b2b3ad1a393af2d0bea93908187b50e404847cd580a325182397e2667064165764a55b017
DIST cryptmount-6.1.0.tar.gz 548225 BLAKE2B 71039c7e2d3fb82fdd4797ce829ce7731c3b6b61c30730b1c5da449d2a559ed6cf8026527f6ed2f6d0b134327e0b3ca54f626cc42e528317f00d29001ead01b5 SHA512 a8f43dc9d4cbc87be4fde96a5b79d44bb154ef5b79f353daee1128728c537c8a10a5324a4c4a39d7926fd393bf944da5aaf4e279ff325f7fe47a01559ae5b1d5
diff --git a/sys-fs/cryptmount/cryptmount-6.0.ebuild b/sys-fs/cryptmount/cryptmount-6.0.ebuild
deleted file mode 100644
index ec1442f7ac9c..000000000000
--- a/sys-fs/cryptmount/cryptmount-6.0.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- sys-fs/lvm2
- virtual/libiconv
- virtual/libintl
- gcrypt? ( dev-libs/libgcrypt:0= )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-DOCS=( "AUTHORS" "ChangeLog" "NEWS" "README" "README.sshfs" "RELNOTES" "ToDo" )
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2022-11-10 0:10 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2022-11-10 0:10 UTC (permalink / raw
To: gentoo-commits
commit: e3a9bbc94c1a0a39830f7f8316874b54a486bd75
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 00:08:44 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 00:08:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a9bbc9
sys-fs/cryptmount: amd64 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
index 0e747c46700e..b3b696d0b0ca 100644
--- a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2023-03-04 0:00 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2023-03-04 0:00 UTC (permalink / raw
To: gentoo-commits
commit: 21f501a9178e6138c785ac5d926e7863964e33fd
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 3 23:57:38 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 00:00:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f501a9
sys-fs/cryptmount: amd64, x86 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.2.0.ebuild b/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
index c46c12cd6220..648f1dbbf5f1 100644
--- a/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2023-03-04 0:00 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2023-03-04 0:00 UTC (permalink / raw
To: gentoo-commits
commit: f26230b8257ce62b10da5acbeb2ed9d59b534b92
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 3 23:57:55 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 00:00:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26230b8
sys-fs/cryptmount: drop 6.1.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-6.1.0.ebuild | 75 -------------------------------
2 files changed, 76 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 899267c28d38..f80e1e8ced04 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-6.1.0.tar.gz 548225 BLAKE2B 71039c7e2d3fb82fdd4797ce829ce7731c3b6b61c30730b1c5da449d2a559ed6cf8026527f6ed2f6d0b134327e0b3ca54f626cc42e528317f00d29001ead01b5 SHA512 a8f43dc9d4cbc87be4fde96a5b79d44bb154ef5b79f353daee1128728c537c8a10a5324a4c4a39d7926fd393bf944da5aaf4e279ff325f7fe47a01559ae5b1d5
DIST cryptmount-6.2.0.tar.gz 548497 BLAKE2B 45602d86624464c8c1c2ad9cf3ffc4bf311d60ae16c2294111b1fc98bb0e02952c69c767a1c583428c3d8eb0ade2caddb17d3187f4dd34d780772b299ea1a6c0 SHA512 005d9333792a567515ce6d487d2dfa18f19cb077a64d9c356562acefc1947581d2d0f584ad623e0aab8aed1b34f1614af3a42f0c582d31e0831cdb8eb22bb7ce
diff --git a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
deleted file mode 100644
index b884fde28f5f..000000000000
--- a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- sys-fs/lvm2
- virtual/libiconv
- virtual/libintl
- gcrypt? ( dev-libs/libgcrypt:0= )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2023-05-17 2:48 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2023-05-17 2:48 UTC (permalink / raw
To: gentoo-commits
commit: 8fba4efe9bd16f57c49ba235232b63ed04e9af85
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 02:48:19 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 17 02:48:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fba4efe
sys-fs/cryptmount: Keyword 6.2.0 arm64, #906290
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.2.0.ebuild b/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
index 648f1dbbf5f1..c68573762d40 100644
--- a/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2024-09-29 14:57 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2024-09-29 14:57 UTC (permalink / raw
To: gentoo-commits
commit: bad4f0178b8ae6b1974e517d6a28419c300fdb12
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 13:42:49 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 14:42:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad4f017
sys-fs/cryptmount: x86 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.3.0.ebuild b/sys-fs/cryptmount/cryptmount-6.3.0.ebuild
index 901954fb5fe8..a1c60b150253 100644
--- a/sys-fs/cryptmount/cryptmount-6.3.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.3.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/rwpenney/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl systemd"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2024-09-29 14:57 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2024-09-29 14:57 UTC (permalink / raw
To: gentoo-commits
commit: 2f60abfe4af7e4ec57ee2e2607289b0391d9f5b4
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 13:42:22 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 14:42:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f60abfe
sys-fs/cryptmount: amd64 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/cryptmount-6.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-fs/cryptmount/cryptmount-6.3.0.ebuild b/sys-fs/cryptmount/cryptmount-6.3.0.ebuild
index b03b2950fe73..901954fb5fe8 100644
--- a/sys-fs/cryptmount/cryptmount-6.3.0.ebuild
+++ b/sys-fs/cryptmount/cryptmount-6.3.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/rwpenney/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl systemd"
REQUIRED_USE="
luks? ( gcrypt )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/
@ 2024-09-29 14:57 Conrad Kostecki
0 siblings, 0 replies; 35+ messages in thread
From: Conrad Kostecki @ 2024-09-29 14:57 UTC (permalink / raw
To: gentoo-commits
commit: e2b58b29da4d4937ffac4e42bb24985bec717019
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 13:44:39 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 14:42:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2b58b29
sys-fs/cryptmount: drop 6.2.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
sys-fs/cryptmount/Manifest | 1 -
sys-fs/cryptmount/cryptmount-6.2.0.ebuild | 75 -------------------------------
2 files changed, 76 deletions(-)
diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index a0a16a69298c..75820c88c16d 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1,2 +1 @@
-DIST cryptmount-6.2.0.tar.gz 548497 BLAKE2B 45602d86624464c8c1c2ad9cf3ffc4bf311d60ae16c2294111b1fc98bb0e02952c69c767a1c583428c3d8eb0ade2caddb17d3187f4dd34d780772b299ea1a6c0 SHA512 005d9333792a567515ce6d487d2dfa18f19cb077a64d9c356562acefc1947581d2d0f584ad623e0aab8aed1b34f1614af3a42f0c582d31e0831cdb8eb22bb7ce
DIST cryptmount-6.3.0.tar.gz 373196 BLAKE2B b59127f9944f4bf267d4272bc026909b704f474b2fd2a20baf9125f9b32b33ecfd5523c6ef05098e6467e9b7e938daba55685dc47a3317a4913aef4c517f66f2 SHA512 15f19a1ff7409b35be2cde3d791c8d476c98ffcaf3dd9217076703b0e0baafe999a0608a88cc51039ba2e9c26cb297261128a5efeacd1a6397c5d3300886ac4d
diff --git a/sys-fs/cryptmount/cryptmount-6.2.0.ebuild b/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
deleted file mode 100644
index 7a17b776c0b9..000000000000
--- a/sys-fs/cryptmount/cryptmount-6.2.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems"
-HOMEPAGE="http://cryptmount.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl selinux systemd udev"
-REQUIRED_USE="
- luks? ( gcrypt )
- openssl? ( gcrypt )
-"
-
-RDEPEND="
- sys-fs/lvm2
- virtual/libiconv
- virtual/libintl
- gcrypt? ( dev-libs/libgcrypt:0= )
- luks? ( sys-fs/cryptsetup )
- openssl? ( dev-libs/openssl:0= )
- systemd? ( sys-apps/systemd )
- udev? ( virtual/udev )
-"
-
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
-"
-
-BDEPEND="nls? ( sys-devel/gettext )"
-
-CONFIG_CHECK="BLK_DEV_DM"
-ERROR_BLK_DEV_DM="
- Please enable Device Mapper support in your kernel config
- -> Device Drivers
- -> Multiple devices driver support (RAID and LVM)
- -> Multiple devices driver support (RAID and LVM)
- <*>/<M> Device mapper support
-"
-
-src_prepare() {
- default
-
- # Since SELinux is hardcoded, remove it on disabled SELinux profile
- if ! use selinux; then
- sed -e '/selinux/d' -i dmutils.c || die
- fi
-}
-
-src_configure() {
- local myeconf=(
- --disable-rpath
- $(use_enable argv0switch)
- $(use_enable cswap)
- $(use_enable fsck)
- $(use_with gcrypt libgcrypt)
- $(use_enable largefile)
- $(use_enable mount delegation)
- $(use_enable nls)
- $(use_enable luks)
- $(use_enable openssl openssl-compat)
- $(use_with systemd)
- $(use_enable udev libudev)
-
- )
-
- econf "${myeconf[@]}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
end of thread, other threads:[~2024-09-29 14:57 UTC | newest]
Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-03 20:52 [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2024-09-29 14:57 Conrad Kostecki
2024-09-29 14:57 Conrad Kostecki
2024-09-29 14:57 Conrad Kostecki
2023-05-17 2:48 Sam James
2023-03-04 0:00 Conrad Kostecki
2023-03-04 0:00 Conrad Kostecki
2022-11-10 0:10 Conrad Kostecki
2022-11-10 0:10 Conrad Kostecki
2022-11-10 0:10 Conrad Kostecki
2022-10-10 21:00 Conrad Kostecki
2022-10-04 20:34 Conrad Kostecki
2022-10-04 20:34 Conrad Kostecki
2022-10-04 20:34 Conrad Kostecki
2022-09-04 11:06 Conrad Kostecki
2022-06-07 20:14 Conrad Kostecki
2022-02-09 22:57 Conrad Kostecki
2022-02-09 22:57 Conrad Kostecki
2021-09-03 1:53 Sam James
2021-07-01 21:45 Conrad Kostecki
2021-07-01 21:45 Conrad Kostecki
2021-01-03 20:52 Conrad Kostecki
2020-02-08 14:46 Conrad Kostecki
2020-02-08 13:43 Mikle Kolyada
2020-01-27 15:44 Thomas Deutschmann
2019-12-05 21:47 Conrad Kostecki
2019-12-02 23:22 Conrad Kostecki
2019-10-22 21:56 Piotr Karbowski
2019-07-24 20:49 Thomas Deutschmann
2019-07-05 17:50 Michał Górny
2019-03-18 18:27 Matt Turner
2017-12-20 22:54 Craig Andrews
2017-10-02 22:57 Jonas Stein
2017-07-18 6:29 Patrice Clement
2017-07-17 21:38 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox