public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2015-08-31 22:52 Manuel Rüger
  0 siblings, 0 replies; 9+ messages in thread
From: Manuel Rüger @ 2015-08-31 22:52 UTC (permalink / raw
  To: gentoo-commits

commit:     d61feb2942222e145a9db65a16e22594252ea3f3
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 22:51:40 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 22:51:58 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d61feb29

mail-filter/opensmtpd-extras: Version bump

Gentoo-Bug: #556940

Package-Manager: portage-2.2.20.1

 mail-filter/opensmtpd-extras/Manifest              |  1 +
 .../opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild | 91 ++++++++++++++++++++++
 2 files changed, 92 insertions(+)

diff --git a/mail-filter/opensmtpd-extras/Manifest b/mail-filter/opensmtpd-extras/Manifest
index 771b513..18c6ca4 100644
--- a/mail-filter/opensmtpd-extras/Manifest
+++ b/mail-filter/opensmtpd-extras/Manifest
@@ -1 +1,2 @@
 DIST opensmtpd-extras-201506020835.tar.gz 159567 SHA256 47dfc47dd6ad56b15707dcfb592ebe04e39f107a44076e0ab969b6d940eec84e SHA512 b4eef315a7c44166ec36c821a0113cf0f448125fce4773b9d748b34507cde71b131195b81237e6efe5a209817d770a76050b5538c21349900ee2d13cfa1b5f5f WHIRLPOOL 2b35b4a8c2855bd9110ee639f5d6e269f4fd393483f58bce09ab65c188677ca81abba3cd55a65a16cefd0a15a15bcf59f5c53f5ff11f9773a542d18b0858d6cf
+DIST opensmtpd-extras-5.7.1.tar.gz 594170 SHA256 b56dc24427afe7d6156c85232427fe33a260aca8873eb118d0229dff3a248dce SHA512 b578c728fc95a9a7a5c6e201d9fd802529c9cce55d36ebff6d2fbe53e8bd66759ee4da19c7b1be283b72f2297c1e7f91bf4e1159898442e21ef1aca8abf85065 WHIRLPOOL c9cc17b3b890811de15aa4113e70765c4982ad57f71e7fa4fc3dca13b46852c8e0d5cd601752910624021c4eac882870b0f5040706ed19b4e3670f60353154cd

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild
new file mode 100644
index 0000000..7dc86f8
--- /dev/null
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild
@@ -0,0 +1,91 @@
+# 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} 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:0
+	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}"
+
+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)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2015-10-11  0:18 Anthony G. Basile
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile @ 2015-10-11  0:18 UTC (permalink / raw
  To: gentoo-commits

commit:     da9ea683893e2d1fe5eef209ab919dec864d7975
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 00:24:32 2015 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 00:24:42 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da9ea683

mail-filter/opensmtpd-extras: add libressl support

Package-Manager: portage-2.2.20.1

 .../opensmtpd-extras-5.7.1-r1.ebuild               | 92 ++++++++++++++++++++++
 1 file changed, 92 insertions(+)

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
new file mode 100644
index 0000000..4249381
--- /dev/null
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1-r1.ebuild
@@ -0,0 +1,92 @@
+# 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)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2016-03-30 13:31 Jason Donenfeld
  0 siblings, 0 replies; 9+ messages in thread
From: Jason Donenfeld @ 2016-03-30 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     dc2811fcb25f70dd145bdf539371f1b66d1810c7
Author:     Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 30 13:28:01 2016 +0000
Commit:     Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Wed Mar 30 13:30:55 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc2811fc

mail-filter/opensmtpd-extras: bump

Package-Manager: portage-2.2.28

 mail-filter/opensmtpd-extras/Manifest              |  2 +-
 ... => opensmtpd-extras-5.7.1.201602042118.ebuild} | 25 +++---
 .../opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild | 91 ----------------------
 3 files changed, 15 insertions(+), 103 deletions(-)

