* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-02-05 10:42 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 12+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2013-02-05 10:42 UTC (permalink / raw
To: gentoo-commits
alonbl 13/02/05 10:42:02
Modified: ChangeLog
Added: gnutls-2.12.23.ebuild
Log:
Version bump, bug#455560, solves GNUTLS-SA-2013-1
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.405 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.405&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.405&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.404&r2=1.405
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.404
retrieving revision 1.405
diff -u -r1.404 -r1.405
--- ChangeLog 4 Feb 2013 15:32:14 -0000 1.404
+++ ChangeLog 5 Feb 2013 10:42:02 -0000 1.405
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.404 2013/02/04 15:32:14 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.405 2013/02/05 10:42:02 alonbl Exp $
+
+*gnutls-2.12.23 (05 Feb 2013)
+
+ 05 Feb 2013; Alon Bar-Lev <alonbl@gentoo.org> +gnutls-2.12.23.ebuild:
+ Version bump, bug#455560, solves GNUTLS-SA-2013-1
*gnutls-3.1.7 (04 Feb 2013)
1.1 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.1&content-type=text/plain
Index: gnutls-2.12.23.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.1 2013/02/05 10:42:02 alonbl Exp $
EAPI=4
inherit autotools libtool eutils versionator
DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project"
HOMEPAGE="http://www.gnutls.org/"
if [[ "${PV}" == *pre* ]]; then
SRC_URI="http://daily.josefsson.org/${P%.*}/${P%.*}-${PV#*pre}.tar.gz"
else
SRC_URI="ftp://ftp.gnutls.org/gcrypt/gnutls/v$(get_version_component_range 1-2)/${P}.tar.bz2"
fi
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
<dev-libs/libtasn1-3
guile? ( >=dev-scheme/guile-1.8[networking] )
nettle? ( >=dev-libs/nettle-2.1[gmp] )
!nettle? ( >=dev-libs/libgcrypt-1.4.0 )
nls? ( virtual/libintl )
pkcs11? ( >=app-crypt/p11-kit-0.11 )
zlib? ( >=sys-libs/zlib-1.2.3.1 )
!bindist? ( lzo? ( >=dev-libs/lzo-2 ) )"
DEPEND="${RDEPEND}
virtual/pkgconfig
sys-devel/libtool
doc? ( dev-util/gtk-doc )
nls? ( sys-devel/gettext )
test? ( app-misc/datefudge )"
S="${WORKDIR}/${P%_pre*}"
DOCS=( AUTHORS ChangeLog NEWS README THANKS doc/TODO )
pkg_setup() {
if use lzo && use bindist; then
ewarn "lzo support is disabled for binary distribution of GnuTLS due to licensing issues."
fi
}
src_prepare() {
# tests/suite directory is not distributed.
sed -i -e 's|AC_CONFIG_FILES(\[tests/suite/Makefile\])|:|' \
configure.ac || die
sed -i -e 's/imagesdir = $(infodir)/imagesdir = $(htmldir)/' \
doc/Makefile.am || die
local dir
for dir in m4 lib/m4 libextra/m4; do
rm -f "${dir}/lt"* "${dir}/libtool.m4"
done
find . -name ltmain.sh -exec rm {} \;
epatch "${FILESDIR}"/${PN}-2.12.20-AF_UNIX.patch
epatch "${FILESDIR}"/${PN}-2.12.20-libadd.patch
epatch "${FILESDIR}"/${PN}-2.12.20-guile-parallelmake.patch
# support user patches
epatch_user
for dir in . lib libextra; do
pushd "${dir}" > /dev/null
sed -i -e '/^AM_INIT_AUTOMAKE/s/-Werror//' configure.ac || die
eautoreconf
popd > /dev/null
done
# Use sane .so versioning on FreeBSD.
elibtoolize
}
src_configure() {
local myconf
use bindist && myconf="--without-lzo" || myconf="$(use_with lzo)"
[[ "${VALGRIND_TESTS}" != "1" ]] && myconf+=" --disable-valgrind-tests"
econf \
--htmldir="${EPREFIX}"/usr/share/doc/${P}/html \
--disable-silent-rules \
$(use_enable cxx) \
$(use_enable doc gtk-doc) \
$(use_enable doc gtk-doc-pdf) \
$(use_enable guile) \
$(use_with !nettle libgcrypt) \
$(use_enable nls) \
$(use_with pkcs11 p11-kit) \
$(use_enable static-libs static) \
$(use_with zlib) \
${myconf}
}
src_test() {
if has_version dev-util/valgrind && [[ ${VALGRIND_TESTS} != 1 ]]; then
elog
elog "You can set VALGRIND_TESTS=\"1\" to enable Valgrind tests."
elog
fi
default
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
if use doc; then
dodoc doc/gnutls.{pdf,ps}
dohtml doc/gnutls.html
fi
if use examples; then
docinto examples
dodoc doc/examples/*.c
fi
}
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-04 9:11 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-04 9:11 UTC (permalink / raw
To: gentoo-commits
ago 13/03/04 09:11:15
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.2 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.1&r2=1.2
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnutls-2.12.23.ebuild 5 Feb 2013 10:42:02 -0000 1.1
+++ gnutls-2.12.23.ebuild 4 Mar 2013 09:11:15 -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.1 2013/02/05 10:42:02 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.2 2013/03/04 09:11:15 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.413 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.413&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.413&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.412&r2=1.413
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.412
retrieving revision 1.413
diff -u -r1.412 -r1.413
--- ChangeLog 28 Feb 2013 07:34:08 -0000 1.412
+++ ChangeLog 4 Mar 2013 09:11:15 -0000 1.413
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.412 2013/02/28 07:34:08 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.413 2013/03/04 09:11:15 ago Exp $
+
+ 04 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for amd64, wrt bug #455560
*gnutls-3.1.9-r1 (28 Feb 2013)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-04 9:20 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-04 9:20 UTC (permalink / raw
To: gentoo-commits
ago 13/03/04 09:20:45
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for x86, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.2&r2=1.3
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnutls-2.12.23.ebuild 4 Mar 2013 09:11:15 -0000 1.2
+++ gnutls-2.12.23.ebuild 4 Mar 2013 09:20:45 -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.2 2013/03/04 09:11:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.3 2013/03/04 09:20:45 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.414 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.414&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.414&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.413&r2=1.414
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.413
retrieving revision 1.414
diff -u -r1.413 -r1.414
--- ChangeLog 4 Mar 2013 09:11:15 -0000 1.413
+++ ChangeLog 4 Mar 2013 09:20:45 -0000 1.414
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.413 2013/03/04 09:11:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.414 2013/03/04 09:20:45 ago Exp $
+
+ 04 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for x86, wrt bug #455560
04 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for amd64, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-04 15:36 Jeroen Roovers (jer)
0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2013-03-04 15:36 UTC (permalink / raw
To: gentoo-commits
jer 13/03/04 15:36:45
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for HPPA (bug #455560).
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.4 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.3&r2=1.4
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnutls-2.12.23.ebuild 4 Mar 2013 09:20:45 -0000 1.3
+++ gnutls-2.12.23.ebuild 4 Mar 2013 15:36:45 -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.3 2013/03/04 09:20:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.4 2013/03/04 15:36:45 jer Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.415 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.415&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.415&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.414&r2=1.415
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.414
retrieving revision 1.415
diff -u -r1.414 -r1.415
--- ChangeLog 4 Mar 2013 09:20:45 -0000 1.414
+++ ChangeLog 4 Mar 2013 15:36:45 -0000 1.415
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.414 2013/03/04 09:20:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.415 2013/03/04 15:36:45 jer Exp $
+
+ 04 Mar 2013; Jeroen Roovers <jer@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for HPPA (bug #455560).
04 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for x86, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-04 18:16 Brent Baude (ranger)
0 siblings, 0 replies; 12+ messages in thread
From: Brent Baude (ranger) @ 2013-03-04 18:16 UTC (permalink / raw
To: gentoo-commits
ranger 13/03/04 18:16:00
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Marking gnutls-2.12.23 ppc for bug 455560
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.5 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.4&r2=1.5
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnutls-2.12.23.ebuild 4 Mar 2013 15:36:45 -0000 1.4
+++ gnutls-2.12.23.ebuild 4 Mar 2013 18:16:00 -0000 1.5
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.4 2013/03/04 15:36:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.5 2013/03/04 18:16:00 ranger Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.416 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.416&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.416&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.415&r2=1.416
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.415
retrieving revision 1.416
diff -u -r1.415 -r1.416
--- ChangeLog 4 Mar 2013 15:36:45 -0000 1.415
+++ ChangeLog 4 Mar 2013 18:16:00 -0000 1.416
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.415 2013/03/04 15:36:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.416 2013/03/04 18:16:00 ranger Exp $
+
+ 04 Mar 2013; Brent Baude <ranger@gentoo.org> gnutls-2.12.23.ebuild:
+ Marking gnutls-2.12.23 ppc for bug 455560
04 Mar 2013; Jeroen Roovers <jer@gentoo.org> gnutls-2.12.23.ebuild:
Stable for HPPA (bug #455560).
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-06 10:23 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-06 10:23 UTC (permalink / raw
To: gentoo-commits
ago 13/03/06 10:23:00
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for sh, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.5&r2=1.6
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnutls-2.12.23.ebuild 4 Mar 2013 18:16:00 -0000 1.5
+++ gnutls-2.12.23.ebuild 6 Mar 2013 10:23:00 -0000 1.6
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.5 2013/03/04 18:16:00 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.6 2013/03/06 10:23:00 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.417 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.417&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.417&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.416&r2=1.417
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.416
retrieving revision 1.417
diff -u -r1.416 -r1.417
--- ChangeLog 4 Mar 2013 18:16:00 -0000 1.416
+++ ChangeLog 6 Mar 2013 10:23:00 -0000 1.417
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.416 2013/03/04 18:16:00 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.417 2013/03/06 10:23:00 ago Exp $
+
+ 06 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for sh, wrt bug #455560
04 Mar 2013; Brent Baude <ranger@gentoo.org> gnutls-2.12.23.ebuild:
Marking gnutls-2.12.23 ppc for bug 455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-08 17:45 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-08 17:45 UTC (permalink / raw
To: gentoo-commits
ago 13/03/08 17:45:13
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for arm, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.6&r2=1.7
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gnutls-2.12.23.ebuild 6 Mar 2013 10:23:00 -0000 1.6
+++ gnutls-2.12.23.ebuild 8 Mar 2013 17:45:13 -0000 1.7
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.6 2013/03/06 10:23:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.7 2013/03/08 17:45:13 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.418 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.418&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.418&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.417&r2=1.418
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.417
retrieving revision 1.418
diff -u -r1.417 -r1.418
--- ChangeLog 6 Mar 2013 10:23:00 -0000 1.417
+++ ChangeLog 8 Mar 2013 17:45:13 -0000 1.418
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.417 2013/03/06 10:23:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.418 2013/03/08 17:45:13 ago Exp $
+
+ 08 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for arm, wrt bug #455560
06 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for sh, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-09 12:03 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-09 12:03 UTC (permalink / raw
To: gentoo-commits
ago 13/03/09 12:03:54
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.7&r2=1.8
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gnutls-2.12.23.ebuild 8 Mar 2013 17:45:13 -0000 1.7
+++ gnutls-2.12.23.ebuild 9 Mar 2013 12:03:54 -0000 1.8
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.7 2013/03/08 17:45:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.8 2013/03/09 12:03:54 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.419 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.419&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.419&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.418&r2=1.419
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.418
retrieving revision 1.419
diff -u -r1.418 -r1.419
--- ChangeLog 8 Mar 2013 17:45:13 -0000 1.418
+++ ChangeLog 9 Mar 2013 12:03:54 -0000 1.419
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.418 2013/03/08 17:45:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.419 2013/03/09 12:03:54 ago Exp $
+
+ 09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for ppc64, wrt bug #455560
08 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for arm, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-09 13:33 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-09 13:33 UTC (permalink / raw
To: gentoo-commits
ago 13/03/09 13:33:30
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.8&r2=1.9
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gnutls-2.12.23.ebuild 9 Mar 2013 12:03:54 -0000 1.8
+++ gnutls-2.12.23.ebuild 9 Mar 2013 13:33:30 -0000 1.9
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.8 2013/03/09 12:03:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.9 2013/03/09 13:33:30 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.420 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.420&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.420&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.419&r2=1.420
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.419
retrieving revision 1.420
diff -u -r1.419 -r1.420
--- ChangeLog 9 Mar 2013 12:03:54 -0000 1.419
+++ ChangeLog 9 Mar 2013 13:33:30 -0000 1.420
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.419 2013/03/09 12:03:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.420 2013/03/09 13:33:30 ago Exp $
+
+ 09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for alpha, wrt bug #455560
09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for ppc64, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-09 14:24 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-09 14:24 UTC (permalink / raw
To: gentoo-commits
ago 13/03/09 14:24:26
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.9&r2=1.10
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gnutls-2.12.23.ebuild 9 Mar 2013 13:33:30 -0000 1.9
+++ gnutls-2.12.23.ebuild 9 Mar 2013 14:24:26 -0000 1.10
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.9 2013/03/09 13:33:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.10 2013/03/09 14:24:26 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.421 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.421&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.421&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.420&r2=1.421
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.420
retrieving revision 1.421
diff -u -r1.420 -r1.421
--- ChangeLog 9 Mar 2013 13:33:30 -0000 1.420
+++ ChangeLog 9 Mar 2013 14:24:26 -0000 1.421
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.420 2013/03/09 13:33:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.421 2013/03/09 14:24:26 ago Exp $
+
+ 09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for ia64, wrt bug #455560
09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for alpha, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-09 19:08 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-09 19:08 UTC (permalink / raw
To: gentoo-commits
ago 13/03/09 19:08:16
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.10&r2=1.11
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gnutls-2.12.23.ebuild 9 Mar 2013 14:24:26 -0000 1.10
+++ gnutls-2.12.23.ebuild 9 Mar 2013 19:08:16 -0000 1.11
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.10 2013/03/09 14:24:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.11 2013/03/09 19:08:16 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.422 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.422&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.422&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.421&r2=1.422
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.421
retrieving revision 1.422
diff -u -r1.421 -r1.422
--- ChangeLog 9 Mar 2013 14:24:26 -0000 1.421
+++ ChangeLog 9 Mar 2013 19:08:16 -0000 1.422
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.421 2013/03/09 14:24:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.422 2013/03/09 19:08:16 ago Exp $
+
+ 09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for sparc, wrt bug #455560
09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for ia64, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog
@ 2013-03-10 16:19 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-10 16:19 UTC (permalink / raw
To: gentoo-commits
ago 13/03/10 16:19:20
Modified: gnutls-2.12.23.ebuild ChangeLog
Log:
Stable for s390, wrt bug #455560
(Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 net-libs/gnutls/gnutls-2.12.23.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild?r1=1.11&r2=1.12
Index: gnutls-2.12.23.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- gnutls-2.12.23.ebuild 9 Mar 2013 19:08:16 -0000 1.11
+++ gnutls-2.12.23.ebuild 10 Mar 2013 16:19:20 -0000 1.12
@@ -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/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.11 2013/03/09 19:08:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23.ebuild,v 1.12 2013/03/10 16:19:20 ago Exp $
EAPI=4
@@ -18,7 +18,7 @@
# LGPL-2.1 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="bindist +cxx doc examples guile lzo +nettle nls pkcs11 static-libs test zlib"
RDEPEND=">=dev-libs/libtasn1-0.3.4
1.423 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.423&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.423&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.422&r2=1.423
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.422
retrieving revision 1.423
diff -u -r1.422 -r1.423
--- ChangeLog 9 Mar 2013 19:08:16 -0000 1.422
+++ ChangeLog 10 Mar 2013 16:19:20 -0000 1.423
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.422 2013/03/09 19:08:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.423 2013/03/10 16:19:20 ago Exp $
+
+ 10 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
+ Stable for s390, wrt bug #455560
09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gnutls-2.12.23.ebuild:
Stable for sparc, wrt bug #455560
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-03-10 16:19 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-10 16:19 [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-03-09 19:08 Agostino Sarubbo (ago)
2013-03-09 14:24 Agostino Sarubbo (ago)
2013-03-09 13:33 Agostino Sarubbo (ago)
2013-03-09 12:03 Agostino Sarubbo (ago)
2013-03-08 17:45 Agostino Sarubbo (ago)
2013-03-06 10:23 Agostino Sarubbo (ago)
2013-03-04 18:16 Brent Baude (ranger)
2013-03-04 15:36 Jeroen Roovers (jer)
2013-03-04 9:20 Agostino Sarubbo (ago)
2013-03-04 9:11 Agostino Sarubbo (ago)
2013-02-05 10:42 Alon Bar-Lev (alonbl)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox