public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-filter/anubis: anubis-4.1.1-r1.ebuild ChangeLog
@ 2012-10-30  9:46 Eray Aslan (eras)
  0 siblings, 0 replies; 3+ messages in thread
From: Eray Aslan (eras) @ 2012-10-30  9:46 UTC (permalink / raw
  To: gentoo-commits

eras        12/10/30 09:46:15

  Modified:             ChangeLog
  Added:                anubis-4.1.1-r1.ebuild
  Log:
  Don't call ar directly - bug #439460. Fix building with gnutls3
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)

Revision  Changes    Path
1.21                 mail-filter/anubis/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	4 Jun 2012 23:34:40 -0000	1.20
+++ ChangeLog	30 Oct 2012 09:46:15 -0000	1.21
@@ -1,6 +1,12 @@
 # ChangeLog for mail-filter/anubis
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v 1.20 2012/06/04 23:34:40 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v 1.21 2012/10/30 09:46:15 eras Exp $
+
+*anubis-4.1.1-r1 (30 Oct 2012)
+
+  30 Oct 2012; Eray Aslan <eras@gentoo.org> +anubis-4.1.1-r1.ebuild,
+  +files/4.1.1-gnutls3.patch:
+  Don't call ar directly - bug #439460. Fix building with gnutls3
 
   04 Jun 2012; Zac Medico <zmedico@gentoo.org> anubis-4.1.1.ebuild:
   inherit user for enewuser



1.1                  mail-filter/anubis/anubis-4.1.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: anubis-4.1.1-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v 1.1 2012/10/30 09:46:15 eras Exp $

EAPI=4
inherit eutils autotools pam toolchain-funcs user

DESCRIPTION="GNU Anubis is an outgoing mail processor."
HOMEPAGE="http://www.gnu.org/software/anubis/"

SRC_URI="mirror://gnu/anubis/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="crypt guile mysql postgres nls pam pcre sasl socks5 +gnutls tcpd test"

RDEPEND="sys-libs/gdbm
	crypt? ( >=app-crypt/gpgme-0.9.0 )
	guile? ( >=dev-scheme/guile-1.8 )
	mysql? ( virtual/mysql )
	pam?   ( virtual/pam )
	postgres? ( dev-db/postgresql-server )
	nls? ( sys-devel/gettext )
	pcre? ( >=dev-libs/libpcre-3.9 )
	sasl? ( virtual/gsasl )
	gnutls?   ( net-libs/gnutls )
	tcpd?  ( >=sys-apps/tcp-wrappers-7.6 )"
DEPEND="${RDEPEND}
	test? ( dev-util/dejagnu )"

REQUIRED_USE="mysql? ( sasl )
	postgres? ( sasl )"

pkg_setup() {
	enewuser anubis
}

src_prepare() {
	epatch "${FILESDIR}"/${PV}-gnutls.patch
	epatch "${FILESDIR}"/${PV}-gpgme.patch
	epatch "${FILESDIR}"/${PV}-testsuite.patch
	epatch "${FILESDIR}"/${PV}-gnutls3.patch
	sed -i -e "s/1024-bit ELG-E/1024-bit ELG/" \
		testsuite/etc/{gpgcrypt.pat,gpgse.pat}
	eautoreconf
}

src_configure() {
	local myconf
	if use crypt ; then
		myconf="--with-gpgme --with-gpgme-prefix=$(gpgme-config --prefix)"
	else
		myconf="--without-gpgme"
	fi
	econf --with-unprivileged-user=anubis \
		--disable-rpath \
		$(use_with mysql) \
		$(use_with postgres) \
		$(use_with pam) \
		$(use_with pcre) \
		$(use_enable nls) \
		$(use_with guile) \
		$(use_with sasl gsasl) \
		$(use_with gnutls) \
		$(use_with tcpd tcp-wrappers) \
		$(use_with socks5 socks-proxy) \
		${myconf}
}

src_compile() {
	# parallel make fails
	emake AR=$(tc-getAR) -j1
}

src_test() {
	cd "${S}/testsuite"
	emake -j1 check
}

