zx2c4 15/06/02 12:00:05 Modified: ChangeLog Added: opensmtpd-extras-5.4.5.201506020835.ebuild Removed: opensmtpd-extras-5.4.5.201505291521.ebuild Log: Version bump. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 55758000)
Revision Changes Path 1.4 mail-filter/opensmtpd-extras/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opensmtpd-extras/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opensmtpd-extras/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opensmtpd-extras/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/mail-filter/opensmtpd-extras/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 29 May 2015 13:54:36 -0000 1.3 +++ ChangeLog 2 Jun 2015 12:00:05 -0000 1.4 @@ -1,6 +1,13 @@ # ChangeLog for mail-filter/opensmtpd-extras # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/opensmtpd-extras/ChangeLog,v 1.3 2015/05/29 13:54:36 zx2c4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-filter/opensmtpd-extras/ChangeLog,v 1.4 2015/06/02 12:00:05 zx2c4 Exp $ + +*opensmtpd-extras-5.4.5.201506020835 (02 Jun 2015) + + 02 Jun 2015; Jason A. Donenfeld <[email protected]> + +opensmtpd-extras-5.4.5.201506020835.ebuild, + -opensmtpd-extras-5.4.5.201505291521.ebuild: + Version bump. *opensmtpd-extras-5.4.5.201505291521 (29 May 2015) 1.1 mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild?rev=1.1&content-type=text/plain Index: opensmtpd-extras-5.4.5.201506020835.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild,v 1.1 2015/06/02 12:00:05 zx2c4 Exp $ EAPI=5 inherit versionator eutils flag-o-matic autotools DESCRIPTION="Extra tables, filters, and various other addons for OpenSMTPD" HOMEPAGE="https://github.com/OpenSMTPD/OpenSMTPD-extras" SRC_URI="https://www.opensmtpd.org/archives/${PN}-$(get_version_component_range 4-).tar.gz" LICENSE="ISC BSD BSD-1 BSD-2 BSD-4" SLOT="0" KEYWORDS="~amd64 ~x86" MY_COMPONENTS=" filter-clamav filter-dkim-signer filter-dnsbl filter-lua filter-monkey filter-pause filter-perl filter-python filter-regex filter-spamassassin filter-stub filter-trace filter-void queue-null queue-python queue-ram queue-stub table-ldap table-mysql table-postgres table-redis table-socketmap table-passwd table-python table-sqlite table-stub scheduler-ram scheduler-stub scheduler-python " IUSE="${MY_COMPONENTS} luajit" # Deps: # mysql needs -lmysqlclient # sqlite needs -lsqlite3 # redis needs -lhiredis # postgres requires -lpq # ldap uses internal library and requires no deps # spamassassin uses internal library and requires no deps # clamav uses internal library and requires no deps # dnsbl needs -lasr # python requires python, currently pegged at 2.7 # lua requires any lua version DEPEND="mail-mta/opensmtpd dev-libs/libevent dev-libs/openssl filter-python? ( dev-lang/python:2.7 ) filter-perl? ( dev-lang/perl ) filter-lua? ( luajit? ( dev-lang/luajit ) !luajit? ( dev-lang/lua ) ) filter-dnsbl? ( net-libs/libasr ) table-sqlite? ( dev-db/sqlite:3 ) table-mysql? ( virtual/mysql ) table-postgres? ( dev-db/postgresql ) table-redis? ( dev-libs/hiredis ) table-python? ( dev-lang/python:2.7 ) scheduler-python? ( dev-lang/python:2.7 ) queue-python? ( dev-lang/python:2.7 ) " RDEPEND="${DEPEND}" S=${WORKDIR}/${PN}-$(get_version_component_range 4-) src_prepare() { eautoreconf } src_configure() { econf \ --with-privsep-user=smtpd \ --with-privsep-path=/var/empty \ --sysconfdir=/etc/opensmtpd \ --with-lua-type=$(use luajit && echo luajit || echo lua) \ $(for use in $MY_COMPONENTS; do use_with $use; done) }