diff --git a/mail-filter/opensmtpd-extras/Manifest b/mail-filter/opensmtpd-extras/Manifest
index 18c6ca4..d0fb03b 100644
--- a/mail-filter/opensmtpd-extras/Manifest
+++ b/mail-filter/opensmtpd-extras/Manifest
@@ -1,2 +1,2 @@
-DIST opensmtpd-extras-201506020835.tar.gz 159567 SHA256 47dfc47dd6ad56b15707dcfb592ebe04e39f107a44076e0ab969b6d940eec84e SHA512 b4eef315a7c44166ec36c821a0113cf0f448125fce4773b9d748b34507cde71b131195b81237e6efe5a209817d770a76050b5538c21349900ee2d13cfa1b5f5f WHIRLPOOL 2b35b4a8c2855bd9110ee639f5d6e269f4fd393483f58bce09ab65c188677ca81abba3cd55a65a16cefd0a15a15bcf59f5c53f5ff11f9773a542d18b0858d6cf
+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

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild
similarity index 85%
rename from mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild
rename to mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild
index ba9ec00..76ff527 100644
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.4.5.201506020835.ebuild
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit versionator eutils flag-o-matic autotools
+inherit eutils flag-o-matic autotools versionator
 
 DESCRIPTION="Extra tables, filters, and various other addons for OpenSMTPD"
 HOMEPAGE="https://github.com/OpenSMTPD/OpenSMTPD-extras"
@@ -33,21 +33,21 @@ MY_COMPONENTS="
 	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-passwd
-	table-python
 	table-sqlite
 	table-stub
-
-	scheduler-ram
-	scheduler-stub
-	scheduler-python
 "
-IUSE="${MY_COMPONENTS} luajit"
+IUSE="${MY_COMPONENTS} libressl luajit"
 
 # Deps:
 # mysql needs -lmysqlclient
@@ -61,14 +61,17 @@ IUSE="${MY_COMPONENTS} luajit"
 # python requires python, currently pegged at 2.7
 # lua requires any lua version
 
-DEPEND="mail-mta/opensmtpd dev-libs/libevent dev-libs/openssl
+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 ) !luajit? ( dev-lang/lua ) )
+	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-postgres? ( dev-db/postgresql:* )
 	table-redis? ( dev-libs/hiredis )
 	table-python? ( dev-lang/python:2.7 )
 	scheduler-python? ( dev-lang/python:2.7 )

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild
deleted file mode 100644
index 7dc86f8..0000000
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.ebuild
+++ /dev/null
@@ -1,91 +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} 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:0
-	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}"
-
-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)
-}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2016-06-06 18:16 Jason Donenfeld
  0 siblings, 0 replies; 9+ messages in thread
From: Jason Donenfeld @ 2016-06-06 18:16 UTC (permalink / raw
  To: gentoo-commits

commit:     c8876f79da049f80ad29c3617f8ee90c71de1d42
Author:     Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  6 18:17:58 2016 +0000
Commit:     Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Mon Jun  6 18:17:58 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8876f79

mail-filter/opensmtpd-extras: version bump

Package-Manager: portage-2.3.0_rc1

 mail-filter/opensmtpd-extras/Manifest              |  3 +-
 .../opensmtpd-extras-5.7.1-r1.ebuild               | 92 ----------------------
 ... => opensmtpd-extras-5.9.2.201605232202.ebuild} |  5 +-
 3 files changed, 3 insertions(+), 97 deletions(-)

diff --git a/mail-filter/opensmtpd-extras/Manifest b/mail-filter/opensmtpd-extras/Manifest
index d0fb03b..7f48319 100644
--- a/mail-filter/opensmtpd-extras/Manifest
+++ b/mail-filter/opensmtpd-extras/Manifest
@@ -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
index 4249381..0000000
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1-r1.ebuild
+++ /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)
-}

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201605232202.ebuild
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 76ff527..7e5c870 100644
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.7.1.201602042118.ebuild
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201605232202.ebuild
@@ -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)


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2016-06-06 22:29 Jason Donenfeld
  0 siblings, 0 replies; 9+ messages in thread