src_install() {
	emake DESTDIR="${D}" install

	dodoc AUTHORS ChangeLog INSTALL NEWS README* THANKS TODO
	docinto examples
	dodoc examples/*anubis*
	docinto guile
	dodoc guile/*.scm

	if use pam ; then
		pamd_mimic system-auth anubis auth account session
	fi

	rm -rf "${D}"/usr/share/anubis
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in mail-filter/anubis: anubis-4.1.1-r1.ebuild ChangeLog
@ 2013-07-09 18:58 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 3+ messages in thread
From: Mikle Kolyada (zlogene) @ 2013-07-09 18:58 UTC (permalink / raw
  To: gentoo-commits

zlogene     13/07/09 18:58:53

  Modified:             anubis-4.1.1-r1.ebuild ChangeLog
  Log:
  add ~amd64 keyword wrt bug #476108
  
  (Portage version: 2.1.12.2/cvs/Linux i686, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.2                  mail-filter/anubis/anubis-4.1.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?r1=1.1&r2=1.2

Index: anubis-4.1.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- anubis-4.1.1-r1.ebuild	30 Oct 2012 09:46:15 -0000	1.1
+++ anubis-4.1.1-r1.ebuild	9 Jul 2013 18:58:53 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v 1.1 2012/10/30 09:46:15 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v 1.2 2013/07/09 18:58:53 zlogene Exp $
 
 EAPI=4
 inherit eutils autotools pam toolchain-funcs user
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="crypt guile mysql postgres nls pam pcre sasl socks5 +gnutls tcpd test"
 
 RDEPEND="sys-libs/gdbm



1.22                 mail-filter/anubis/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	30 Oct 2012 09:46:15 -0000	1.21
+++ ChangeLog	9 Jul 2013 18:58:53 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/anubis
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v 1.21 2012/10/30 09:46:15 eras Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v 1.22 2013/07/09 18:58:53 zlogene Exp $
+
+  09 Jul 2013; Mikle Kolyada <zlogene@gentoo.org> anubis-4.1.1-r1.ebuild:
+  add ~amd64 keyword wrt bug #476108
 
 *anubis-4.1.1-r1 (30 Oct 2012)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in mail-filter/anubis: anubis-4.1.1-r1.ebuild ChangeLog
@ 2015-03-02  9:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:21 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:21:23

  Modified:             anubis-4.1.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #502826
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  mail-filter/anubis/anubis-4.1.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild?r1=1.6&r2=1.7

Index: anubis-4.1.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- anubis-4.1.1-r1.ebuild	28 Dec 2014 15:52:31 -0000	1.6
+++ anubis-4.1.1-r1.ebuild	2 Mar 2015 09:21:23 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v 1.6 2014/12/28 15:52:31 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/anubis-4.1.1-r1.ebuild,v 1.7 2015/03/02 09:21:23 ago Exp $
 
 EAPI=4
 inherit eutils autotools pam toolchain-funcs user
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE="crypt guile mysql postgres nls pam pcre sasl socks5 +gnutls tcpd test"
 
 RDEPEND="sys-libs/gdbm



1.27                 mail-filter/anubis/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/anubis/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	28 Dec 2014 15:52:31 -0000	1.26
+++ ChangeLog	2 Mar 2015 09:21:23 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/anubis
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v 1.26 2014/12/28 15:52:31 titanofold Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/anubis/ChangeLog,v 1.27 2015/03/02 09:21:23 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> anubis-4.1.1-r1.ebuild:
+  Stable for ppc, wrt bug #502826
 
   28 Dec 2014; Aaron W. Swenson <titanofold@gentoo.org> anubis-4.1.1.ebuild,
   anubis-4.1.1-r1.ebuild:





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-03-02  9:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-30  9:46 [gentoo-commits] gentoo-x86 commit in mail-filter/anubis: anubis-4.1.1-r1.ebuild ChangeLog Eray Aslan (eras)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-09 18:58 Mikle Kolyada (zlogene)
2015-03-02  9:21 Agostino Sarubbo (ago)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox