Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnustep-libs/sope/
Date: Tue, 24 Sep 2019 12:56:42
Message-Id: 1569329791.aa6713d5b1b101bdbdd12463ada3a27a5199082b.voyageur@gentoo
1 commit: aa6713d5b1b101bdbdd12463ada3a27a5199082b
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 23 20:45:59 2019 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 24 12:56:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6713d5
7
8 gnustep-libs/sope: drop old 3.2 versions
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 gnustep-libs/sope/Manifest | 2 --
14 gnustep-libs/sope/sope-3.2.10-r1.ebuild | 62 ---------------------------------
15 gnustep-libs/sope/sope-3.2.9-r1.ebuild | 62 ---------------------------------
16 3 files changed, 126 deletions(-)
17
18 diff --git a/gnustep-libs/sope/Manifest b/gnustep-libs/sope/Manifest
19 index 0ffa42d03bb..71f9ca904c3 100644
20 --- a/gnustep-libs/sope/Manifest
21 +++ b/gnustep-libs/sope/Manifest
22 @@ -1,4 +1,2 @@
23 -DIST sope-3.2.10.tar.gz 2197170 BLAKE2B 29c3400d3162b2bd659d06fbd806fcfa3307fbf6f00048567e26c3fdac5e492bd511773b402f79b92db457e9dc995b5dadd5dc84baf6cbd89b463ae5e4d65457 SHA512 09c0e8ca7333e89c48e30b19dc3bbacca5a28688145848ff332ff304f92a791b3895774e5fd1f77c6d4c8615ecb5a461ba348792502fc7c5bbd9d445a191bccf
24 -DIST sope-3.2.9.tar.gz 2196831 BLAKE2B 9f62310ed61893d85d38f192b5639de44a8e6240463563c64e9c0551624c9bfafdddad5e6a819f15cf7fa12842d55fe417bff3972fe42fe07ac8e99655d90730 SHA512 ffa3d63eed5862aba9740ab84408297218ad6cd75b0dc7e40f2810366281bf139c55e27c11405b51dc1cf640d5f5434ee14c2d5f1d0384ad50684c23d8bc58b7
25 DIST sope-4.0.7.tar.gz 2200743 BLAKE2B 1ab31ca92821b5febbcfa7776292a565216e40d6fdbe9afdf8bb97bb445a654716d3abd4736821b881cb464c3b7e46353910ab38fd853f89581eb248db0155d3 SHA512 6d723278f714f01b215e7b0cf046008b6448c84daddde4ad1f3434b8154a8bcede3adaa11c980b4f4b9c4950a07d545185483cf8ba75a8bac91e86437dc6e74b
26 DIST sope-4.0.8.tar.gz 2201872 BLAKE2B e0838fcf462bdd143a9b42aba0c775e414769f04f351073238f3554d24c95103f8fc781dcb57c540e295af6d92586e2c3da3e730952155f063dd7e8844959e04 SHA512 6ecf9b473e3b8e556578efc74036e60fb4b07cad837df034471f56dfc08507332470b2ced2db6c5206adbf73cf27c1743b57fa8fc154d9bd7a7865f68c1fa98c
27
28 diff --git a/gnustep-libs/sope/sope-3.2.10-r1.ebuild b/gnustep-libs/sope/sope-3.2.10-r1.ebuild
29 deleted file mode 100644
30 index 7e1b88530ca..00000000000
31 --- a/gnustep-libs/sope/sope-3.2.10-r1.ebuild
32 +++ /dev/null
33 @@ -1,62 +0,0 @@
34 -# Copyright 1999-2019 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=6
38 -
39 -inherit eutils gnustep-2 vcs-snapshot
40 -
41 -DESCRIPTION="A set of frameworks forming a complete Web application server environment"
42 -HOMEPAGE="http://www.sogo.nu/"
43 -SRC_URI="https://github.com/inverse-inc/sope/archive/SOPE-${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE="gnutls ldap libressl mysql postgres +ssl +xml"
49 -
50 -RDEPEND="
51 - sys-libs/zlib
52 - ldap? ( net-nds/openldap )
53 - gnutls? ( net-libs/gnutls:= )
54 - !gnutls? (
55 - !libressl? ( dev-libs/openssl:0= )
56 - libressl? ( dev-libs/libressl:= )
57 - )
58 - mysql? ( dev-db/mysql-connector-c:= )
59 - postgres? ( dev-db/postgresql:= )
60 - xml? ( dev-libs/libxml2:2 )
61 -"
62 -DEPEND="${RDEPEND}"
63 -
64 -pkg_pretend() {
65 - if use ssl && use gnutls && use libressl ; then
66 - ewarn "You have enabled both gnutls and libressl, but only"
67 - ewarn "one provider can be active. Using gnutls!"
68 - fi
69 -}
70 -
71 -src_configure() {
72 - local ssl_provider
73 - if use ssl ; then
74 - if use gnutls ; then
75 - ssl_provider=gnutls
76 - else
77 - ssl_provider=ssl
78 - fi
79 - else
80 - ssl_provider=none
81 - fi
82 -
83 - egnustep_env
84 -
85 - # Non-standard configure script
86 - ./configure \
87 - --disable-strip \
88 - $(use_enable debug) \
89 - $(use_enable ldap openldap) \
90 - $(use_enable mysql) \
91 - $(use_enable postgres postgresql) \
92 - $(use_enable xml) \
93 - --with-ssl="${ssl_provider}" \
94 - --with-gnustep || die "configure failed"
95 -}
96
97 diff --git a/gnustep-libs/sope/sope-3.2.9-r1.ebuild b/gnustep-libs/sope/sope-3.2.9-r1.ebuild
98 deleted file mode 100644
99 index 7e1b88530ca..00000000000
100 --- a/gnustep-libs/sope/sope-3.2.9-r1.ebuild
101 +++ /dev/null
102 @@ -1,62 +0,0 @@
103 -# Copyright 1999-2019 Gentoo Authors
104 -# Distributed under the terms of the GNU General Public License v2
105 -
106 -EAPI=6
107 -
108 -inherit eutils gnustep-2 vcs-snapshot
109 -
110 -DESCRIPTION="A set of frameworks forming a complete Web application server environment"
111 -HOMEPAGE="http://www.sogo.nu/"
112 -SRC_URI="https://github.com/inverse-inc/sope/archive/SOPE-${PV}.tar.gz -> ${P}.tar.gz"
113 -
114 -LICENSE="LGPL-2"
115 -SLOT="0"
116 -KEYWORDS="~amd64 ~x86"
117 -IUSE="gnutls ldap libressl mysql postgres +ssl +xml"
118 -
119 -RDEPEND="
120 - sys-libs/zlib
121 - ldap? ( net-nds/openldap )
122 - gnutls? ( net-libs/gnutls:= )
123 - !gnutls? (
124 - !libressl? ( dev-libs/openssl:0= )
125 - libressl? ( dev-libs/libressl:= )
126 - )
127 - mysql? ( dev-db/mysql-connector-c:= )
128 - postgres? ( dev-db/postgresql:= )
129 - xml? ( dev-libs/libxml2:2 )
130 -"
131 -DEPEND="${RDEPEND}"
132 -
133 -pkg_pretend() {
134 - if use ssl && use gnutls && use libressl ; then
135 - ewarn "You have enabled both gnutls and libressl, but only"
136 - ewarn "one provider can be active. Using gnutls!"
137 - fi
138 -}
139 -
140 -src_configure() {
141 - local ssl_provider
142 - if use ssl ; then
143 - if use gnutls ; then
144 - ssl_provider=gnutls
145 - else
146 - ssl_provider=ssl
147 - fi
148 - else
149 - ssl_provider=none
150 - fi
151 -
152 - egnustep_env
153 -
154 - # Non-standard configure script
155 - ./configure \
156 - --disable-strip \
157 - $(use_enable debug) \
158 - $(use_enable ldap openldap) \
159 - $(use_enable mysql) \
160 - $(use_enable postgres postgresql) \
161 - $(use_enable xml) \
162 - --with-ssl="${ssl_provider}" \
163 - --with-gnustep || die "configure failed"
164 -}