From: "Michael Weber" <xmw@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: gnustep-apps/sogo/
Date: Sat, 15 Apr 2017 11:21:29 +0000 (UTC) [thread overview]
Message-ID: <1492255280.e6190a7156773b3f31fe7509d2aa76d4a314f8aa.xmw@gentoo> (raw)
commit: e6190a7156773b3f31fe7509d2aa76d4a314f8aa
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 15 11:21:00 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Sat Apr 15 11:21:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6190a71
gnustep-apps/sogo: Remove old version.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
gnustep-apps/sogo/Manifest | 1 -
gnustep-apps/sogo/sogo-3.2.1.ebuild | 100 ------------------------------------
2 files changed, 101 deletions(-)
diff --git a/gnustep-apps/sogo/Manifest b/gnustep-apps/sogo/Manifest
index 19c74cb7010..6da3efff493 100644
--- a/gnustep-apps/sogo/Manifest
+++ b/gnustep-apps/sogo/Manifest
@@ -1,3 +1,2 @@
-DIST sogo-3.2.1.tar.gz 32210103 SHA256 9faef922937f1413c1567e91cf865f577be43cc455c7124e3711bcdb49c7ded3 SHA512 0f8207d1f555982965870971f7130ad7868f4b904e3d6c8a2af9b0226820008174867a8515cd6e7775e9e0e4a3f1de98f73482425bec0c81b6d382ff9fe4a5ee WHIRLPOOL 529b03fd216289701d0af3a77236cc103693a366d597d6992c22d863bb9f7562462c906c1b2e78a72d922770dad953035b3e0c21d9ec3752ff7e8ac0d0bc7686
DIST sogo-3.2.6a.tar.gz 32285592 SHA256 07ba2527dab193c5424bc0dd4a9fb53e266c68936011a7245bf5e81e97366a62 SHA512 9b24ab0111408f18e655a5b5ebfe251fc7b9c21914af1c2f2d23c27a7d2d635a8ec0c0119752c7757d2ed878db018c483a8516911e89f5892c1d8fa878418471 WHIRLPOOL d02f25a4360ceea3ccab8f40b3ec726a4ef7792afb412cf415874727abdce1c828e231058be80b3ec5c970c929a33dc3145b82fac8ec13ffdf8b7a9c7d5bc58a
DIST sogo-3.2.8.tar.gz 32338801 SHA256 cc974f3e486c1b3897ed27c17cedb46b06580bab18a9a6a022fdebd38316ba3d SHA512 34a964e707879c0b6438fca7e7205f454a6bff080ccfc2bdd0b5bd1ffd2c4fcb6fd381e4f168bb2e716d5083f3bfd9d7887fa31b1cfb216a5810b1ffe7d72ca2 WHIRLPOOL 6c3645f3d25358508538baef2c3aebd7d4744f988745bc9117565ba0d373c010c0894083935ba7469c4199d37bf66623c21566fc0856a100f1397bdc2792d934
diff --git a/gnustep-apps/sogo/sogo-3.2.1.ebuild b/gnustep-apps/sogo/sogo-3.2.1.ebuild
deleted file mode 100644
index 2269a1f334f..00000000000
--- a/gnustep-apps/sogo/sogo-3.2.1.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnustep-2 user vcs-snapshot
-
-DESCRIPTION="Groupware server built around OpenGroupware.org and the SOPE application server"
-HOMEPAGE="http://www.sogo.nu"
-SRC_URI="https://github.com/inverse-inc/sogo/archive/SOGo-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gnutls libressl +ssl"
-
-RDEPEND="
- dev-libs/libmemcached
- net-misc/curl
- net-misc/memcached
- >=gnustep-libs/sope-${PV}[ldap]
- gnutls? ( net-libs/gnutls:= )
- !gnutls? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:= )
- )
-"
-DEPEND="${RDEPEND}
- >=gnustep-base/gnustep-make-2.6.3"
-
-pkg_pretend() {
- if use ssl && use gnutls && use libressl ; then
- ewarn "You have enabled both gnutls and libressl, but only"
- ewarn "one provider can be active. Using gnutls!"
- fi
-}
-
-pkg_setup() {
- enewuser sogo -1 /bin/bash /var/lib/sogo
-}
-
-src_prepare() {
- gnustep-base_src_prepare
- sed -e "s/validateArgs$//" -i configure \
- || die "GNUstep.conf sed failed"
-
- default
-}
-
-src_configure() {
- local ssl_provider
- if use ssl ; then
- if use gnutls ; then
- ssl_provider=gnutls
- else
- ssl_provider=ssl
- fi
- else
- ssl_provider=none
- fi
-
- egnustep_env
-
- ./configure \
- --disable-strip \
- --prefix=/usr \
- --with-ssl="${ssl_provider}" \
- $(use_enable debug) \
- || die "configure failed"
-}
-
-src_install() {
- gnustep-base_src_install
-
- newconfd "${FILESDIR}"/sogod.confd sogod
- newinitd "${FILESDIR}"/sogod.initd sogod
-
- insinto /etc/logrotate.d
- newins Scripts/logrotate sogo
- newdoc Apache/SOGo.conf SOGo-Apache.conf
-
- insinto /etc/sogo
- doins Scripts/sogo.conf
-
- insinto /etc/cron.d
- newins Scripts/sogo.cron sogo
- keepdir /var/log/sogo
-
- fowners sogo:sogo /var/log/sogo
- fowners -R root:sogo /etc/sogo
-}
-
-pkg_postinst() {
- gnustep-base_pkg_postinst
- elog "SOGo documentation is available online at:"
- elog "http://www.sogo.nu/downloads/documentation.html"
- elog
- elog "Apache sample configuration file is available in:"
- elog "/usr/share/doc/${PF}"
-}
next reply other threads:[~2017-04-15 11:21 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-15 11:21 Michael Weber [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-06-13 14:16 [gentoo-commits] repo/gentoo:master commit in: gnustep-apps/sogo/ Bernard Cafarelli
2021-08-31 20:03 Bernard Cafarelli
2021-08-31 20:03 Bernard Cafarelli
2021-07-07 19:25 Bernard Cafarelli
2021-06-21 22:15 Bernard Cafarelli
2021-06-03 21:22 Bernard Cafarelli
2021-05-03 7:01 Mikle Kolyada
2021-01-06 19:07 Andreas K. Hüttel
2020-07-29 17:44 Bernard Cafarelli
2019-12-22 17:48 Bernard Cafarelli
2019-12-22 17:48 Bernard Cafarelli
2019-12-10 12:22 Bernard Cafarelli
2019-09-24 12:56 Bernard Cafarelli
2019-09-23 16:39 Bernard Cafarelli
2019-04-03 21:29 Bernard Cafarelli
2017-07-25 12:04 Bernard Cafarelli
2017-07-17 12:21 Bernard Cafarelli
2017-05-31 12:30 Michael Weber
2017-04-15 11:21 Michael Weber
2017-02-05 20:24 Bernard Cafarelli
2017-02-05 20:24 Bernard Cafarelli
2016-11-07 13:11 Bernard Cafarelli
2016-11-02 12:51 Bernard Cafarelli
2016-03-24 10:08 Bernard Cafarelli
2016-03-24 10:08 Bernard Cafarelli
2016-03-09 13:39 Bernard Cafarelli
2016-02-17 13:45 Bernard Cafarelli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1492255280.e6190a7156773b3f31fe7509d2aa76d4a314f8aa.xmw@gentoo \
--to=xmw@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox