mail-filter/opensmtpd-extras: version bump
authorJason A. Donenfeld <zx2c4@gentoo.org>
Mon, 6 Jun 2016 18:17:58 +0000 (20:17 +0200)
committerJason A. Donenfeld <zx2c4@gentoo.org>
Mon, 6 Jun 2016 18:17:58 +0000 (20:17 +0200)
Package-Manager: portage-2.3.0_rc1

mail-filter/opensmtpd-extras/Manifest
mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1-r1.ebuild [deleted file]
mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201605232202.ebuild [moved from mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild with 95% similarity]

index d0fb03be94d76adee076ce47f41c52aefae95dc2..7f4831957c2fd4a0473c910b4f5fab55877ed1fc 100644 (file)
@@ -1,2 +1 @@
-DIST opensmtpd-extras-201602042118.tar.gz 142226 SHA256 59480e4bc0c75ca554a0a833b51764e4b7de6acf9f1ebcd2e7f176c144da3b32 SHA512 71bdb8330999f41013ceabcf5506fccabe88cf12d3dadef03360d0b58570a94d4373526352689ffd8608fb586d4e3099963dfc07678761bb4a4dad288585613d WHIRLPOOL b1399e58afda666b8a5833a73b710cd1e223991384582a41cc67fdaac413a6b97e446b1511420559885f782eb73066eccce7e364c205f1e937ff5d5fd97e7fd9
-DIST opensmtpd-extras-5.7.1.tar.gz 594170 SHA256 b56dc24427afe7d6156c85232427fe33a260aca8873eb118d0229dff3a248dce SHA512 b578c728fc95a9a7a5c6e201d9fd802529c9cce55d36ebff6d2fbe53e8bd66759ee4da19c7b1be283b72f2297c1e7f91bf4e1159898442e21ef1aca8abf85065 WHIRLPOOL c9cc17b3b890811de15aa4113e70765c4982ad57f71e7fa4fc3dca13b46852c8e0d5cd601752910624021c4eac882870b0f5040706ed19b4e3670f60353154cd
+DIST opensmtpd-extras-201605232202.tar.gz 631099 SHA256 dd61a16f4d4e553ef68b9ea9673f2b543b23b78f37a0975f62007204797ff7c6 SHA512 e24c7787999682474ec6f51e9e110c1e4c73b0da05ede8ea18462bc76c4a68b976e7a7a6977f6480a16ccc8b57c81db886e2c81e463509a398b3a3e44d046e25 WHIRLPOOL e188d57ea3a8e87f3d8e61feb7d841db702f0ecfafcfa2bd28ba23dcde89e2de10c75a50cbf286539c310acea99e3aabd3a201344ca42da70cfcabe8c2e69b41
diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1-r1.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1-r1.ebuild
deleted file mode 100644 (file)
index 4249381..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit 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/${P}.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
-
-       scheduler-python
-       scheduler-ram
-       scheduler-stub
-
-       table-ldap
-       table-mysql
-       table-passwd
-       table-postgres
-       table-python
-       table-redis
-       table-socketmap
-       table-sqlite
-       table-stub
-"
-IUSE="${MY_COMPONENTS} libressl 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
-       !libressl? ( dev-libs/openssl:0 )
-       libressl? ( dev-libs/libressl )
-       filter-python? ( dev-lang/python:2.7 )
-       filter-perl? ( dev-lang/perl )
-       filter-lua? ( luajit? ( dev-lang/luajit:2 ) !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}"
-
-src_prepare() {
-       eautoreconf
-}
-src_configure() {
-       econf \
-               --with-privsep-user=smtpd \
-               --with-privsep-path=/var/empty \
-               --sysconfdir=/etc/opensmtpd \
-               --with-lua-type=$(usex luajit luajit lua) \
-               $(for use in $MY_COMPONENTS; do use_with $use; done)
-}
similarity index 95%
rename from mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild
rename to mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201605232202.ebuild
index 76ff527261bce92465490202cdd9ca2afe741917..7e5c87054e30fbd296952da15ef7e44d37435cea 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -86,8 +86,7 @@ src_prepare() {
 }
 src_configure() {
        econf \
-               --with-privsep-user=smtpd \
-               --with-privsep-path=/var/empty \
+               --with-user-smtpd=smtpd \
                --sysconfdir=/etc/opensmtpd \
                --with-lua-type=$(usex luajit luajit lua) \
                $(for use in $MY_COMPONENTS; do use_with $use; done)