From: Jason Donenfeld @ 2016-06-06 22:29 UTC (permalink / raw
  To: gentoo-commits

commit:     949a8946a681b8fa1183769123ba5f5534ee1854
Author:     Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  6 22:30:16 2016 +0000
Commit:     Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Mon Jun  6 22:30:16 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=949a8946

mail-filter/opensmtpd-extras: snapshot version bump

Package-Manager: portage-2.3.0_rc1

 mail-filter/opensmtpd-extras/Manifest                                   | 2 +-
 ...2.201605232202.ebuild => opensmtpd-extras-5.9.2.201606062304.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/opensmtpd-extras/Manifest b/mail-filter/opensmtpd-extras/Manifest
index 7f48319..c123151 100644
--- a/mail-filter/opensmtpd-extras/Manifest
+++ b/mail-filter/opensmtpd-extras/Manifest
@@ -1 +1 @@
-DIST opensmtpd-extras-201605232202.tar.gz 631099 SHA256 dd61a16f4d4e553ef68b9ea9673f2b543b23b78f37a0975f62007204797ff7c6 SHA512 e24c7787999682474ec6f51e9e110c1e4c73b0da05ede8ea18462bc76c4a68b976e7a7a6977f6480a16ccc8b57c81db886e2c81e463509a398b3a3e44d046e25 WHIRLPOOL e188d57ea3a8e87f3d8e61feb7d841db702f0ecfafcfa2bd28ba23dcde89e2de10c75a50cbf286539c310acea99e3aabd3a201344ca42da70cfcabe8c2e69b41
+DIST opensmtpd-extras-201606062304.tar.gz 631098 SHA256 d04e00200adfd850d5f2ed98108f71cb789dc904b212e16bb0a775f8fa06fa2d SHA512 7af916ed71fb81518bccbc7a82946a2a8252d2b70663238d7eea21841c82926221f03ab7afebd79d49f41e970e62c2dd70234ebaa0d27be5a9c5bbb4ae4ef7d8 WHIRLPOOL 077522d35e1c526490441f6a41bb69d441ddd25f53cebdc1f11380332b44956320cf0304687e7e5b5bf82be523801a7d4e6b5aacf7d87506b795d4fe96dbdb4f

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201605232202.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild
similarity index 100%
rename from mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201605232202.ebuild
rename to mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2016-10-12 12:10 Jason Donenfeld
  0 siblings, 0 replies; 9+ messages in thread
From: Jason Donenfeld @ 2016-10-12 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     f53035a57c8fd1eee881fb85b2dc3c194c7729ca
Author:     Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 12:10:31 2016 +0000
Commit:     Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 12:10:31 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53035a5

mail-filter/opensmtpd-extras: bump

Package-Manager: portage-2.3.2

 mail-filter/opensmtpd-extras/Manifest              |  1 +
 .../opensmtpd-extras-5.9.2.201609141255.ebuild     | 83 ++++++++++++++++++++++
 2 files changed, 84 insertions(+)

diff --git a/mail-filter/opensmtpd-extras/Manifest b/mail-filter/opensmtpd-extras/Manifest
index c123151..7eaf4ff 100644
--- a/mail-filter/opensmtpd-extras/Manifest
+++ b/mail-filter/opensmtpd-extras/Manifest
@@ -1 +1,2 @@
 DIST opensmtpd-extras-201606062304.tar.gz 631098 SHA256 d04e00200adfd850d5f2ed98108f71cb789dc904b212e16bb0a775f8fa06fa2d SHA512 7af916ed71fb81518bccbc7a82946a2a8252d2b70663238d7eea21841c82926221f03ab7afebd79d49f41e970e62c2dd70234ebaa0d27be5a9c5bbb4ae4ef7d8 WHIRLPOOL 077522d35e1c526490441f6a41bb69d441ddd25f53cebdc1f11380332b44956320cf0304687e7e5b5bf82be523801a7d4e6b5aacf7d87506b795d4fe96dbdb4f
+DIST opensmtpd-extras-201609141255.tar.gz 561289 SHA256 2a892e538fdf9cc9963a4a2cfc596494ffd244e5f220f34514f73b523353f82e SHA512 df9caf235095edd1f8535e41a3aedc51a5674a62d66d0749d5bb0d4433f3ea54e0b31a8b3a4d619b7ca79b64bcb1576b97f220c60cb3f48080d1972b7a46cc0b WHIRLPOOL 7e74a9eb03dbca479f90eac3f2def4cdafaef437b6bbf30b8a2ebb37167ee929e53ded91ada425a5f6d197405e7a5e69f903026c156f434ba21c41284b544b08

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
new file mode 100644
index 00000000..78bc404
--- /dev/null
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils flag-o-matic autotools versionator
+
+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-monkey
+	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
+
+#filter-python? ( dev-lang/python:2.7 )
+#filter-perl? ( dev-lang/perl )
+#filter-dnsbl? ( net-libs/libasr )
+#filter-lua? ( luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:* ) )
+DEPEND="mail-mta/opensmtpd
+	dev-libs/libevent
+	!libressl? ( dev-libs/openssl:0 )
+	libressl? ( dev-libs/libressl )
+	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 $(for use in $MY_COMPONENTS; do use_with $use; done) \
+		--with-user-smtpd=smtpd \
+		--sysconfdir=/etc/opensmtpd
+		#--with-lua-type=$(usex luajit luajit lua) \
+}


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2016-10-15 10:39 Jeroen Roovers
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers @ 2016-10-15 10:39 UTC (permalink / raw
  To: gentoo-commits

commit:     7f283e0ff8187cf222b65464b27cc7b500aede5b
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 15 10:39:06 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Oct 15 10:39:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f283e0f

mail-filter/opensmtpd-extras: Remove short <longdescription /> that matches DESCRIPTION.

Package-Manager: portage-2.3.2

 mail-filter/opensmtpd-extras/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/mail-filter/opensmtpd-extras/metadata.xml b/mail-filter/opensmtpd-extras/metadata.xml
index 725651b..8a6e271 100644
--- a/mail-filter/opensmtpd-extras/metadata.xml
+++ b/mail-filter/opensmtpd-extras/metadata.xml
@@ -1,9 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<longdescription lang="en">
-Extras filters, tables, and other extensions for mail-mta/opensmtpd.
-</longdescription>
 	<maintainer type="person">
 		<email>zx2c4@gentoo.org</email>
 		<name>Jason A. Donenfeld</name>


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2016-10-15 14:59 Jason Donenfeld
  0 siblings, 0 replies; 9+ messages in thread
From: Jason Donenfeld @ 2016-10-15 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     e3e652e47645a66373c07a0b25c932212f548d2f
Author:     Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 15 14:58:11 2016 +0000
Commit:     Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 15 14:59:07 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e652e4

mail-filter/opensmtpd-extras: not compat with 6.0

Package-Manager: portage-2.3.2

 mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
index 78bc404..8b22c09 100644
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://www.opensmtpd.org/archives/${PN}-$(get_version_component_range
 
 LICENSE="ISC BSD BSD-1 BSD-2 BSD-4"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 MY_COMPONENTS="
 	filter-monkey
 	filter-stub


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

* [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/
@ 2019-02-13 14:54 Brian Evans
  0 siblings, 0 replies; 9+ messages in thread
From: Brian Evans @ 2019-02-13 14:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f88d6209296dbb2425d917a5c8c471f9a985cc81
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 13 14:54:09 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Feb 13 14:54:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f88d6209

mail-filter/opensmtpd-extras: Update dependency

Non-maintainer commit

Closes: https://bugs.gentoo.org/665914
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 .../opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild       | 4 ++--
 .../opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild       | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild
index f7cb787bdf4..989e81fd986 100644
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201606062304.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -69,7 +69,7 @@ DEPEND="mail-mta/opensmtpd
 	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-mysql? ( dev-db/mysql-connector-c:0= )
 	table-postgres? ( dev-db/postgresql:* )
 	table-redis? ( dev-libs/hiredis )
 	table-python? ( dev-lang/python:2.7 )

diff --git a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
index 69c6776bcb7..6229e20cb00 100644
--- a/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
+++ b/mail-filter/opensmtpd-extras/opensmtpd-extras-5.9.2.201609141255.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -60,7 +60,7 @@ DEPEND="mail-mta/opensmtpd
 	!libressl? ( dev-libs/openssl:0 )
 	libressl? ( dev-libs/libressl )
 	table-sqlite? ( dev-db/sqlite:3 )
-	table-mysql? ( virtual/mysql )
+	table-mysql? ( dev-db/mysql-connector-c:0= )
 	table-postgres? ( dev-db/postgresql:* )
 	table-redis? ( dev-libs/hiredis )
 	table-python? ( dev-lang/python:2.7 )


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

end of thread, other threads:[~2019-02-13 14:54 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-13 14:54 [gentoo-commits] repo/gentoo:master commit in: mail-filter/opensmtpd-extras/ Brian Evans
  -- strict thread matches above, loose matches on Subject: below --
2016-10-15 14:59 Jason Donenfeld
2016-10-15 10:39 Jeroen Roovers
2016-10-12 12:10 Jason Donenfeld
2016-06-06 22:29 Jason Donenfeld
2016-06-06 18:16 Jason Donenfeld
2016-03-30 13:31 Jason Donenfeld
2015-10-11  0:18 Anthony G. Basile
2015-08-31 22:52 Manuel Rüger

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