Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/swtpm/
Date: Mon, 12 Oct 2020 09:06:19
Message-Id: 1602493557.2782b47283f7d27e4e487854c589ca3096d7622d.juippis@gentoo
1 commit: 2782b47283f7d27e4e487854c589ca3096d7622d
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 08:29:13 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 09:05:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2782b472
7
8 app-crypt/swtpm: fix indentation throughout ebuild
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 app-crypt/swtpm/swtpm-0.5.0.ebuild | 35 +++++++++++++++++------------------
13 1 file changed, 17 insertions(+), 18 deletions(-)
14
15 diff --git a/app-crypt/swtpm/swtpm-0.5.0.ebuild b/app-crypt/swtpm/swtpm-0.5.0.ebuild
16 index c3d81294665..eb05b36e0f1 100644
17 --- a/app-crypt/swtpm/swtpm-0.5.0.ebuild
18 +++ b/app-crypt/swtpm/swtpm-0.5.0.ebuild
19 @@ -4,7 +4,6 @@
20 EAPI=7
21
22 PYTHON_COMPAT=( python3_{7,8} )
23 -DISTUTILS_USE_SETUPTOOLS=bdepend
24
25 inherit autotools distutils-r1
26
27 @@ -23,19 +22,19 @@ COMMON_DEPEND="
28 fuse? (
29 dev-libs/glib:2
30 sys-fs/fuse:0
31 - )
32 + )
33 gnutls? (
34 - dev-libs/libtasn1:=
35 - >=net-libs/gnutls-3.1.0[tools]
36 + dev-libs/libtasn1:=
37 + >=net-libs/gnutls-3.1.0[tools]
38 )
39 !libressl? (
40 - dev-libs/openssl:0=
41 - dev-libs/libtpms[-libressl]
42 - )
43 + dev-libs/openssl:0=
44 + dev-libs/libtpms[-libressl]
45 + )
46 libressl? (
47 - dev-libs/libressl:0=
48 - dev-libs/libtpms[libressl]
49 - )
50 + dev-libs/libressl:0=
51 + dev-libs/libtpms[libressl]
52 + )
53 seccomp? ( sys-libs/libseccomp )
54 "
55
56 @@ -44,7 +43,7 @@ DEPEND="${COMMON_DEPEND}
57 net-misc/socat
58 dev-tcltk/expect
59 ${PYTHON_DEPS}
60 - )
61 + )
62 "
63
64 RDEPEND="${COMMON_DEPEND}
65 @@ -56,7 +55,7 @@ RDEPEND="${COMMON_DEPEND}
66 PATCHES=(
67 "${FILESDIR}/${PN}-0.5.0-fix-localca-path.patch"
68 "${FILESDIR}/${PN}-0.5.0-build-sys-Remove-WError.patch"
69 - )
70 +)
71
72 src_prepare() {
73 use test || eapply "${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch"
74 @@ -67,12 +66,12 @@ src_prepare() {
75
76 src_configure() {
77 econf \
78 - --disable-static \
79 - --with-openssl \
80 - --without-selinux \
81 - $(use_with fuse cuse) \
82 - $(use_with gnutls) \
83 - $(use_with seccomp)
84 + --disable-static \
85 + --with-openssl \
86 + --without-selinux \
87 + $(use_with fuse cuse) \
88 + $(use_with gnutls) \
89 + $(use_with seccomp)
90 }
91
92 src_compile() {