public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aaron Swenson" <titanofold@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/postfixadmin/
Date: Fri, 16 Jun 2017 01:07:23 +0000 (UTC)	[thread overview]
Message-ID: <1497575103.ac0e6ffd4e7879e451a7c0cef896e45fda46c47d.titanofold@gentoo> (raw)

commit:     ac0e6ffd4e7879e451a7c0cef896e45fda46c47d
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 16 01:05:03 2017 +0000
Commit:     Aaron Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Fri Jun 16 01:05:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac0e6ffd

www-apps/postfixadmin: Version Bump

Version bump to fix security bug 608726.

Updated to EAPI 6. Added myself and Proxy Maintainers. All are welcome
to improve this ebuild through Proxy Maintainers, but I will,
ultimately, take care of it.

Bugs: 608726, 621236, 600542.

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 www-apps/postfixadmin/Manifest                  |   1 +
 www-apps/postfixadmin/metadata.xml              |   8 ++
 www-apps/postfixadmin/postfixadmin-3.0.2.ebuild | 100 ++++++++++++++++++++++++
 3 files changed, 109 insertions(+)

diff --git a/www-apps/postfixadmin/Manifest b/www-apps/postfixadmin/Manifest
index e0c44644be0..31cf5808030 100644
--- a/www-apps/postfixadmin/Manifest
+++ b/www-apps/postfixadmin/Manifest
@@ -1 +1,2 @@
 DIST postfixadmin-2.3.8.tar.gz 1600215 SHA256 8969b3312935c6e94ff17508f5b7e78b65828cd52d371adde3bfd9206597d94a SHA512 96cd4212109a9459344dc017a397b0d6abcb8653c7aae4f40f913e9a49581d7f74bd92500046f8758e195bd24e63a3b2373c461edc96c67fa1d01f91f4f489c6 WHIRLPOOL 4c98ad01a69708abf10970dd437f15945d02c0ccf8e3563051369f39be6b78eba0f7d7bd09b1784e73e65976b7454ae419571b77c0142477790e320710f3de21
+DIST postfixadmin-3.0.2.tar.gz 1306500 SHA256 9a4edb111258c90912aea66ad1dd684445b4f03f08f8549b9d708336ae019c8c SHA512 19db70cc59e8e41356e4cd632b0cb9df8d8de0f0451e7e2c84d61a0aa6ede5cc93bbf8914786a2eec012e4c013ad130a001d143ce869aa54b54a50fb798ed92b WHIRLPOOL 9ab719381dcd4d38f6cc85ba17e9124aed13b6124c1eea4bfbb3323c33046886e6191a4d90d11e4ef9596fce9f31eb07683fd09e2af3370ddd8f6d25379e167c

diff --git a/www-apps/postfixadmin/metadata.xml b/www-apps/postfixadmin/metadata.xml
index b8dbc4c9c58..024770a12b4 100644
--- a/www-apps/postfixadmin/metadata.xml
+++ b/www-apps/postfixadmin/metadata.xml
@@ -1,10 +1,18 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+	<maintainer type="person">
+		<email>titanofold@gentoo.org</email>
+		<name>Aaron W. Swenson</name>
+	</maintainer>
 	<maintainer type="project">
 		<email>web-apps@gentoo.org</email>
 		<name>Gentoo Webapps</name>
 	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<use>
 		<flag name="vacation">Install vacation.pl script and dependencies</flag>
 	</use>

