Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_gnutls/
Date: Wed, 19 Aug 2020 14:02:02
Message-Id: 1597845706.cfe817cce561b8160854e784d038e880237bd36e.whissi@gentoo
1 commit: cfe817cce561b8160854e784d038e880237bd36e
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 14:00:24 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 14:01:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfe817cc
7
8 www-apache/mod_gnutls: drop old
9
10 Package-Manager: Portage-3.0.3, Repoman-3.0.0
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 www-apache/mod_gnutls/Manifest | 2 -
14 www-apache/mod_gnutls/mod_gnutls-0.8.4.ebuild | 57 ---------------------------
15 www-apache/mod_gnutls/mod_gnutls-0.9.0.ebuild | 57 ---------------------------
16 3 files changed, 116 deletions(-)
17
18 diff --git a/www-apache/mod_gnutls/Manifest b/www-apache/mod_gnutls/Manifest
19 index 0dc2ef913f3..816105acc53 100644
20 --- a/www-apache/mod_gnutls/Manifest
21 +++ b/www-apache/mod_gnutls/Manifest
22 @@ -1,4 +1,2 @@
23 DIST mod_gnutls-0.11.0.tar.bz2 458966 BLAKE2B 6d81be7b7d48255173d028a8e3207badbce0c1ba541124a241b63d4ed4eb36833156e9cd7194318138b6f16667a971d5311d56b9b0036e5b3d9dac8d352a4335 SHA512 090d244823f15a6b23dd2ad9b35db202ebbe96210ec8fd06e06f13e32c327e9d9a449834c899755f1ec8c1a3a71db1b125d436ce661caee1002a8719b4c1320e
24 DIST mod_gnutls-0.8.2.tar.bz2 415903 BLAKE2B 98c96479e2419ee511ba802c99823ddaae89ddeb7a2f0660b91e2a371f8249ec4f98b2c0443389168a22dbe133b0bcc6020bfa597447507a8e4f91827b6d1d24 SHA512 b1690aeee4f6d104e4b6a7bd443e289204630b33e00b7b145b11291d8819b5c3d5bd52b535746b8ebdfee7a5f34df527243b743b8c5d716b1d0617e319d43f4d
25 -DIST mod_gnutls-0.8.4.tar.bz2 422811 BLAKE2B 33b992cbd42671ce0be320268f2421f167c05e62074ad538c22efc1f8b2f1a8604550f103bab579f1dc8622a78bda9e1e62826db06ff0dae21fb9dc1c2ee2bc2 SHA512 cee592f12a26894dacd6db6f25d4b1b1901579ac5cc7dee2be826aa3697bc2af55e2136ef65acd6dc4c9fac635465fbf8c06ea236651d45a2b5fd963408e6684
26 -DIST mod_gnutls-0.9.0.tar.bz2 435869 BLAKE2B d5c0a1846b083c469cddc0516a81ac8ef85b1b9287ad53312964f7c542ec107689f832db83a11abda178e79a2d6f2177b6093219a94cec9ded6e8eb6cef86796 SHA512 12a85a53277401648fd44ade3f27969d023ef46d1b593ed0df4284ea5421d87caedc72262fd6eb54a17f4949cf1551bfaef66f81128a060cc77064cd32d00cd2
27
28 diff --git a/www-apache/mod_gnutls/mod_gnutls-0.8.4.ebuild b/www-apache/mod_gnutls/mod_gnutls-0.8.4.ebuild
29 deleted file mode 100644
30 index 1d6985d4f07..00000000000
31 --- a/www-apache/mod_gnutls/mod_gnutls-0.8.4.ebuild
32 +++ /dev/null
33 @@ -1,57 +0,0 @@
34 -# Copyright 1999-2018 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -# WARNING! Don't switch to EAPI-6 without checking paths of installed files
38 -# carefully. The .so file might get installed into /
39 -EAPI=5
40 -inherit autotools apache-module
41 -
42 -DESCRIPTION="mod_gnutls uses GnuTLS for SSL/TLS encryption in Apache2 (compare to mod_ssl)"
43 -HOMEPAGE="https://mod.gnutls.org/"
44 -SRC_URI="https://mod.gnutls.org/downloads/${P}.tar.bz2"
45 -
46 -LICENSE="Apache-2.0"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE="test"
50 -
51 -CDEPEND=">=net-libs/gnutls-3.3.0:="
52 -DEPEND="${CDEPEND}
53 - test? ( app-crypt/monkeysphere )"
54 -RDEPEND="${CDEPEND}"
55 -
56 -# Fails because gpg-agent cannot be accessed
57 -RESTRICT="test"
58 -
59 -APACHE2_MOD_CONF="47_${PN}"
60 -APACHE2_MOD_DEFINE="GNUTLS"
61 -
62 -DOCFILES="CHANGELOG NOTICE README"
63 -
64 -need_apache2_4
65 -
66 -src_prepare() {
67 - default
68 - eautoreconf
69 -}
70 -
71 -src_configure() {
72 - local myeconfargs=(
73 - --with-apxs="${APXS}"
74 - --disable-strict
75 - --disable-doxygen-dot
76 - --disable-doxygen-doc
77 - --disable-doxygen-html
78 - --disable-doxygen-pdf
79 - ac_cv_path_UNSHARE=no
80 - )
81 - econf "${myeconfargs[@]}"
82 -}
83 -
84 -src_compile() {
85 - emake
86 -}
87 -
88 -src_install() {
89 - apache-module_src_install
90 -}
91
92 diff --git a/www-apache/mod_gnutls/mod_gnutls-0.9.0.ebuild b/www-apache/mod_gnutls/mod_gnutls-0.9.0.ebuild
93 deleted file mode 100644
94 index 17459ae2588..00000000000
95 --- a/www-apache/mod_gnutls/mod_gnutls-0.9.0.ebuild
96 +++ /dev/null
97 @@ -1,57 +0,0 @@
98 -# Copyright 1999-2019 Gentoo Authors
99 -# Distributed under the terms of the GNU General Public License v2
100 -
101 -# WARNING! Don't switch to EAPI-6 without checking paths of installed files
102 -# carefully. The .so file might get installed into /
103 -EAPI=5
104 -inherit autotools apache-module
105 -
106 -DESCRIPTION="mod_gnutls uses GnuTLS for SSL/TLS encryption in Apache2 (compare to mod_ssl)"
107 -HOMEPAGE="https://mod.gnutls.org/"
108 -SRC_URI="https://mod.gnutls.org/downloads/${P}.tar.bz2"
109 -
110 -LICENSE="Apache-2.0"
111 -SLOT="0"
112 -KEYWORDS="~amd64 ~x86"
113 -IUSE="test"
114 -
115 -CDEPEND=">=net-libs/gnutls-3.3.0:="
116 -DEPEND="${CDEPEND}
117 - test? ( app-crypt/monkeysphere )"
118 -RDEPEND="${CDEPEND}"
119 -
120 -# Fails because gpg-agent cannot be accessed
121 -RESTRICT="test"
122 -
123 -APACHE2_MOD_CONF="47_${PN}"
124 -APACHE2_MOD_DEFINE="GNUTLS"
125 -
126 -DOCFILES="CHANGELOG NOTICE README"
127 -
128 -need_apache2_4
129 -
130 -src_prepare() {
131 - default
132 - eautoreconf
133 -}
134 -
135 -src_configure() {
136 - local myeconfargs=(
137 - --with-apxs="${APXS}"
138 - --disable-strict
139 - --disable-doxygen-dot
140 - --disable-doxygen-doc
141 - --disable-doxygen-html
142 - --disable-doxygen-pdf
143 - ac_cv_path_UNSHARE=no
144 - )
145 - econf "${myeconfargs[@]}"
146 -}
147 -
148 -src_compile() {
149 - emake
150 -}
151 -
152 -src_install() {
153 - apache-module_src_install
154 -}