public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-filter/gld: ChangeLog gld-1.7-r1.ebuild
@ 2010-08-11  1:35 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-11  1:35 UTC (permalink / raw
  To: gentoo-commits

jer         10/08/11 01:35:43

  Modified:             ChangeLog
  Added:                gld-1.7-r1.ebuild
  Log:
  Respect LDFLAGS (bug #331785). Move dosed scripts to src_prepare and make sure they are run properly. Respect CC. Respect CFLAGS. Whitespace.
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.44                 mail-filter/gld/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	17 Jun 2010 21:36:11 -0000	1.43
+++ ChangeLog	11 Aug 2010 01:35:43 -0000	1.44
@@ -1,6 +1,12 @@
 # ChangeLog for mail-filter/gld
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.43 2010/06/17 21:36:11 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.44 2010/08/11 01:35:43 jer Exp $
+
+*gld-1.7-r1 (11 Aug 2010)
+
+  11 Aug 2010; Jeroen Roovers <jer@gentoo.org> +gld-1.7-r1.ebuild:
+  Respect LDFLAGS (bug #331785). Move dosed scripts to src_prepare and make
+  sure they are run properly. Respect CC. Respect CFLAGS. Whitespace.
 
   17 Jun 2010; Patrick Lauer <patrick@gentoo.org> gld-1.7.ebuild:
   Migrating away from deprecated postgres virtuals



1.1                  mail-filter/gld/gld-1.7-r1.ebuild

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

Index: gld-1.7-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.1 2010/08/11 01:35:43 jer Exp $

EAPI="2"

inherit toolchain-funcs

DESCRIPTION="A standalone anti-spam greylisting algorithm on top of Postfix"
HOMEPAGE="http://www.gasmi.net/gld.html"
SRC_URI="http://www.gasmi.net/down/${P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="postgres"
# Not adding a mysql USE flag. The package defaults to it, so we will too.
DEPEND="sys-libs/zlib
	>=dev-libs/openssl-0.9.6
	postgres? ( dev-db/postgresql-server )
	!postgres? ( virtual/mysql )"

src_prepare() {
	sed -i gld.conf \
		-e 's:^LOOPBACKONLY=.*:LOOPBACKONLY=1:' \
		-e 's:^#USER=.*:USER=nobody:' \
		-e 's:^#GROUP=.*:GROUP=nobody:' \
		|| die "sed gld.conf failed"

	sed -i Makefile.in \
		-e '/ -c /{s|-O2|$(CFLAGS)|g}' \
		-e '/ -o /{s|-O2|$(CFLAGS) $(LDFLAGS)|g}' \
		-e '/strip/d' \
		|| die "sed Makefile.in failed"
}

src_configure() {
	tc-export CC
	# It's kind of weird. $(use_with postgres pgsql) won't work if you don't
	# use it...
	if use postgres ; then
		myconf="${myconf} --with-pgsql"
	fi

	econf ${myconf} || die "econf failed"
}

src_install() {
	dobin gld

	insinto /etc
	newins gld.conf gld.conf.example

	dodoc HISTORY README*

	insinto /usr/share/${PN}/sql
	doins *.pgsql *-whitelist.sql "${FILESDIR}"/tables.sql

	newinitd "${FILESDIR}"/gld.rc gld
}

pkg_postinst() {
	elog
	elog "Please read the README file in /usr/share/doc/${PF} for"
	elog "details on how to setup gld."
	elog
	elog "The sql files have been installed to /usr/share/${PN}/sql."
	elog
}






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

* [gentoo-commits] gentoo-x86 commit in mail-filter/gld: ChangeLog gld-1.7-r1.ebuild
@ 2011-06-18 12:49 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-06-18 12:49 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/06/18 12:49:31

  Modified:             ChangeLog gld-1.7-r1.ebuild
  Log:
  Stable on amd64 wrt bug #371013
  
  (Portage version: 2.1.9.49/cvs/Linux x86_64)

Revision  Changes    Path
1.45                 mail-filter/gld/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	11 Aug 2010 01:35:43 -0000	1.44
+++ ChangeLog	18 Jun 2011 12:49:31 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/gld
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.44 2010/08/11 01:35:43 jer Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.45 2011/06/18 12:49:31 hwoarang Exp $
+
+  18 Jun 2011; Markos Chandras <hwoarang@gentoo.org> gld-1.7-r1.ebuild:
+  Stable on amd64 wrt bug #371013
 
 *gld-1.7-r1 (11 Aug 2010)
 



1.2                  mail-filter/gld/gld-1.7-r1.ebuild

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

Index: gld-1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gld-1.7-r1.ebuild	11 Aug 2010 01:35:43 -0000	1.1
+++ gld-1.7-r1.ebuild	18 Jun 2011 12:49:31 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.1 2010/08/11 01:35:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.2 2011/06/18 12:49:31 hwoarang Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="postgres"
 # Not adding a mysql USE flag. The package defaults to it, so we will too.
 DEPEND="sys-libs/zlib






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

* [gentoo-commits] gentoo-x86 commit in mail-filter/gld: ChangeLog gld-1.7-r1.ebuild
@ 2011-06-19 13:45 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2011-06-19 13:45 UTC (permalink / raw
  To: gentoo-commits

maekke      11/06/19 13:45:09

  Modified:             ChangeLog gld-1.7-r1.ebuild
  Log:
  x86 stable, bug #371013
  
  (Portage version: 2.1.10.3/cvs/Linux x86_64)

Revision  Changes    Path
1.46                 mail-filter/gld/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	18 Jun 2011 12:49:31 -0000	1.45
+++ ChangeLog	19 Jun 2011 13:45:09 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/gld
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.45 2011/06/18 12:49:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.46 2011/06/19 13:45:09 maekke Exp $
+
+  19 Jun 2011; Markus Meier <maekke@gentoo.org> gld-1.7-r1.ebuild:
+  x86 stable, bug #371013
 
   18 Jun 2011; Markos Chandras <hwoarang@gentoo.org> gld-1.7-r1.ebuild:
   Stable on amd64 wrt bug #371013



1.3                  mail-filter/gld/gld-1.7-r1.ebuild

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

Index: gld-1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gld-1.7-r1.ebuild	18 Jun 2011 12:49:31 -0000	1.2
+++ gld-1.7-r1.ebuild	19 Jun 2011 13:45:09 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.2 2011/06/18 12:49:31 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.3 2011/06/19 13:45:09 maekke Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="postgres"
 # Not adding a mysql USE flag. The package defaults to it, so we will too.
 DEPEND="sys-libs/zlib






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

* [gentoo-commits] gentoo-x86 commit in mail-filter/gld: ChangeLog gld-1.7-r1.ebuild
@ 2011-06-22 21:35 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2011-06-22 21:35 UTC (permalink / raw
  To: gentoo-commits

ranger      11/06/22 21:35:10

  Modified:             ChangeLog gld-1.7-r1.ebuild
  Log:
  Marking gld-1.7-r1 ppc for bug 371013
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.47                 mail-filter/gld/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	19 Jun 2011 13:45:09 -0000	1.46
+++ ChangeLog	22 Jun 2011 21:35:10 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/gld
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.46 2011/06/19 13:45:09 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.47 2011/06/22 21:35:10 ranger Exp $
+
+  22 Jun 2011; Brent Baude <ranger@gentoo.org> gld-1.7-r1.ebuild:
+  Marking gld-1.7-r1 ppc for bug 371013
 
   19 Jun 2011; Markus Meier <maekke@gentoo.org> gld-1.7-r1.ebuild:
   x86 stable, bug #371013



1.4                  mail-filter/gld/gld-1.7-r1.ebuild

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

Index: gld-1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gld-1.7-r1.ebuild	19 Jun 2011 13:45:09 -0000	1.3
+++ gld-1.7-r1.ebuild	22 Jun 2011 21:35:10 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.3 2011/06/19 13:45:09 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.4 2011/06/22 21:35:10 ranger Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="postgres"
 # Not adding a mysql USE flag. The package defaults to it, so we will too.
 DEPEND="sys-libs/zlib






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

* [gentoo-commits] gentoo-x86 commit in mail-filter/gld: ChangeLog gld-1.7-r1.ebuild
@ 2012-11-27 20:24 Eray Aslan (eras)
  0 siblings, 0 replies; 5+ messages in thread
From: Eray Aslan (eras) @ 2012-11-27 20:24 UTC (permalink / raw
  To: gentoo-commits

eras        12/11/27 20:24:00

  Modified:             ChangeLog
  Removed:              gld-1.7-r1.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)

Revision  Changes    Path
1.53                 mail-filter/gld/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	20 Nov 2012 19:53:05 -0000	1.52
+++ ChangeLog	27 Nov 2012 20:24:00 -0000	1.53
@@ -1,6 +1,9 @@
 # ChangeLog for mail-filter/gld
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.52 2012/11/20 19:53:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.53 2012/11/27 20:24:00 eras Exp $
+
+  27 Nov 2012; Eray Aslan <eras@gentoo.org> -gld-1.7-r1.ebuild:
+  Remove old
 
   20 Nov 2012; Agostino Sarubbo <ago@gentoo.org> gld-1.7-r2.ebuild:
   Stable for x86, wrt bug #441348





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

end of thread, other threads:[~2012-11-27 20:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-11  1:35 [gentoo-commits] gentoo-x86 commit in mail-filter/gld: ChangeLog gld-1.7-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-06-18 12:49 Markos Chandras (hwoarang)
2011-06-19 13:45 Markus Meier (maekke)
2011-06-22 21:35 Brent Baude (ranger)
2012-11-27 20:24 Eray Aslan (eras)

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