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: Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0-r1.ebuild ChangeLog Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0.ebuild
@ 2014-08-26 19:44 Ian Stakenvicius (axs)
  0 siblings, 0 replies; only message in thread
From: Ian Stakenvicius (axs) @ 2014-08-26 19:44 UTC (permalink / raw
  To: gentoo-commits

axs         14/08/26 19:44:04

  Modified:             ChangeLog
  Added:               
                        Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0-r1.ebuild
  Removed:             
                        Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0.ebuild
  Log:
  bumped EAPI to 5 to help with dev-lang/perl upgrade
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)

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

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	4 Aug 2014 17:42:38 -0000	1.8
+++ ChangeLog	26 Aug 2014 19:44:04 -0000	1.9
@@ -1,6 +1,13 @@
 # ChangeLog for dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.8 2014/08/04 17:42:38 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing/ChangeLog,v 1.9 2014/08/26 19:44:04 axs Exp $
+
+*Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0-r1 (26 Aug 2014)
+
+  26 Aug 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
+  +Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0-r1.ebuild,
+  -Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0.ebuild:
+  bumped EAPI to 5 to help with dev-lang/perl upgrade
 
   04 Aug 2014; Mikle Kolyada <zlogene@gentoo.org>
   Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0.ebuild:



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

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

Index: Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0-r1.ebuild
===================================================================
# Copyright 1999-2014 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.30.0-r1.ebuild,v 1.1 2014/08/26 19:44:04 axs Exp $

EAPI=5

MODULE_AUTHOR=DANBORN
MODULE_VERSION=1.03
inherit perl-module

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

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE="test"

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"
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-08-26 19:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-26 19:44 [gentoo-commits] gentoo-x86 commit in dev-perl/Mail-SpamAssassin-Plugin-GoogleSafeBrowsing: Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0-r1.ebuild ChangeLog Mail-SpamAssassin-Plugin-GoogleSafeBrowsing-1.30.0.ebuild Ian Stakenvicius (axs)

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