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-apps/sogo/
Date: Mon, 17 Jul 2017 12:21:37
Message-Id: 1500294062.65c40af7ea89f3b8f229ab7f49f6826b6d73d3af.voyageur@gentoo
1 commit: 65c40af7ea89f3b8f229ab7f49f6826b6d73d3af
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 17 10:20:35 2017 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 17 12:21:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c40af7
7
8 gnustep-apps/sogo: drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 gnustep-apps/sogo/Manifest | 2 -
13 gnustep-apps/sogo/sogo-3.2.6a.ebuild | 100 -----------------------------------
14 gnustep-apps/sogo/sogo-3.2.8.ebuild | 100 -----------------------------------
15 3 files changed, 202 deletions(-)
16
17 diff --git a/gnustep-apps/sogo/Manifest b/gnustep-apps/sogo/Manifest
18 index 2321d7f0797..8a67c93898a 100644
19 --- a/gnustep-apps/sogo/Manifest
20 +++ b/gnustep-apps/sogo/Manifest
21 @@ -1,3 +1 @@
22 -DIST sogo-3.2.6a.tar.gz 32285592 SHA256 07ba2527dab193c5424bc0dd4a9fb53e266c68936011a7245bf5e81e97366a62 SHA512 9b24ab0111408f18e655a5b5ebfe251fc7b9c21914af1c2f2d23c27a7d2d635a8ec0c0119752c7757d2ed878db018c483a8516911e89f5892c1d8fa878418471 WHIRLPOOL d02f25a4360ceea3ccab8f40b3ec726a4ef7792afb412cf415874727abdce1c828e231058be80b3ec5c970c929a33dc3145b82fac8ec13ffdf8b7a9c7d5bc58a
23 -DIST sogo-3.2.8.tar.gz 32338801 SHA256 cc974f3e486c1b3897ed27c17cedb46b06580bab18a9a6a022fdebd38316ba3d SHA512 34a964e707879c0b6438fca7e7205f454a6bff080ccfc2bdd0b5bd1ffd2c4fcb6fd381e4f168bb2e716d5083f3bfd9d7887fa31b1cfb216a5810b1ffe7d72ca2 WHIRLPOOL 6c3645f3d25358508538baef2c3aebd7d4744f988745bc9117565ba0d373c010c0894083935ba7469c4199d37bf66623c21566fc0856a100f1397bdc2792d934
24 DIST sogo-3.2.9.tar.gz 32443733 SHA256 c28591e738c5c57428c63504a52ef527898e7a4c6af444ccfe988ccfb5c4f8b1 SHA512 070b3812d65598364d9204432678ea48705bf7481371e44442a13ad86d219415e24c579ad59212a7631922a527d30e69aeb17711c3abfc01960f663f4e0112a3 WHIRLPOOL bb8dd3053c96acb507a3d620a191ebe6225d157995af4428b66755bf38061226cd4d9537413117477d40c095531ca46040d28c78b97f2aeea520bb4ae318683c
25
26 diff --git a/gnustep-apps/sogo/sogo-3.2.6a.ebuild b/gnustep-apps/sogo/sogo-3.2.6a.ebuild
27 deleted file mode 100644
28 index 5c728f4bdae..00000000000
29 --- a/gnustep-apps/sogo/sogo-3.2.6a.ebuild
30 +++ /dev/null
31 @@ -1,100 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit gnustep-2 user vcs-snapshot
38 -
39 -DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server"
40 -HOMEPAGE="http://www.sogo.nu"
41 -SRC_URI="https://github.com/inverse-inc/sogo/archive/SOGo-${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="gnutls libressl +ssl"
47 -
48 -RDEPEND="
49 - dev-libs/libmemcached
50 - net-misc/curl
51 - net-misc/memcached
52 - >=gnustep-libs/sope-${PV}[ldap]
53 - gnutls? ( net-libs/gnutls:= )
54 - !gnutls? (
55 - !libressl? ( dev-libs/openssl:0= )
56 - libressl? ( dev-libs/libressl:= )
57 - )
58 -"
59 -DEPEND="${RDEPEND}
60 - >=gnustep-base/gnustep-make-2.6.3"
61 -
62 -pkg_pretend() {
63 - if use ssl && use gnutls && use libressl ; then
64 - ewarn "You have enabled both gnutls and libressl, but only"
65 - ewarn "one provider can be active. Using gnutls!"
66 - fi
67 -}
68 -
69 -pkg_setup() {
70 - enewuser sogo -1 /bin/bash /var/lib/sogo
71 -}
72 -
73 -src_prepare() {
74 - gnustep-base_src_prepare
75 - sed -e "s/validateArgs$//" -i configure \
76 - || die "GNUstep.conf sed failed"
77 -
78 - default
79 -}
80 -
81 -src_configure() {
82 - local ssl_provider
83 - if use ssl ; then
84 - if use gnutls ; then
85 - ssl_provider=gnutls
86 - else
87 - ssl_provider=ssl
88 - fi
89 - else
90 - ssl_provider=none
91 - fi
92 -
93 - egnustep_env
94 -
95 - ./configure \
96 - --disable-strip \
97 - --prefix=/usr \
98 - --with-ssl="${ssl_provider}" \
99 - $(use_enable debug) \
100 - || die "configure failed"
101 -}
102 -
103 -src_install() {
104 - gnustep-base_src_install
105 -
106 - newconfd "${FILESDIR}"/sogod.confd sogod
107 - newinitd "${FILESDIR}"/sogod.initd sogod
108 -
109 - insinto /etc/logrotate.d
110 - newins Scripts/logrotate sogo
111 - newdoc Apache/SOGo.conf SOGo-Apache.conf
112 -
113 - insinto /etc/sogo
114 - doins Scripts/sogo.conf
115 -
116 - insinto /etc/cron.d
117 - newins Scripts/sogo.cron sogo
118 - keepdir /var/log/sogo
119 -
120 - fowners sogo:sogo /var/log/sogo
121 - fowners -R root:sogo /etc/sogo
122 -}
123 -
124 -pkg_postinst() {
125 - gnustep-base_pkg_postinst
126 - elog "SOGo documentation is available online at:"
127 - elog "http://www.sogo.nu/downloads/documentation.html"
128 - elog
129 - elog "Apache sample configuration file is available in:"
130 - elog "/usr/share/doc/${PF}"
131 -}
132
133 diff --git a/gnustep-apps/sogo/sogo-3.2.8.ebuild b/gnustep-apps/sogo/sogo-3.2.8.ebuild
134 deleted file mode 100644
135 index 5c728f4bdae..00000000000
136 --- a/gnustep-apps/sogo/sogo-3.2.8.ebuild
137 +++ /dev/null
138 @@ -1,100 +0,0 @@
139 -# Copyright 1999-2017 Gentoo Foundation
140 -# Distributed under the terms of the GNU General Public License v2
141 -
142 -EAPI=6
143 -
144 -inherit gnustep-2 user vcs-snapshot
145 -
146 -DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server"
147 -HOMEPAGE="http://www.sogo.nu"
148 -SRC_URI="https://github.com/inverse-inc/sogo/archive/SOGo-${PV}.tar.gz -> ${P}.tar.gz"
149 -
150 -LICENSE="GPL-2"
151 -SLOT="0"
152 -KEYWORDS="~amd64 ~x86"
153 -IUSE="gnutls libressl +ssl"
154 -
155 -RDEPEND="
156 - dev-libs/libmemcached
157 - net-misc/curl
158 - net-misc/memcached
159 - >=gnustep-libs/sope-${PV}[ldap]
160 - gnutls? ( net-libs/gnutls:= )
161 - !gnutls? (
162 - !libressl? ( dev-libs/openssl:0= )
163 - libressl? ( dev-libs/libressl:= )
164 - )
165 -"
166 -DEPEND="${RDEPEND}
167 - >=gnustep-base/gnustep-make-2.6.3"
168 -
169 -pkg_pretend() {
170 - if use ssl && use gnutls && use libressl ; then
171 - ewarn "You have enabled both gnutls and libressl, but only"
172 - ewarn "one provider can be active. Using gnutls!"
173 - fi
174 -}
175 -
176 -pkg_setup() {
177 - enewuser sogo -1 /bin/bash /var/lib/sogo
178 -}
179 -
180 -src_prepare() {
181 - gnustep-base_src_prepare
182 - sed -e "s/validateArgs$//" -i configure \
183 - || die "GNUstep.conf sed failed"
184 -
185 - default
186 -}
187 -
188 -src_configure() {
189 - local ssl_provider
190 - if use ssl ; then
191 - if use gnutls ; then
192 - ssl_provider=gnutls
193 - else
194 - ssl_provider=ssl
195 - fi
196 - else
197 - ssl_provider=none
198 - fi
199 -
200 - egnustep_env
201 -
202 - ./configure \
203 - --disable-strip \
204 - --prefix=/usr \
205 - --with-ssl="${ssl_provider}" \
206 - $(use_enable debug) \
207 - || die "configure failed"
208 -}
209 -
210 -src_install() {
211 - gnustep-base_src_install
212 -
213 - newconfd "${FILESDIR}"/sogod.confd sogod
214 - newinitd "${FILESDIR}"/sogod.initd sogod
215 -
216 - insinto /etc/logrotate.d
217 - newins Scripts/logrotate sogo
218 - newdoc Apache/SOGo.conf SOGo-Apache.conf
219 -
220 - insinto /etc/sogo
221 - doins Scripts/sogo.conf
222 -
223 - insinto /etc/cron.d
224 - newins Scripts/sogo.cron sogo
225 - keepdir /var/log/sogo
226 -
227 - fowners sogo:sogo /var/log/sogo
228 - fowners -R root:sogo /etc/sogo
229 -}
230 -
231 -pkg_postinst() {
232 - gnustep-base_pkg_postinst
233 - elog "SOGo documentation is available online at:"
234 - elog "http://www.sogo.nu/downloads/documentation.html"
235 - elog
236 - elog "Apache sample configuration file is available in:"
237 - elog "/usr/share/doc/${PF}"
238 -}