* [gentoo-commits] gentoo-x86 commit in mail-mta/nullmailer: nullmailer-1.11-r1.ebuild ChangeLog
@ 2013-01-08 11:37 Eray Aslan (eras)
0 siblings, 0 replies; 4+ messages in thread
From: Eray Aslan (eras) @ 2013-01-08 11:37 UTC (permalink / raw
To: gentoo-commits
eras 13/01/08 11:37:08
Modified: ChangeLog
Added: nullmailer-1.11-r1.ebuild
Log:
Documentation and init script update
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Revision Changes Path
1.60 mail-mta/nullmailer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?r1=1.59&r2=1.60
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog 6 Dec 2012 11:27:28 -0000 1.59
+++ ChangeLog 8 Jan 2013 11:37:08 -0000 1.60
@@ -1,6 +1,12 @@
# ChangeLog for mail-mta/nullmailer
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.59 2012/12/06 11:27:28 eras Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.60 2013/01/08 11:37:08 eras Exp $
+
+*nullmailer-1.11-r1 (08 Jan 2013)
+
+ 08 Jan 2013; Eray Aslan <eras@gentoo.org> +files/init.d-nullmailer-r2,
+ +files/remotes.sample-1.11, +nullmailer-1.11-r1.ebuild:
+ Documentation and init script update
06 Dec 2012; Eray Aslan <eras@gentoo.org> -files/init.d-nullmailer,
-files/nullmailer-1.10-fix-sendmail.patch, -nullmailer-1.05.ebuild,
1.1 mail-mta/nullmailer/nullmailer-1.11-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.1&content-type=text/plain
Index: nullmailer-1.11-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.1 2013/01/08 11:37:07 eras Exp $
EAPI=4
WANT_AUTOMAKE="1.10.3"
inherit eutils flag-o-matic autotools user multilib
MY_P="${P/_rc/RC}"
S=${WORKDIR}/${MY_P}
DEBIAN_PV=1.11
DEBIAN_PR="1"
DEBIAN_P="${PN}-${DEBIAN_PV}"
DEBIAN_PF="${DEBIAN_P/-/_}-${DEBIAN_PR}"
DEBIAN_SRC="${DEBIAN_PF}.debian.tar.gz"
DESCRIPTION="Simple relay-only local mail transport agent"
SRC_URI="http://untroubled.org/${PN}/archive/${MY_P}.tar.gz
mirror://debian/pool/main/n/${PN}/${DEBIAN_SRC}"
HOMEPAGE="http://untroubled.org/nullmailer/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ssl"
DEPEND="sys-apps/groff
ssl? ( net-libs/gnutls )"
RDEPEND="virtual/shadow
virtual/logger
ssl? ( net-libs/gnutls )
!mail-mta/courier
!mail-mta/esmtp
!mail-mta/exim
!mail-mta/mini-qmail
!mail-mta/msmtp
!mail-mta/netqmail
!mail-mta/postfix
!mail-mta/qmail-ldap
!mail-mta/sendmail
!mail-mta/ssmtp"
src_prepare() {
sed -i -e 's/nullmailer-1.10/nullmailer-1.11/g' \
"${WORKDIR}"/debian/patches/*.diff || die
EPATCH_OPTS="-d ${S} -p1" \
epatch "${DISTDIR}"/${DEBIAN_SRC}
# why revert? Ask Robin when he is back!
EPATCH_OPTS="-d ${WORKDIR} -p0 -R" \
epatch "${WORKDIR}"/debian/patches/02_ipv6.diff
# this fixes the debian daemon/syslog to actually compile
sed -i.orig \
-e '/^nullmailer_send_LDADD/s, =, = ../lib/cli++/libcli++.a,' \
"${S}"/src/Makefile.am || die "Sed failed"
eautoreconf
}
pkg_setup() {
enewgroup nullmail 88
enewuser nullmail 88 -1 /var/nullmailer nullmail
}
src_configure() {
# Note that we pass a different directory below due to bugs in the makefile!
econf \
--localstatedir=/var \
$(use_enable ssl tls)
}
src_install () {
einstall localstatedir="${D}"/var/nullmailer
dodoc AUTHORS BUGS HOWTO INSTALL ChangeLog NEWS README TODO
# A small bit of sample config
insinto /etc/nullmailer
newins "${FILESDIR}"/remotes.sample-1.11 remotes
# daemontools stuff
dodir /var/nullmailer/service{,/log}
insinto /var/nullmailer/service
newins scripts/nullmailer.run run
fperms 700 /var/nullmailer/service/run
insinto /var/nullmailer/service/log
newins scripts/nullmailer-log.run run
fperms 700 /var/nullmailer/service/log/run
# usability
dodir /usr/$(get_libdir)
dosym /usr/sbin/sendmail usr/$(get_libdir)/sendmail
# permissions stuff
keepdir /var/log/nullmailer /var/nullmailer/{tmp,queue}
fperms 770 /var/log/nullmailer /var/nullmailer/{tmp,queue}
fowners nullmail:nullmail /usr/sbin/nullmailer-queue /usr/bin/mailq
fperms 4711 /usr/sbin/nullmailer-queue /usr/bin/mailq
fowners nullmail:nullmail /var/log/nullmailer /var/nullmailer/{tmp,queue,trigger}
fperms 660 /var/nullmailer/trigger
newinitd "${FILESDIR}"/init.d-nullmailer-r2 nullmailer
}
pkg_postinst() {
[ ! -e "${ROOT}"/var/nullmailer/trigger ] && mkfifo "${ROOT}"/var/nullmailer/trigger
chown nullmail:nullmail "${ROOT}"/var/log/nullmailer "${ROOT}"/var/nullmailer/{tmp,queue,trigger}
chmod 770 "${ROOT}"/var/log/nullmailer "${ROOT}"/var/nullmailer/{tmp,queue}
chmod 660 "${ROOT}"/var/nullmailer/trigger
if [[ -z ${REPLACING_VERSIONS} ]]; then
elog "To create an initial setup, please do:"
elog "emerge --config =${CATEGORY}/${PF}"
fi
#echo
#elog "To start nullmailer at boot you may use either the nullmailer init.d"
#elog "script, or emerge sys-process/supervise-scripts, enable the"
#elog "svscan init.d script and create the following link:"
#elog "ln -fs /var/nullmailer/service /service/nullmailer"
#echo
}
pkg_config() {
if [ ! -s "${ROOT}"/etc/nullmailer/me ]; then
einfo "Setting /etc/nullmailer/me"
/bin/hostname --fqdn > "${ROOT}"/etc/nullmailer/me
fi
if [ ! -s "${ROOT}"/etc/nullmailer/defaultdomain ]; then
einfo "Setting /etc/nullmailer/defaultdomain"
/bin/hostname --domain > "${ROOT}"/etc/nullmailer/defaultdomain
fi
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/nullmailer: nullmailer-1.11-r1.ebuild ChangeLog
@ 2013-01-22 17:20 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-22 17:20 UTC (permalink / raw
To: gentoo-commits
ago 13/01/22 17:20:52
Modified: nullmailer-1.11-r1.ebuild ChangeLog
Log:
Stable for x86, wrt bug #450820
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.2 mail-mta/nullmailer/nullmailer-1.11-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?r1=1.1&r2=1.2
Index: nullmailer-1.11-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nullmailer-1.11-r1.ebuild 8 Jan 2013 11:37:07 -0000 1.1
+++ nullmailer-1.11-r1.ebuild 22 Jan 2013 17:20:52 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.1 2013/01/08 11:37:07 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.2 2013/01/22 17:20:52 ago Exp $
EAPI=4
WANT_AUTOMAKE="1.10.3"
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
IUSE="ssl"
1.62 mail-mta/nullmailer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?r1=1.61&r2=1.62
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog 8 Jan 2013 12:44:00 -0000 1.61
+++ ChangeLog 22 Jan 2013 17:20:52 -0000 1.62
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/nullmailer
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.61 2013/01/08 12:44:00 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.62 2013/01/22 17:20:52 ago Exp $
+
+ 22 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nullmailer-1.11-r1.ebuild:
+ Stable for x86, wrt bug #450820
08 Jan 2013; Eray Aslan <eras@gentoo.org> files/init.d-nullmailer-r2:
Do not provide mta
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/nullmailer: nullmailer-1.11-r1.ebuild ChangeLog
@ 2013-01-22 17:44 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-22 17:44 UTC (permalink / raw
To: gentoo-commits
ago 13/01/22 17:44:23
Modified: nullmailer-1.11-r1.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #450820
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.3 mail-mta/nullmailer/nullmailer-1.11-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?r1=1.2&r2=1.3
Index: nullmailer-1.11-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nullmailer-1.11-r1.ebuild 22 Jan 2013 17:20:52 -0000 1.2
+++ nullmailer-1.11-r1.ebuild 22 Jan 2013 17:44:23 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.2 2013/01/22 17:20:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.3 2013/01/22 17:44:23 ago Exp $
EAPI=4
WANT_AUTOMAKE="1.10.3"
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="ssl"
1.63 mail-mta/nullmailer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?r1=1.62&r2=1.63
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog 22 Jan 2013 17:20:52 -0000 1.62
+++ ChangeLog 22 Jan 2013 17:44:23 -0000 1.63
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/nullmailer
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.62 2013/01/22 17:20:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.63 2013/01/22 17:44:23 ago Exp $
+
+ 22 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nullmailer-1.11-r1.ebuild:
+ Stable for amd64, wrt bug #450820
22 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nullmailer-1.11-r1.ebuild:
Stable for x86, wrt bug #450820
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in mail-mta/nullmailer: nullmailer-1.11-r1.ebuild ChangeLog
@ 2013-01-26 11:58 Agostino Sarubbo (ago)
0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-26 11:58 UTC (permalink / raw
To: gentoo-commits
ago 13/01/26 11:58:07
Modified: nullmailer-1.11-r1.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #450820
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.4 mail-mta/nullmailer/nullmailer-1.11-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild?r1=1.3&r2=1.4
Index: nullmailer-1.11-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nullmailer-1.11-r1.ebuild 22 Jan 2013 17:44:23 -0000 1.3
+++ nullmailer-1.11-r1.ebuild 26 Jan 2013 11:58:07 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.3 2013/01/22 17:44:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/nullmailer-1.11-r1.ebuild,v 1.4 2013/01/26 11:58:07 ago Exp $
EAPI=4
WANT_AUTOMAKE="1.10.3"
@@ -20,7 +20,7 @@
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
IUSE="ssl"
1.64 mail-mta/nullmailer/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/nullmailer/ChangeLog?r1=1.63&r2=1.64
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog 22 Jan 2013 17:44:23 -0000 1.63
+++ ChangeLog 26 Jan 2013 11:58:07 -0000 1.64
@@ -1,6 +1,9 @@
# ChangeLog for mail-mta/nullmailer
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.63 2013/01/22 17:44:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nullmailer/ChangeLog,v 1.64 2013/01/26 11:58:07 ago Exp $
+
+ 26 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nullmailer-1.11-r1.ebuild:
+ Stable for ppc, wrt bug #450820
22 Jan 2013; Agostino Sarubbo <ago@gentoo.org> nullmailer-1.11-r1.ebuild:
Stable for amd64, wrt bug #450820
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-26 11:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-22 17:20 [gentoo-commits] gentoo-x86 commit in mail-mta/nullmailer: nullmailer-1.11-r1.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-01-26 11:58 Agostino Sarubbo (ago)
2013-01-22 17:44 Agostino Sarubbo (ago)
2013-01-08 11:37 Eray Aslan (eras)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox