From: "Marc Schiffbauer" <mschiff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/postfwd/
Date: Mon, 8 Jul 2019 11:51:22 +0000 (UTC) [thread overview]
Message-ID: <1562586676.4644dff2a2e013c2af3c4b7b83cd34dddb99ffcc.mschiff@gentoo> (raw)
commit: 4644dff2a2e013c2af3c4b7b83cd34dddb99ffcc
Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 8 11:43:33 2019 +0000
Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
CommitDate: Mon Jul 8 11:51:16 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4644dff2
mail-filter/postfwd: added v2.02, remove v2.00
Signed-off-by: Marc Schiffbauer <mschiff <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
mail-filter/postfwd/Manifest | 1 +
.../{postfwd-2.00.ebuild => postfwd-2.02.ebuild} | 54 +++++++++-------------
2 files changed, 23 insertions(+), 32 deletions(-)
diff --git a/mail-filter/postfwd/Manifest b/mail-filter/postfwd/Manifest
index 28c0ed381da..7290afea910 100644
--- a/mail-filter/postfwd/Manifest
+++ b/mail-filter/postfwd/Manifest
@@ -1,2 +1,3 @@
DIST postfwd-1.35.tar.gz 354609 BLAKE2B 8e85db37d7f81be4613d9c2e411760af48650125af7b22439e3b47a8c3c7285564bfcd7a9fe4eed35d2603ddf80dcdf11d75f84afcaf3e57d53c4e986068f06c SHA512 7b0e8c8a755f085c108c45b28ec8c32139581ce129d0b8586f1876ae87f134a4fb1606d45105ccfa62351ca2d3b87f001ea52aacab0680f3345c41562bec5207
DIST postfwd-2.00.tar.gz 265346 BLAKE2B ec67bffb5f6959e9516965516688e72f337f717a3159a094dc0373331a5fc09a451f664643a7f3e739b28d4137c130acfb39129b8557b4d41f4d445679f52623 SHA512 b9994b7dd96f1460d66ef35f173c5a4a4d72beb5b955092349304eae2672182874f07236fe5512ba3d0ecc68e2f0472e76b3667ded011536b0cf6f2d874bb039
+DIST postfwd-2.02.tar.gz 265781 BLAKE2B de63bdab4f7c1b117a16ebed2248f1e89b7c973bb34cee1b3fbbceda8c9d9b92d180fb5de8a332732b69a05d1b157be1c95d81ded003641d78665064a4881432 SHA512 23b48ca7218fba46f4b1887c4c6724112866c2e22e56f749602ba74430c4cf4c8418b9effb400ea4a468a5f137c764cac9611879e37d1585cf6d0b31dd41060f
diff --git a/mail-filter/postfwd/postfwd-2.00.ebuild b/mail-filter/postfwd/postfwd-2.02.ebuild
similarity index 63%
rename from mail-filter/postfwd/postfwd-2.00.ebuild
rename to mail-filter/postfwd/postfwd-2.02.ebuild
index f4ce5c30fd1..df52b4a6f05 100644
--- a/mail-filter/postfwd/postfwd-2.00.ebuild
+++ b/mail-filter/postfwd/postfwd-2.02.ebuild
@@ -1,18 +1,17 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-inherit eutils user systemd
+inherit systemd user
DESCRIPTION="Versatile Postfix policy server with a flexible ruleset based configuration"
-HOMEPAGE="http://www.postfwd.org/"
-SRC_URI="http://www.postfwd.org/${P}.tar.gz"
+HOMEPAGE="https://www.postfwd.org/"
+SRC_URI="https://www.postfwd.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="+tools"
DEPEND=""
RDEPEND=">=dev-lang/perl-5.16.3
@@ -35,27 +34,21 @@ pkg_setup() {
src_install() {
local BIN="postfwd3"
- # programs and tools
- dosbin "${S}"/sbin/${BIN}
+ # program
+ dosbin sbin/${BIN}
# man pages and documentation
- doman "${S}"/man/man8/${BIN}.8
- dodoc "${S}"/doc/{${BIN}.CHANGELOG,${BIN}.txt}
+ doman man/man8/${BIN}.8
+ dodoc doc/{${BIN}.CHANGELOG,${BIN}.txt}
- # example configuration(s)
- insinto /usr/share/doc/${PF}/examples
- newins "${S}"/etc/${PN}.cf.sample ${PN}.cf.dist
+ # example configuration
+ dodoc etc/${PN}.cf.sample
- # plugins
- dodoc -r "${S}"/plugins
-
- # tools
- if use tools; then
- dodoc -r "${S}"/tools
- fi
+ # plugins and tools
+ dodoc -r plugins tools
# start scripts script and respective configuration file
- newinitd "${FILESDIR}"/${PN}.init.3 ${PN}
+ newinitd "${FILESDIR}"/${PN}.init.3-r1 ${PN}
newconfd "${FILESDIR}"/${PN}.conf.3 ${PN}
systemd_newunit "${FILESDIR}"/${PN}.service.3 ${PN}.service
}
@@ -65,33 +58,30 @@ pkg_postinst() {
einfo "${PN} has no default configuration for safety reasons. Every"
einfo "mail system is different, so you should craft a set of rules"
einfo "that is suitable for your environment and save it to:"
- einfo " /etc/postfwd.cf"
- einfo "You can find example configurations in:"
- einfo " /usr/share/doc/${PF}/examples"
+ einfo " ${EROOT}/etc/postfwd.cf"
+ einfo "You can find a sample configuration in:"
+ einfo " ${EROOT}/usr/share/doc/${PF}"
einfo
einfo "If you want ${PN} to start on system boot, you have to add it your"
einfo "default run level if using OpenRC:"
einfo " # rc-update add postfwd default"
- einfo "Also remember to edit /etc/conf.d/${PN} to your liking."A
+ einfo "Also remember to edit ${EROOT}/etc/conf.d/${PN} to your liking."
einfo
einfo "Or - if you are using systemd - enable the service:"
einfo " # systemctl enable postfwd"
einfo
einfo "A plugins sample folder has been placed under:"
einfo
- einfo " /usr/share/doc/${PF}/plugins"
-
- if use tools; then
- einfo
- einfo "You can find additional tools for testing ${PN} in:"
- einfo " /usr/share/doc/${PF}/tools"
- fi
+ einfo " ${EROOT}/usr/share/doc/${PF}/plugins"
+ einfo
+ einfo "You can find additional tools for testing ${PN} in:"
+ einfo " ${EROOT}/usr/share/doc/${PF}/tools"
ewarn
ewarn "Please read the documentation carefully and properly test new"
ewarn "rulesets before putting them into production use. Otherwise you"
ewarn "risk accidental mail loss or worse."
ewarn
- ewarn "Visit http://www.postfwd.org/ for more information."
+ ewarn "Visit https://www.postfwd.org/ for more information."
ewarn
}
next reply other threads:[~2019-07-08 11:51 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-08 11:51 Marc Schiffbauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-02-10 20:12 [gentoo-commits] repo/gentoo:master commit in: mail-filter/postfwd/ Jonas Stein
2021-07-11 20:12 Conrad Kostecki
2021-07-11 19:07 Conrad Kostecki
2021-03-20 8:48 Joonas Niilola
2017-11-26 23:02 David Seifert
2016-12-18 21:49 Göktürk Yüksek
2016-03-09 20:48 Andreas Hüttel
2015-10-03 12:25 Pacho Ramos
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=1562586676.4644dff2a2e013c2af3c4b7b83cd34dddb99ffcc.mschiff@gentoo \
--to=mschiff@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