diff --git a/www-apps/postfixadmin/postfixadmin-3.0.2.ebuild b/www-apps/postfixadmin/postfixadmin-3.0.2.ebuild
new file mode 100644
index 00000000000..9cef0cdd9d3
--- /dev/null
+++ b/www-apps/postfixadmin/postfixadmin-3.0.2.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit user webapp
+
+DESCRIPTION="Web Based Management tool for Postfix style virtual domains and users"
+HOMEPAGE="http://postfixadmin.sourceforge.net"
+SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${P}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+mysql postgres +vacation xmlrpc"
+REQUIRED_USE="|| ( mysql postgres )"
+
+DEPEND="
+	dev-lang/php:*[unicode,imap,postgres?,xmlrpc?]
+	vacation? (
+		dev-perl/DBI
+		virtual/perl-MIME-Base64
+		dev-perl/MIME-EncWords
+		dev-perl/Email-Valid
+		dev-perl/Mail-Sender
+		dev-perl/Log-Dispatch
+		dev-perl/Log-Log4perl
+		dev-perl/MIME-Charset
+		mysql? ( dev-perl/DBD-mysql )
+		postgres? ( dev-perl/DBD-Pg )
+	 )
+	xmlrpc? ( dev-php/ZendFramework[-minimal] )
+"
+
+RDEPEND="${DEPEND}
+	virtual/httpd-php
+	mysql? ( || ( dev-lang/php[mysqli] dev-lang/php[mysql] ) )"
+
+need_httpd_cgi
+
+pkg_setup() {
+	webapp_pkg_setup
+
+	if use vacation; then
+		enewgroup vacation
+		enewuser vacation -1 -1 -1 vacation
+	fi
+}
+
+src_install() {
+	webapp_src_preinst
+
+	if use vacation; then
+		insinto /var/spool/vacation
+		newins VIRTUAL_VACATION/vacation.pl vacation.pl-${SLOT}
+		fowners vacation:vacation /var/spool/vacation/vacation.pl-${SLOT}
+		fperms 770 /var/spool/vacation/vacation.pl-${SLOT}
+		dodoc VIRTUAL_VACATION/FILTER_README
+		newdoc VIRTUAL_VACATION/INSTALL.TXT VIRTUAL_VACATION_INSTALL.TXT
+		rm -r VIRTUAL_VACATION/{vacation.pl,INSTALL.TXT,tests,FILTER_README} || die
+	fi
+
+	insinto /usr/share/doc/${PF}/
+	doins -r ADDITIONS
+
+	local docs="DOCUMENTS/*.txt INSTALL.TXT CHANGELOG.TXT"
+	dodoc ${docs}
+
+	rm -rf ${docs} DOCUMENTS/ GPL-LICENSE.TXT LICENSE.TXT debian/ tests/ ADDITIONS/
+
+	insinto "${MY_HTDOCSDIR}"
+	doins -r .
+
+	webapp_configfile "${MY_HTDOCSDIR}"/config.inc.php
+
+	webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.3.txt
+	webapp_src_install
+}
+
+pkg_postinst() {
+	webapp_pkg_postinst
+	if use vacation; then
+		# portage does not update owners of directories (feature :)
+		chown vacation:vacation "${ROOT}"/var/spool/vacation/
+		einfo "/var/spool/vacation/vacation.pl symlink was updated to:"
+		einfo "/var/spool/vacation/vacation.pl-${SLOT}"
+		ln -sf "${ROOT}"/var/spool/vacation/vacation.pl{-${SLOT},} || die
+	fi
+}
+
+pkg_postrm() {
+	# Make sure we don't leave broken vacation.pl symlink
+	find -L "${ROOT}"/var/spool/vacation/ -type l -delete
+	if [[ ! -e "${ROOT}"/var/spool/vacation/vacation.pl ]] &&
+		path_exists "${ROOT}"/var/spool/vacation/vacation.pl-*; then
+		ln -s $(LC_ALL=C ls -1 /var/spool/vacation/vacation.pl-* | tail -n1) \
+			"${ROOT}"/var/spool/vacation/vacation.pl || die
+		ewarn "/var/spool/vacation/vacation.pl was updated to point on most"
+		ewarn "recent verion, but please, do your own checks"
+	fi
+}


             reply	other threads:[~2017-06-16  1:07 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-16  1:07 Aaron Swenson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-01-24  6:50 [gentoo-commits] repo/gentoo:master commit in: www-apps/postfixadmin/ Miroslav Šulc
2023-01-23 18:08 Sam James
2023-01-23 17:48 Sam James
2022-12-09  8:24 Miroslav Šulc
2022-12-05  8:12 Miroslav Šulc
2022-09-19  7:59 Miroslav Šulc
2022-09-19  6:40 Agostino Sarubbo
2022-09-18 12:36 Miroslav Šulc
2022-03-02 21:42 Miroslav Šulc
2021-08-16  5:20 Miroslav Šulc
2021-08-16  5:13 Agostino Sarubbo
2021-08-09  9:14 Miroslav Šulc
2021-07-29  2:58 Sam James
2021-07-18 18:42 Conrad Kostecki
2021-07-18 18:42 Conrad Kostecki
2021-06-13  6:39 Miroslav Šulc
2021-06-13  6:04 Sam James
2021-05-28 15:57 David Seifert
2021-05-13  8:10 Miroslav Šulc
2021-04-07 12:59 Miroslav Šulc
2021-04-07  6:23 Sam James
2021-03-28 14:29 Miroslav Šulc
2021-03-28 14:03 Sam James
2021-03-05  7:45 Miroslav Šulc
2021-02-18  8:11 Miroslav Šulc
2021-01-28 12:14 Miroslav Šulc
2021-01-20 18:18 Miroslav Šulc
2021-01-15  6:50 Miroslav Šulc
2021-01-14  8:41 Miroslav Šulc
2021-01-11  9:58 Miroslav Šulc
2021-01-11  8:21 Miroslav Šulc
2021-01-11  8:05 Sam James
2021-01-11  8:01 Sam James
2021-01-10 22:27 Sam James
2021-01-10 10:19 Miroslav Šulc
2020-04-17  9:10 Miroslav Šulc
2020-01-23 15:20 Miroslav Šulc
2020-01-23 12:18 Agostino Sarubbo
2020-01-23 10:59 Agostino Sarubbo
2020-01-08  9:19 Jeroen Roovers
2019-12-26 11:19 Miroslav Šulc
2019-12-26 11:19 Miroslav Šulc
2019-12-24  8:08 Agostino Sarubbo
2019-12-23 14:03 Agostino Sarubbo
2019-12-19 19:43 Miroslav Šulc
2019-02-26 19:24 Miroslav Šulc
2018-08-15  7:31 Michał Górny
2018-02-23 12:41 Aaron Swenson
2018-02-12 22:10 Thomas Deutschmann
2017-10-19 21:40 Jonas Stein
2017-08-19 17:52 Aaron Swenson
2015-10-13 14:34 Matt Thode
2015-10-13  7:24 Agostino Sarubbo
2015-10-13  7:23 Agostino Sarubbo
2015-10-12 22:32 Matt Thode
2015-10-12 22:25 Matt Thode

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1497575103.ac0e6ffd4e7879e451a7c0cef896e45fda46c47d.titanofold@gentoo \
    --to=titanofold@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox