public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing: ChangeLog Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
@ 2008-07-05  9:46 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson (robbat2) @ 2008-07-05  9:46 UTC (permalink / raw
  To: gentoo-commits

robbat2     08/07/05 09:46:28

  Modified:             ChangeLog
  Added:               
                        Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
  Log:
  Bug #204022, do not install a bad bit of cron foo.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-00103-g1beee8d x86_64)

Revision  Changes    Path
1.2                  dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- ChangeLog	17 Oct 2007 08:47:40 -0000	1.1
+++ ChangeLog	5 Jul 2008 09:46:27 -0000	1.2
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.1 2007/10/17 08:47:40 robbat2 Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.2 2008/07/05 09:46:27 robbat2 Exp $
+
+*Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1 (05 Jul 2008)
+
+  05 Jul 2008; Robin H. Johnson <robbat2@gentoo.org>
+  +files/update_google_safebrowsing.cron,
+  +Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild:
+  Bug #204022, do not install a bad bit of cron foo.
 
 *Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03 (17 Oct 2007)
 



1.1                  dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild?rev=1.1&content-type=text/plain

Index: Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild,v 1.1 2008/07/05 09:46:27 robbat2 Exp $

MODULE_AUTHOR="DANBORN"
inherit perl-module

DESCRIPTION="SpamAssassin plugin to score mail based on Google blocklists."

IUSE="test"

SLOT="0"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86 ~ppc"
RDEPEND="dev-perl/Net-Google-SafeBrowsing-Blocklist
		 dev-perl/Net-Google-SafeBrowsing-UpdateRequest
		 mail-filter/spamassassin"
DEPEND="${RDEPEND}
		test? ( dev-perl/Test-Pod )"

SRC_TEST="do"

src_install() {
	perl-module_src_install
	insinto /etc/mail/spamassassin
	doins "${FILESDIR}"/init_google_safebrowsing.pre
	doins "${FILESDIR}"/24_google_safebrowsing.cf
	insinto /etc/cron.d/
	newins "${FILESDIR}"/update_google_safebrowsing.cron update_google_safebrowsing
	dosbin "${FILESDIR}"/update_google_safebrowsing.sh
	keepdir /var/lib/spamassassin/google_safebrowsing/
}

pkg_postinst() {
	if [ -f ${ROOT}/etc/cron.d/update_google_safebrowsing.sh ]; then
		ewarn "You MUST remove ${ROOT}/etc/cron.d/update_google_safebrowsing.sh"
	fi
	elog "To use this package:"
	elog "1. You MUST apply for a free apikey at:"
	elog "   http://code.google.com/apis/safebrowsing/key_signup.html"
	elog "2. Place the key into /etc/mail/spamassassin/24_google_safebrowsing.cf"
	elog "3. Manually run the script /usr/sbin/update_google_safebrowsing.sh"
	elog "4. Enable the plugin by uncommenting the loadplugin entry in"
	elog "   /etc/mail/spamassassin/init_google_safebrowsing.pre"
	elog "5. Restart spamd"
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing: ChangeLog Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
@ 2010-04-23 11:47 Torsten Veller (tove)
  0 siblings, 0 replies; 2+ messages in thread
From: Torsten Veller (tove) @ 2010-04-23 11:47 UTC (permalink / raw
  To: gentoo-commits

tove        10/04/23 11:47:31

  Modified:             ChangeLog
                        Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
  Log:
  Fix quoting
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	3 Jun 2009 15:57:26 -0000	1.3
+++ ChangeLog	23 Apr 2010 11:47:31 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.3 2009/06/03 15:57:26 tove Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.4 2010/04/23 11:47:31 tove Exp $
+
+  23 Apr 2010; Torsten Veller <tove@gentoo.org>
+  Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild:
+  Fix quoting
 
   03 Jun 2009; Torsten Veller <tove@gentoo.org>
   -Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03.ebuild:



1.2                  dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild?r1=1.1&r2=1.2

Index: Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild	5 Jul 2008 09:46:27 -0000	1.1
+++ Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild	23 Apr 2010 11:47:31 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild,v 1.1 2008/07/05 09:46:27 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild,v 1.2 2010/04/23 11:47:31 tove Exp $
 
 MODULE_AUTHOR="DANBORN"
 inherit perl-module
@@ -32,7 +32,7 @@
 }
 
 pkg_postinst() {
-	if [ -f ${ROOT}/etc/cron.d/update_google_safebrowsing.sh ]; then
+	if [[ -f ${ROOT}/etc/cron.d/update_google_safebrowsing.sh ]]; then
 		ewarn "You MUST remove ${ROOT}/etc/cron.d/update_google_safebrowsing.sh"
 	fi
 	elog "To use this package:"






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

end of thread, other threads:[~2010-04-23 11:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-23 11:47 [gentoo-commits] gentoo-x86 commit in dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing: ChangeLog Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.03-r1.ebuild Torsten Veller (tove)
  -- strict thread matches above, loose matches on Subject: below --
2008-07-05  9:46 Robin H. Johnson (robbat2)

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