* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-11 20:40 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson (robbat2) @ 2011-10-11 20:40 UTC (permalink / raw
To: gentoo-commits
robbat2 11/10/11 20:40:43
Modified: ChangeLog
Added: stunnel-4.44.ebuild
Log:
Bug #379859: version bump for security
(Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
Revision Changes Path
1.121 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.121&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.121&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.120&r2=1.121
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -p -w -b -B -u -u -r1.120 -r1.121
--- ChangeLog 28 May 2011 16:49:54 -0000 1.120
+++ ChangeLog 11 Oct 2011 20:40:43 -0000 1.121
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.120 2011/05/28 16:49:54 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.121 2011/10/11 20:40:43 robbat2 Exp $
+
+*stunnel-4.44 (11 Oct 2011)
+
+ 11 Oct 2011; Robin H. Johnson <robbat2@gentoo.org> +stunnel-4.44.ebuild:
+ Bug #379859: version bump for security
28 May 2011; Raúl Porcel <armin76@gentoo.org> stunnel-4.35.ebuild:
alpha/arm/ia64/sparc stable wrt #353955
1.1 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.1&content-type=text/plain
Index: stunnel-4.44.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.1 2011/10/11 20:40:43 robbat2 Exp $
EAPI="2"
inherit autotools ssl-cert eutils
DESCRIPTION="TLS/SSL - Port Wrapper"
HOMEPAGE="http://stunnel.mirt.net/"
SRC_URI="ftp://ftp.stunnel.org/stunnel/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="ipv6 selinux tcpd xforward listen-queue"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )
>=dev-libs/openssl-0.9.8k"
RDEPEND="${DEPEND}
selinux? ( sec-policy/selinux-stunnel )"
pkg_setup() {
enewgroup stunnel
enewuser stunnel -1 -1 -1 stunnel
}
src_prepare() {
use xforward && epatch "${FILESDIR}/stunnel-4.36-xforwarded-for.diff"
use listen-queue && epatch "${FILESDIR}/stunnel-4.36-listen-queue.diff"
eautoreconf
# Hack away generation of certificate
sed -i -e "s/^install-data-local:/do-not-run-this:/" \
tools/Makefile.in || die "sed failed"
}
src_configure() {
econf $(use_enable ipv6) \
$(use_enable tcpd libwrap) || die "econf died"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -rf "${D}"/usr/share/doc/${PN}
rm -f "${D}"/etc/stunnel/stunnel.conf-sample "${D}"/usr/bin/stunnel3 \
"${D}"/usr/share/man/man8/stunnel.{fr,pl}.8
# The binary was moved to /usr/bin with 4.21,
# symlink for backwards compatibility
dosym ../bin/stunnel /usr/sbin/stunnel
dodoc AUTHORS BUGS CREDITS PORTS README TODO ChangeLog
dohtml doc/stunnel.html doc/en/VNC_StunnelHOWTO.html tools/ca.html \
tools/importCA.html
insinto /etc/stunnel
doins "${FILESDIR}"/stunnel.conf
newinitd "${FILESDIR}"/stunnel.initd stunnel
keepdir /var/run/stunnel
fowners stunnel:stunnel /var/run/stunnel
}
pkg_postinst() {
if [ ! -f "${ROOT}"/etc/stunnel/stunnel.key ]; then
install_cert /etc/stunnel/stunnel
chown stunnel:stunnel "${ROOT}"/etc/stunnel/stunnel.{crt,csr,key,pem}
chmod 0640 "${ROOT}"/etc/stunnel/stunnel.{crt,csr,key,pem}
fi
einfo "If you want to run multiple instances of stunnel, create a new config"
einfo "file ending with .conf in /etc/stunnel/. **Make sure** you change "
einfo "\'pid= \' with a unique filename."
}
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-11 21:00 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson (robbat2) @ 2011-10-11 21:00 UTC (permalink / raw
To: gentoo-commits
robbat2 11/10/11 21:00:16
Modified: ChangeLog stunnel-4.44.ebuild
Log:
Respin x-forwarded-for and listen-queue patches.
(Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
Revision Changes Path
1.122 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.121&r2=1.122
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -p -w -b -B -u -u -r1.121 -r1.122
--- ChangeLog 11 Oct 2011 20:40:43 -0000 1.121
+++ ChangeLog 11 Oct 2011 21:00:16 -0000 1.122
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.121 2011/10/11 20:40:43 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.122 2011/10/11 21:00:16 robbat2 Exp $
+
+ 11 Oct 2011; Robin H. Johnson <robbat2@gentoo.org> stunnel-4.44.ebuild,
+ +files/stunnel-4.44-listen-queue.diff,
+ +files/stunnel-4.44-xforwarded-for.diff:
+ Respin x-forwarded-for and listen-queue patches.
*stunnel-4.44 (11 Oct 2011)
1.2 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?r1=1.1&r2=1.2
Index: stunnel-4.44.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- stunnel-4.44.ebuild 11 Oct 2011 20:40:43 -0000 1.1
+++ stunnel-4.44.ebuild 11 Oct 2011 21:00:16 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.1 2011/10/11 20:40:43 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.2 2011/10/11 21:00:16 robbat2 Exp $
EAPI="2"
@@ -26,8 +26,8 @@ pkg_setup() {
}
src_prepare() {
- use xforward && epatch "${FILESDIR}/stunnel-4.36-xforwarded-for.diff"
- use listen-queue && epatch "${FILESDIR}/stunnel-4.36-listen-queue.diff"
+ use xforward && epatch "${FILESDIR}/stunnel-4.44-xforwarded-for.diff"
+ use listen-queue && epatch "${FILESDIR}/stunnel-4.44-listen-queue.diff"
eautoreconf
# Hack away generation of certificate
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-22 7:22 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-22 7:22 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/10/22 07:22:04
Modified: ChangeLog stunnel-4.44.ebuild
Log:
x86 stable wrt bug #379859
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.123 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.122&r2=1.123
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog 11 Oct 2011 21:00:16 -0000 1.122
+++ ChangeLog 22 Oct 2011 07:22:04 -0000 1.123
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.122 2011/10/11 21:00:16 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.123 2011/10/22 07:22:04 phajdan.jr Exp $
+
+ 22 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> stunnel-4.44.ebuild:
+ x86 stable wrt bug #379859
11 Oct 2011; Robin H. Johnson <robbat2@gentoo.org> stunnel-4.44.ebuild,
+files/stunnel-4.44-listen-queue.diff,
1.3 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?r1=1.2&r2=1.3
Index: stunnel-4.44.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- stunnel-4.44.ebuild 11 Oct 2011 21:00:16 -0000 1.2
+++ stunnel-4.44.ebuild 22 Oct 2011 07:22:04 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.2 2011/10/11 21:00:16 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.3 2011/10/22 07:22:04 phajdan.jr Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86"
IUSE="ipv6 selinux tcpd xforward listen-queue"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-22 8:56 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-22 8:56 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/10/22 08:56:36
Modified: ChangeLog stunnel-4.44.ebuild
Log:
ppc/ppc64 stable wrt #379859
(Portage version: 2.2.0_alpha69/cvs/Linux x86_64)
Revision Changes Path
1.124 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.123&r2=1.124
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog 22 Oct 2011 07:22:04 -0000 1.123
+++ ChangeLog 22 Oct 2011 08:56:36 -0000 1.124
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.123 2011/10/22 07:22:04 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.124 2011/10/22 08:56:36 xarthisius Exp $
+
+ 22 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> stunnel-4.44.ebuild:
+ ppc/ppc64 stable wrt #379859
22 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> stunnel-4.44.ebuild:
x86 stable wrt bug #379859
1.4 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?r1=1.3&r2=1.4
Index: stunnel-4.44.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- stunnel-4.44.ebuild 22 Oct 2011 07:22:04 -0000 1.3
+++ stunnel-4.44.ebuild 22 Oct 2011 08:56:36 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.3 2011/10/22 07:22:04 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.4 2011/10/22 08:56:36 xarthisius Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86"
IUSE="ipv6 selinux tcpd xforward listen-queue"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-23 11:39 Markus Meier (maekke)
0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-10-23 11:39 UTC (permalink / raw
To: gentoo-commits
maekke 11/10/23 11:39:35
Modified: ChangeLog stunnel-4.44.ebuild
Log:
arm stable, bug #379859
(Portage version: 2.1.10.30/cvs/Linux x86_64)
Revision Changes Path
1.126 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.126&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.126&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.125&r2=1.126
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog 22 Oct 2011 18:59:28 -0000 1.125
+++ ChangeLog 23 Oct 2011 11:39:35 -0000 1.126
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.125 2011/10/22 18:59:28 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.126 2011/10/23 11:39:35 maekke Exp $
+
+ 23 Oct 2011; Markus Meier <maekke@gentoo.org> stunnel-4.44.ebuild:
+ arm stable, bug #379859
22 Oct 2011; Markos Chandras <hwoarang@gentoo.org> stunnel-4.44.ebuild:
Stable on amd64 wrt bug #379859
1.6 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?r1=1.5&r2=1.6
Index: stunnel-4.44.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- stunnel-4.44.ebuild 22 Oct 2011 18:59:28 -0000 1.5
+++ stunnel-4.44.ebuild 23 Oct 2011 11:39:35 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.5 2011/10/22 18:59:28 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.6 2011/10/23 11:39:35 maekke Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86"
IUSE="ipv6 selinux tcpd xforward listen-queue"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-24 11:17 Jeroen Roovers (jer)
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-24 11:17 UTC (permalink / raw
To: gentoo-commits
jer 11/10/24 11:17:19
Modified: ChangeLog stunnel-4.44.ebuild
Log:
Stable for HPPA (bug #379859).
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Revision Changes Path
1.127 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.126&r2=1.127
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog 23 Oct 2011 11:39:35 -0000 1.126
+++ ChangeLog 24 Oct 2011 11:17:19 -0000 1.127
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.126 2011/10/23 11:39:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.127 2011/10/24 11:17:19 jer Exp $
+
+ 24 Oct 2011; Jeroen Roovers <jer@gentoo.org> stunnel-4.44.ebuild:
+ Stable for HPPA (bug #379859).
23 Oct 2011; Markus Meier <maekke@gentoo.org> stunnel-4.44.ebuild:
arm stable, bug #379859
1.7 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?r1=1.6&r2=1.7
Index: stunnel-4.44.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- stunnel-4.44.ebuild 23 Oct 2011 11:39:35 -0000 1.6
+++ stunnel-4.44.ebuild 24 Oct 2011 11:17:19 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.6 2011/10/23 11:39:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.7 2011/10/24 11:17:19 jer Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sparc x86"
IUSE="ipv6 selinux tcpd xforward listen-queue"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild
@ 2011-10-29 18:55 Raul Porcel (armin76)
0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2011-10-29 18:55 UTC (permalink / raw
To: gentoo-commits
armin76 11/10/29 18:55:27
Modified: ChangeLog stunnel-4.44.ebuild
Log:
alpha/ia64/s390/sparc stable wrt #379859
(Portage version: 2.1.10.11/cvs/Linux ia64)
Revision Changes Path
1.128 net-misc/stunnel/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.127&r2=1.128
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog 24 Oct 2011 11:17:19 -0000 1.127
+++ ChangeLog 29 Oct 2011 18:55:27 -0000 1.128
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/stunnel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.127 2011/10/24 11:17:19 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.128 2011/10/29 18:55:27 armin76 Exp $
+
+ 29 Oct 2011; Raúl Porcel <armin76@gentoo.org> stunnel-4.44.ebuild:
+ alpha/ia64/s390/sparc stable wrt #379859
24 Oct 2011; Jeroen Roovers <jer@gentoo.org> stunnel-4.44.ebuild:
Stable for HPPA (bug #379859).
1.8 net-misc/stunnel/stunnel-4.44.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild?r1=1.7&r2=1.8
Index: stunnel-4.44.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- stunnel-4.44.ebuild 24 Oct 2011 11:17:19 -0000 1.7
+++ stunnel-4.44.ebuild 29 Oct 2011 18:55:27 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.7 2011/10/24 11:17:19 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.44.ebuild,v 1.8 2011/10/29 18:55:27 armin76 Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sparc x86"
IUSE="ipv6 selinux tcpd xforward listen-queue"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-10-29 18:55 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-24 11:17 [gentoo-commits] gentoo-x86 commit in net-misc/stunnel: ChangeLog stunnel-4.44.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2011-10-29 18:55 Raul Porcel (armin76)
2011-10-23 11:39 Markus Meier (maekke)
2011-10-22 8:56 Kacper Kowalik (xarthisius)
2011-10-22 7:22 PaweA Hajdan (phajdan.jr)
2011-10-11 21:00 Robin H. Johnson (robbat2)
2011-10-11 20:40 Robin H. Johnson (robbat2)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox