* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-07 18:18 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 12+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2014-06-07 18:18 UTC (permalink / raw
To: gentoo-commits
alonbl 14/06/07 18:18:46
Modified: ChangeLog
Added: gnutls-2.12.23-r6.ebuild
Log:
Fix CVE-2014-3466, CVE-2014-3467, CVE-2014-3468, CVE-2014-3469 of 2.12 series
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Revision Changes Path
1.495 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.495&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.495&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.494&r2=1.495
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.494
retrieving revision 1.495
diff -u -r1.494 -r1.495
--- ChangeLog 7 Jun 2014 17:48:35 -0000 1.494
+++ ChangeLog 7 Jun 2014 18:18:46 -0000 1.495
@@ -1,6 +1,15 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.494 2014/06/07 17:48:35 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.495 2014/06/07 18:18:46 alonbl Exp $
+
+*gnutls-2.12.23-r6 (07 Jun 2014)
+
+ 07 Jun 2014; Alon Bar-Lev <alonbl@gentoo.org>
+ +files/gnutls-2.12.23-CVE-2014-3466.patch,
+ +files/gnutls-2.12.23-CVE-2014-3467.patch,
+ +files/gnutls-2.12.23-CVE-2014-3468.patch,
+ +files/gnutls-2.12.23-CVE-2014-3469.patch, +gnutls-2.12.23-r6.ebuild:
+ Fix CVE-2014-3466, CVE-2014-3467, CVE-2014-3468, CVE-2014-3469 of 2.12 series
07 Jun 2014; Alon Bar-Lev <alonbl@gentoo.org>
-files/gnutls-2.12.20-glibc-2.16.patch, -files/gnutls-3.3.1-guile.patch,
1.1 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.1&content-type=text/plain
Index: gnutls-2.12.23-r6.ebuild
===================================================================
# Copyright 1999-2014 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-r6.ebuild,v 1.1 2014/06/07 18:18:46 alonbl Exp $
EAPI=5
inherit autotools libtool eutils versionator
DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project"
HOMEPAGE="http://www.gnutls.org/"
SRC_URI="ftp://ftp.gnutls.org/gcrypt/gnutls/v$(get_version_component_range 1-2)/${P}.tar.bz2"
# 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: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 )"
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
for dir in . lib libextra; do
sed -i -e '/^AM_INIT_AUTOMAKE/s/-Werror//' "${dir}/configure.ac" || die
done
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
epatch "${FILESDIR}"/${P}-hppa.patch
epatch "${FILESDIR}"/${P}-gl-tests-getaddrinfo-skip-if-no-network.patch
epatch "${FILESDIR}"/${P}-gdoc-perl-5.18.patch
epatch "${FILESDIR}"/${P}-CVE-2013-2116.patch
epatch "${FILESDIR}"/${P}-CVE-2014-0092.patch
epatch "${FILESDIR}"/${P}-CVE-2014-1959.patch
epatch "${FILESDIR}"/${P}-CVE-2014-3466.patch
epatch "${FILESDIR}"/${P}-CVE-2014-3467.patch
epatch "${FILESDIR}"/${P}-CVE-2014-3468.patch
epatch "${FILESDIR}"/${P}-CVE-2014-3469.patch
# support user patches
epatch_user
eautoreconf
# 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/${PF}/html \
$(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
# parallel testing often fails
emake -j1 check
}
src_install() {
default
prune_libtool_files
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-r6.ebuild ChangeLog
@ 2014-06-09 19:13 Jeroen Roovers (jer)
0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2014-06-09 19:13 UTC (permalink / raw
To: gentoo-commits
jer 14/06/09 19:13:02
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
Stable for HPPA (bug #511840).
(Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
Revision Changes Path
1.2 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.1&r2=1.2
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnutls-2.12.23-r6.ebuild 7 Jun 2014 18:18:46 -0000 1.1
+++ gnutls-2.12.23-r6.ebuild 9 Jun 2014 19:13:02 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.1 2014/06/07 18:18:46 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.2 2014/06/09 19:13:02 jer Exp $
EAPI=5
@@ -13,7 +13,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.496 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.496&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.496&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.495&r2=1.496
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.495
retrieving revision 1.496
diff -u -r1.495 -r1.496
--- ChangeLog 7 Jun 2014 18:18:46 -0000 1.495
+++ ChangeLog 9 Jun 2014 19:13:02 -0000 1.496
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.495 2014/06/07 18:18:46 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.496 2014/06/09 19:13:02 jer Exp $
+
+ 09 Jun 2014; Jeroen Roovers <jer@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ Stable for HPPA (bug #511840).
*gnutls-2.12.23-r6 (07 Jun 2014)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-09 20:47 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-09 20:47 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/09 20:47:05
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
amd64 stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.3 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.2&r2=1.3
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnutls-2.12.23-r6.ebuild 9 Jun 2014 19:13:02 -0000 1.2
+++ gnutls-2.12.23-r6.ebuild 9 Jun 2014 20:47:05 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.2 2014/06/09 19:13:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.3 2014/06/09 20:47:05 zlogene Exp $
EAPI=5
@@ -13,7 +13,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.497 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.497&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.497&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.496&r2=1.497
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.496
retrieving revision 1.497
diff -u -r1.496 -r1.497
--- ChangeLog 9 Jun 2014 19:13:02 -0000 1.496
+++ ChangeLog 9 Jun 2014 20:47:05 -0000 1.497
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.496 2014/06/09 19:13:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.497 2014/06/09 20:47:05 zlogene Exp $
+
+ 09 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ amd64 stable wrt bug #511840
09 Jun 2014; Jeroen Roovers <jer@gentoo.org> gnutls-2.12.23-r6.ebuild:
Stable for HPPA (bug #511840).
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-09 20:48 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-09 20:48 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/09 20:48:09
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
x86 stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.4 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.3&r2=1.4
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnutls-2.12.23-r6.ebuild 9 Jun 2014 20:47:05 -0000 1.3
+++ gnutls-2.12.23-r6.ebuild 9 Jun 2014 20:48:09 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.3 2014/06/09 20:47:05 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.4 2014/06/09 20:48:09 zlogene Exp $
EAPI=5
@@ -13,7 +13,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.498 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.498&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.498&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.497&r2=1.498
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.497
retrieving revision 1.498
diff -u -r1.497 -r1.498
--- ChangeLog 9 Jun 2014 20:47:05 -0000 1.497
+++ ChangeLog 9 Jun 2014 20:48:09 -0000 1.498
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.497 2014/06/09 20:47:05 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.498 2014/06/09 20:48:09 zlogene Exp $
+
+ 09 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ x86 stable wrt bug #511840
09 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
amd64 stable wrt bug #511840
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-09 20:49 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-09 20:49 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/09 20:49:37
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
arm stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.5 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.4&r2=1.5
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnutls-2.12.23-r6.ebuild 9 Jun 2014 20:48:09 -0000 1.4
+++ gnutls-2.12.23-r6.ebuild 9 Jun 2014 20:49:37 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.4 2014/06/09 20:48:09 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.5 2014/06/09 20:49:37 zlogene Exp $
EAPI=5
@@ -13,7 +13,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.499 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.499&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.499&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.498&r2=1.499
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.498
retrieving revision 1.499
diff -u -r1.498 -r1.499
--- ChangeLog 9 Jun 2014 20:48:09 -0000 1.498
+++ ChangeLog 9 Jun 2014 20:49:37 -0000 1.499
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.498 2014/06/09 20:48:09 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.499 2014/06/09 20:49:37 zlogene Exp $
+
+ 09 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ arm stable wrt bug #511840
09 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
x86 stable wrt bug #511840
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-10 7:26 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-10 7:26 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/10 07:26:13
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
alpha stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.8 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.7&r2=1.8
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gnutls-2.12.23-r6.ebuild 10 Jun 2014 00:42:37 -0000 1.7
+++ gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:26:13 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.7 2014/06/10 00:42:37 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.8 2014/06/10 07:26:13 zlogene Exp $
EAPI=5
@@ -13,7 +13,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 arm64 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 arm64 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.502 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.502&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.502&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.501&r2=1.502
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.501
retrieving revision 1.502
diff -u -r1.501 -r1.502
--- ChangeLog 10 Jun 2014 00:42:37 -0000 1.501
+++ ChangeLog 10 Jun 2014 07:26:13 -0000 1.502
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.501 2014/06/10 00:42:37 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.502 2014/06/10 07:26:13 zlogene Exp $
+
+ 10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ alpha stable wrt bug #511840
10 Jun 2014; Mike Frysinger <vapier@gentoo.org> gnutls-2.12.23-r4.ebuild,
gnutls-2.12.23-r5.ebuild, gnutls-2.12.23-r6.ebuild, gnutls-3.2.15.ebuild,
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-10 7:31 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-10 7:31 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/10 07:31:48
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
sparc stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.9 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.8&r2=1.9
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:26:13 -0000 1.8
+++ gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:31:48 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.8 2014/06/10 07:26:13 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.9 2014/06/10 07:31:48 zlogene Exp $
EAPI=5
@@ -13,7 +13,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 arm64 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 arm64 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.503 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.503&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.503&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.502&r2=1.503
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.502
retrieving revision 1.503
diff -u -r1.502 -r1.503
--- ChangeLog 10 Jun 2014 07:26:13 -0000 1.502
+++ ChangeLog 10 Jun 2014 07:31:48 -0000 1.503
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.502 2014/06/10 07:26:13 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.503 2014/06/10 07:31:48 zlogene Exp $
+
+ 10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ sparc stable wrt bug #511840
10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
alpha stable wrt bug #511840
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-10 7:42 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-10 7:42 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/10 07:42:37
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
ia64 stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.10 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.9&r2=1.10
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:31:48 -0000 1.9
+++ gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:42:37 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.9 2014/06/10 07:31:48 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.10 2014/06/10 07:42:37 zlogene Exp $
EAPI=5
@@ -13,7 +13,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 arm64 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 arm64 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.504 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.504&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.504&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.503&r2=1.504
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.503
retrieving revision 1.504
diff -u -r1.503 -r1.504
--- ChangeLog 10 Jun 2014 07:31:48 -0000 1.503
+++ ChangeLog 10 Jun 2014 07:42:37 -0000 1.504
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.503 2014/06/10 07:31:48 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.504 2014/06/10 07:42:37 zlogene Exp $
+
+ 10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ ia64 stable wrt bug #511840
10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
sparc stable wrt bug #511840
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-10 7:44 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada (zlogene) @ 2014-06-10 7:44 UTC (permalink / raw
To: gentoo-commits
zlogene 14/06/10 07:44:22
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
ppc64/ppc stable wrt bug #511840
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.11 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.10&r2=1.11
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:42:37 -0000 1.10
+++ gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:44:22 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.10 2014/06/10 07:42:37 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.11 2014/06/10 07:44:22 zlogene Exp $
EAPI=5
@@ -13,7 +13,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 arm64 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 arm64 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.505 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.505&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.505&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.504&r2=1.505
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.504
retrieving revision 1.505
diff -u -r1.504 -r1.505
--- ChangeLog 10 Jun 2014 07:42:37 -0000 1.504
+++ ChangeLog 10 Jun 2014 07:44:22 -0000 1.505
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.504 2014/06/10 07:42:37 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.505 2014/06/10 07:44:22 zlogene Exp $
+
+ 10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ ppc64/ppc stable wrt bug #511840
10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> gnutls-2.12.23-r6.ebuild:
ia64 stable wrt bug #511840
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2014-06-13 13:35 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 12+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2014-06-13 13:35 UTC (permalink / raw
To: gentoo-commits
alonbl 14/06/13 13:35:52
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
Remove libtasn-1 mask, since long time we could have done this, bug#492522
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Revision Changes Path
1.12 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.11&r2=1.12
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- gnutls-2.12.23-r6.ebuild 10 Jun 2014 07:44:22 -0000 1.11
+++ gnutls-2.12.23-r6.ebuild 13 Jun 2014 13:35:52 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2014 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-r6.ebuild,v 1.11 2014/06/10 07:44:22 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.12 2014/06/13 13:35:52 alonbl Exp $
EAPI=5
@@ -17,7 +17,6 @@
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:0 )
1.507 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.507&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.507&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.506&r2=1.507
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.506
retrieving revision 1.507
diff -u -r1.506 -r1.507
--- ChangeLog 10 Jun 2014 07:49:36 -0000 1.506
+++ ChangeLog 13 Jun 2014 13:35:52 -0000 1.507
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.506 2014/06/10 07:49:36 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.507 2014/06/13 13:35:52 alonbl Exp $
+
+ 13 Jun 2014; Alon Bar-Lev <alonbl@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ Remove libtasn-1 mask, since long time we could have done this, bug#492522
10 Jun 2014; Alon Bar-Lev <alonbl@gentoo.org> -gnutls-2.12.23-r4.ebuild,
-gnutls-2.12.23-r5.ebuild:
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2015-04-03 17:21 Mike Frysinger (vapier)
0 siblings, 0 replies; 12+ messages in thread
From: Mike Frysinger (vapier) @ 2015-04-03 17:21 UTC (permalink / raw
To: gentoo-commits
vapier 15/04/03 17:21:34
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
Fix cross-compiling by not searching the host paths directly. The toolchain already has the right paths built into it for finding these libs.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.13 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.12&r2=1.13
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gnutls-2.12.23-r6.ebuild 13 Jun 2014 13:35:52 -0000 1.12
+++ gnutls-2.12.23-r6.ebuild 3 Apr 2015 17:21:34 -0000 1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 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-r6.ebuild,v 1.12 2014/06/13 13:35:52 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.13 2015/04/03 17:21:34 vapier Exp $
EAPI=5
@@ -81,6 +81,10 @@
econf \
--htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
+ --without-libgcrypt-prefix \
+ --without-libnettle-prefix \
+ --without-libpth-prefix \
+ --without-libreadline-prefix \
$(use_enable cxx) \
$(use_enable doc gtk-doc) \
$(use_enable doc gtk-doc-pdf) \
1.530 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.530&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.530&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.529&r2=1.530
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.529
retrieving revision 1.530
diff -u -r1.529 -r1.530
--- ChangeLog 1 Apr 2015 22:33:39 -0000 1.529
+++ ChangeLog 3 Apr 2015 17:21:34 -0000 1.530
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.529 2015/04/01 22:33:39 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.530 2015/04/03 17:21:34 vapier Exp $
+
+ 03 Apr 2015; Mike Frysinger <vapier@gentoo.org> gnutls-2.12.23-r6.ebuild:
+ Fix cross-compiling by not searching the host paths directly. The toolchain
+ already has the right paths built into it for finding these libs.
*gnutls-3.3.14 (01 Apr 2015)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog
@ 2015-05-16 8:52 Mike Frysinger (vapier)
0 siblings, 0 replies; 12+ messages in thread
From: Mike Frysinger (vapier) @ 2015-05-16 8:52 UTC (permalink / raw
To: gentoo-commits
vapier 15/05/16 08:52:41
Modified: gnutls-2.12.23-r6.ebuild ChangeLog
Log:
Fix from Chromium OS for cross-compiling.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.14 net-libs/gnutls/gnutls-2.12.23-r6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild?r1=1.13&r2=1.14
Index: gnutls-2.12.23-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- gnutls-2.12.23-r6.ebuild 3 Apr 2015 17:21:34 -0000 1.13
+++ gnutls-2.12.23-r6.ebuild 16 May 2015 08:52:41 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2015 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-r6.ebuild,v 1.13 2015/04/03 17:21:34 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-2.12.23-r6.ebuild,v 1.14 2015/05/16 08:52:41 vapier Exp $
EAPI=5
@@ -64,6 +64,7 @@
epatch "${FILESDIR}"/${P}-CVE-2014-3467.patch
epatch "${FILESDIR}"/${P}-CVE-2014-3468.patch
epatch "${FILESDIR}"/${P}-CVE-2014-3469.patch
+ epatch "${FILESDIR}"/${P}-cross-compile.patch
# support user patches
epatch_user
1.541 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.541&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.541&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.540&r2=1.541
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.540
retrieving revision 1.541
diff -u -r1.540 -r1.541
--- ChangeLog 15 May 2015 10:56:42 -0000 1.540
+++ ChangeLog 16 May 2015 08:52:41 -0000 1.541
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.540 2015/05/15 10:56:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.541 2015/05/16 08:52:41 vapier Exp $
+
+ 16 May 2015; Mike Frysinger <vapier@gentoo.org>
+ +files/gnutls-2.12.23-cross-compile.patch, gnutls-2.12.23-r6.ebuild:
+ Fix from Chromium OS for cross-compiling.
15 May 2015; Pacho Ramos <pacho@gentoo.org> gnutls-3.3.15.ebuild:
ppc stable wrt bug #548636
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2015-05-16 8:52 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-09 20:48 [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-2.12.23-r6.ebuild ChangeLog Mikle Kolyada (zlogene)
-- strict thread matches above, loose matches on Subject: below --
2015-05-16 8:52 Mike Frysinger (vapier)
2015-04-03 17:21 Mike Frysinger (vapier)
2014-06-13 13:35 Alon Bar-Lev (alonbl)
2014-06-10 7:44 Mikle Kolyada (zlogene)
2014-06-10 7:42 Mikle Kolyada (zlogene)
2014-06-10 7:31 Mikle Kolyada (zlogene)
2014-06-10 7:26 Mikle Kolyada (zlogene)
2014-06-09 20:49 Mikle Kolyada (zlogene)
2014-06-09 20:47 Mikle Kolyada (zlogene)
2014-06-09 19:13 Jeroen Roovers (jer)
2014-06-07 18:18 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