Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptsetup/
Date: Wed, 04 Nov 2015 05:41:53
Message-Id: 1446615613.7c0b692810d50f926060de1bd9979c771f706b0f.polynomial-c@gentoo
1 commit: 7c0b692810d50f926060de1bd9979c771f706b0f
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 4 05:40:13 2015 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 4 05:40:13 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c0b6928
7
8 sys-fs/cryptsetup: Bump to version 1.7.0
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-fs/cryptsetup/Manifest | 1 +
14 sys-fs/cryptsetup/cryptsetup-1.7.0.ebuild | 106 ++++++++++++++++++++++++++++++
15 2 files changed, 107 insertions(+)
16
17 diff --git a/sys-fs/cryptsetup/Manifest b/sys-fs/cryptsetup/Manifest
18 index cee324f..bdb509e 100644
19 --- a/sys-fs/cryptsetup/Manifest
20 +++ b/sys-fs/cryptsetup/Manifest
21 @@ -2,3 +2,4 @@ DIST cryptsetup-1.6.2.tar.bz2 1189584 SHA256 15723f0198303d4bcb99d480b7a773918e2
22 DIST cryptsetup-1.6.5.tar.xz 1136892 SHA256 267973f20be43f9d685f7193aa23954b60768c74a1d330243114d4b8bc17ca9a SHA512 c77ac590d28954e7bd430d1069b820a288c4668857a7ced7f81546ea39676f2b536abbcda06f20440e31c205b7ada68bcfa5aab220b102a2b62198a788d9b65e WHIRLPOOL 74a597abbdcc1225bb811597e53737eab2348a328f3ba30e7eb519a0621b06e6c898e320db8e24a16decfd4706b6a2e68b06894dde91124e4c089e952dbff9c1
23 DIST cryptsetup-1.6.7.tar.xz 1188876 SHA256 c23c24c8d662032da8650c1c84985221be8bbedf4737c1540bba7e4517dfe820 SHA512 d6cecd2f3f5d468d4337d4e8407c8c3315e8972c0fc72cd1f93fb67f02a632b56ad293f08f6682f24c9ad0b5ad5967be751e5679413109692ade5823aafd1d19 WHIRLPOOL 95611938ddbf3520f1a2a2891e3103f6bf1699a210f7902bd65d1e61357ed44c9b6f344f567d1d5f1b88adb40154831e34014f3e22ec141f9101b707295007a0
24 DIST cryptsetup-1.6.8.tar.xz 1221232 SHA256 45a6ccd3c65b7d904e58e1cb3656a7e997190b6a05b5ff7c6887e4a41c5f19bc SHA512 db189a98da6329f4d4c2ae92dbdc08ccffdf6ae41c964186ebf48a612bf0aa9731653ef6b7549b5feee0043edfa171874c3609418499902e6339b48481c621d7 WHIRLPOOL 8873d14fc2a54d97ed7d065ad4a0c63b057d9085c2cfd99c0b97aba78d49566bd7c9b47e56033992ac1f3892369bebf2165aaccc6ca3f933c0c33c2e6ef8c1e4
25 +DIST cryptsetup-1.7.0.tar.xz 1224616 SHA256 075524a7cc0db36d12119fa79116750accb1c6c8825d5faa2534b74b8ce3d148 SHA512 3c1732c8f1c18f0497c84c81777f54c398eea9300cd82a18691bf323d303687f4dfdd76010fb86114414f78193630cae4de5b665ce417dbf307f7fef4fa1bef6 WHIRLPOOL 4706317a6f2fe24e5c56df934ee3b0fb64cca2544885ce11ad567369ede1215e8a624b3f4c1e445aa4b59dbf9f644aed461ec422f627f37af4569f74b9f2a1ab
26
27 diff --git a/sys-fs/cryptsetup/cryptsetup-1.7.0.ebuild b/sys-fs/cryptsetup/cryptsetup-1.7.0.ebuild
28 new file mode 100644
29 index 0000000..be438d6
30 --- /dev/null
31 +++ b/sys-fs/cryptsetup/cryptsetup-1.7.0.ebuild
32 @@ -0,0 +1,106 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
39 +
40 +inherit autotools python-single-r1 linux-info libtool eutils versionator
41 +
42 +DESCRIPTION="Tool to setup encrypted devices with dm-crypt"
43 +HOMEPAGE="https://gitlab.com/cryptsetup/cryptsetup/blob/master/README.md"
44 +SRC_URI="mirror://kernel/linux/utils/${PN}/v$(get_version_component_range 1-2)/${P}.tar.xz"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
49 +CRYPTO_BACKENDS="+gcrypt kernel nettle openssl"
50 +# we don't support nss since it doesn't allow cryptsetup to be built statically
51 +# and it's missing ripemd160 support so it can't provide full backward compatibility
52 +IUSE="${CRYPTO_BACKENDS} libressl nls pwquality python reencrypt static static-libs udev urandom"
53 +REQUIRED_USE="^^ ( ${CRYPTO_BACKENDS//+/} )
54 + python? ( ${PYTHON_REQUIRED_USE} )
55 + static? ( !gcrypt )" #496612
56 +
57 +LIB_DEPEND="dev-libs/libgpg-error[static-libs(+)]
58 + dev-libs/popt[static-libs(+)]
59 + sys-apps/util-linux[static-libs(+)]
60 + gcrypt? ( dev-libs/libgcrypt:0=[static-libs(+)] )
61 + nettle? ( >=dev-libs/nettle-2.4[static-libs(+)] )
62 + openssl? (
63 + !libressl? ( dev-libs/openssl:0=[static-libs(+)] )
64 + libressl? ( dev-libs/libressl:=[static-libs(+)] )
65 + )
66 + pwquality? ( dev-libs/libpwquality[static-libs(+)] )
67 + sys-fs/lvm2[static-libs(+)]
68 + udev? ( virtual/libudev[static-libs(+)] )"
69 +# We have to always depend on ${LIB_DEPEND} rather than put behind
70 +# !static? () because we provide a shared library which links against
71 +# these other packages. #414665
72 +RDEPEND="static-libs? ( ${LIB_DEPEND} )
73 + ${LIB_DEPEND//\[static-libs\(+\)\]}
74 + python? ( ${PYTHON_DEPS} )"
75 +DEPEND="${RDEPEND}
76 + virtual/pkgconfig
77 + static? ( ${LIB_DEPEND} )"
78 +
79 +pkg_setup() {
80 + local CONFIG_CHECK="~DM_CRYPT ~CRYPTO ~CRYPTO_CBC"
81 + local WARNING_DM_CRYPT="CONFIG_DM_CRYPT:\tis not set (required for cryptsetup)\n"
82 + local WARNING_CRYPTO_CBC="CONFIG_CRYPTO_CBC:\tis not set (required for kernel 2.6.19)\n"
83 + local WARNING_CRYPTO="CONFIG_CRYPTO:\tis not set (required for cryptsetup)\n"
84 + check_extra_config
85 +
86 + use python && python-single-r1_pkg_setup
87 +}
88 +
89 +src_prepare() {
90 + sed -i '/^LOOPDEV=/s:$: || exit 0:' tests/{compat,mode}-test || die
91 + epatch_user && eautoreconf
92 +}
93 +
94 +src_configure() {
95 + if use kernel ; then
96 + ewarn "Note that kernel backend is very slow for this type of operation"
97 + ewarn "and is provided mainly for embedded systems wanting to avoid"
98 + ewarn "userspace crypto libraries."
99 + fi
100 +
101 + econf \
102 + --sbindir=/sbin \
103 + --enable-shared \
104 + $(use_enable static static-cryptsetup) \
105 + $(use_enable static-libs static) \
106 + $(use_enable nls) \
107 + $(use_enable pwquality) \
108 + $(use_enable python) \
109 + $(use_enable reencrypt cryptsetup-reencrypt) \
110 + $(use_enable udev) \
111 + $(use_enable !urandom dev-random) \
112 + --with-crypto_backend=$(for x in ${CRYPTO_BACKENDS//+/} ; do usev ${x} ; done)
113 +}
114 +
115 +src_test() {
116 + if [[ ! -e /dev/mapper/control ]] ; then
117 + ewarn "No /dev/mapper/control found -- skipping tests"
118 + return 0
119 + fi
120 + local p
121 + for p in /dev/mapper /dev/loop* ; do
122 + addwrite ${p}
123 + done
124 + default
125 +}
126 +
127 +src_install() {
128 + default
129 + if use static ; then
130 + mv "${ED}"/sbin/cryptsetup{.static,} || die
131 + mv "${ED}"/sbin/veritysetup{.static,} || die
132 + use reencrypt && { mv "${ED}"/sbin/cryptsetup-reencrypt{.static,} || die ; }
133 + fi
134 + prune_libtool_files --modules
135 +
136 + newconfd "${FILESDIR}"/1.6.7-dmcrypt.confd dmcrypt
137 + newinitd "${FILESDIR}"/1.6.7-dmcrypt.rc dmcrypt
138 +}