* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.1.5-r1.ebuild ChangeLog
@ 2012-12-22 22:24 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 4+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-22 22:24 UTC (permalink / raw
To: gentoo-commits
alonbl 12/12/22 22:24:10
Modified: ChangeLog
Added: gnutls-3.1.5-r1.ebuild
Log:
Respect LINGUAS, per bug#402683.
Remove unused myconf usage.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.392 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.392&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.392&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.391&r2=1.392
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.391
retrieving revision 1.392
diff -u -r1.391 -r1.392
--- ChangeLog 24 Nov 2012 19:16:35 -0000 1.391
+++ ChangeLog 22 Dec 2012 22:24:10 -0000 1.392
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.391 2012/11/24 19:16:35 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.392 2012/12/22 22:24:10 alonbl Exp $
+
+*gnutls-3.1.5-r1 (22 Dec 2012)
+
+ 22 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> +gnutls-3.1.5-r1.ebuild:
+ Respect LINGUAS, per bug#402683. Remove unused myconf usage.
*gnutls-3.1.5 (24 Nov 2012)
1.1 net-libs/gnutls/gnutls-3.1.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.1&content-type=text/plain
Index: gnutls-3.1.5-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.1 2012/12/22 22:24:10 alonbl Exp $
EAPI=4
inherit autotools libtool eutils
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="mirror://gnu/${PN}/${P}.tar.xz"
fi
# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library.
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="+cxx dane doc examples guile nls pkcs11 static-libs test zlib"
IUSE_LINGUAS="en cs de fi fr it ms nl pl sv uk vi zh_CN"
for lingua in ${IUSE_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
unset lingua
RDEPEND=">=dev-libs/libtasn1-2.14
>=dev-libs/nettle-2.5[gmp]
sys-devel/autogen
dane? ( net-dns/unbound )
guile? ( >=dev-scheme/guile-1.8[networking] )
nls? ( virtual/libintl )
pkcs11? ( >=app-crypt/p11-kit-0.11 )
zlib? ( >=sys-libs/zlib-1.2.3.1 )"
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 )
src_prepare() {
local dir file
# tests/suite directory is not distributed.
sed -i \
-e ':AC_CONFIG_FILES(\[tests/suite/Makefile\]):d' \
-e '/^AM_INIT_AUTOMAKE/s/-Werror//' \
configure.ac || die
sed -i \
-e 's/imagesdir = $(infodir)/imagesdir = $(htmldir)/' \
doc/Makefile.am || die
for dir in m4 gl/m4; do
rm -f "${dir}/lt"* "${dir}/libtool.m4"
done
find . -name ltmain.sh -exec rm {} \;
# use system libopts
sed -i -e "/^enable_local_libopts/s/yes/no/" configure.ac || die
# force regeneration of autogen-ed files
for file in $(grep -l AutoGen-ed src/*.c) ; do
rm src/$(basename ${file} .c).{c,h} || die
done
epatch "${FILESDIR}"/${PN}-3.1.3-guile-parallelmake.patch
# support user patches
epatch_user
eautoreconf
# Use sane .so versioning on FreeBSD.
elibtoolize
}
src_configure() {
LINGUAS="${LINGUAS//en/en@boldquot en@quot}"
# TPM needs to be tested before being enabled
econf \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
--disable-silent-rules \
--disable-valgrind-tests \
$(use_enable cxx) \
$(use_enable dane libdane) \
$(use_enable doc gtk-doc) \
$(use_enable doc gtk-doc-pdf) \
$(use_enable guile) \
$(use_enable nls) \
$(use_enable static-libs static) \
$(use_with pkcs11 p11-kit) \
$(use_with zlib) \
--without-tpm
}
src_test() {
# let it build in parallel
emake check
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
if use doc; then
dodoc doc/gnutls.pdf
dohtml doc/gnutls.html
fi
if use examples; then
docinto examples
dodoc doc/examples/*.c
fi
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.1.5-r1.ebuild ChangeLog
@ 2012-12-22 22:41 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 4+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-22 22:41 UTC (permalink / raw
To: gentoo-commits
alonbl 12/12/22 22:41:29
Modified: gnutls-3.1.5-r1.ebuild ChangeLog
Log:
Support cross compile, per bug#438222, thanks to James Le Cuirot
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.2 net-libs/gnutls/gnutls-3.1.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?r1=1.1&r2=1.2
Index: gnutls-3.1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnutls-3.1.5-r1.ebuild 22 Dec 2012 22:24:10 -0000 1.1
+++ gnutls-3.1.5-r1.ebuild 22 Dec 2012 22:41:29 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.1 2012/12/22 22:24:10 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.2 2012/12/22 22:41:29 alonbl Exp $
EAPI=4
@@ -90,6 +90,12 @@
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
--disable-silent-rules \
--disable-valgrind-tests \
+ --with-libnettle-prefix="${EROOT}"/usr \
+ --with-libiconv-prefix="${EROOT}"/usr \
+ --with-libintl-prefix="${EROOT}"/usr \
+ --with-libpth-prefix="${EROOT}"/usr \
+ --with-libpthread-prefix="${EROOT}"/usr \
+ --with-libz-prefix="${EROOT}"/usr \
$(use_enable cxx) \
$(use_enable dane libdane) \
$(use_enable doc gtk-doc) \
1.393 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.393&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.393&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.392&r2=1.393
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.392
retrieving revision 1.393
diff -u -r1.392 -r1.393
--- ChangeLog 22 Dec 2012 22:24:10 -0000 1.392
+++ ChangeLog 22 Dec 2012 22:41:29 -0000 1.393
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.392 2012/12/22 22:24:10 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.393 2012/12/22 22:41:29 alonbl Exp $
+
+ 22 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> gnutls-3.1.5-r1.ebuild:
+ Support cross compile, per bug#438222, thanks to James Le Cuirot
*gnutls-3.1.5-r1 (22 Dec 2012)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.1.5-r1.ebuild ChangeLog
@ 2012-12-22 22:48 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 4+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-22 22:48 UTC (permalink / raw
To: gentoo-commits
alonbl 12/12/22 22:48:45
Modified: gnutls-3.1.5-r1.ebuild ChangeLog
Log:
Add certtool.cfg as doc, per bug#426124, thanks to Petr Pisar
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.3 net-libs/gnutls/gnutls-3.1.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?r1=1.2&r2=1.3
Index: gnutls-3.1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnutls-3.1.5-r1.ebuild 22 Dec 2012 22:41:29 -0000 1.2
+++ gnutls-3.1.5-r1.ebuild 22 Dec 2012 22:48:44 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.2 2012/12/22 22:41:29 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.3 2012/12/22 22:48:44 alonbl Exp $
EAPI=4
@@ -118,6 +118,8 @@
find "${ED}" -name '*.la' -exec rm -f {} +
+ dodoc doc/certtool.cfg
+
if use doc; then
dodoc doc/gnutls.pdf
dohtml doc/gnutls.html
1.394 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.394&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.394&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.393&r2=1.394
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.393
retrieving revision 1.394
diff -u -r1.393 -r1.394
--- ChangeLog 22 Dec 2012 22:41:29 -0000 1.393
+++ ChangeLog 22 Dec 2012 22:48:44 -0000 1.394
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.393 2012/12/22 22:41:29 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.394 2012/12/22 22:48:44 alonbl Exp $
+
+ 22 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> gnutls-3.1.5-r1.ebuild:
+ Add certtool.cfg as doc, per bug#426124, thanks to Petr Pisar
22 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> gnutls-3.1.5-r1.ebuild:
Support cross compile, per bug#438222, thanks to James Le Cuirot
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.1.5-r1.ebuild ChangeLog
@ 2012-12-23 9:40 Alon Bar-Lev (alonbl)
0 siblings, 0 replies; 4+ messages in thread
From: Alon Bar-Lev (alonbl) @ 2012-12-23 9:40 UTC (permalink / raw
To: gentoo-commits
alonbl 12/12/23 09:40:46
Modified: gnutls-3.1.5-r1.ebuild ChangeLog
Log:
Revert bug#438222, multilib issue, thanks for Alexander E. Patrakov
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.4 net-libs/gnutls/gnutls-3.1.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild?r1=1.3&r2=1.4
Index: gnutls-3.1.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnutls-3.1.5-r1.ebuild 22 Dec 2012 22:48:44 -0000 1.3
+++ gnutls-3.1.5-r1.ebuild 23 Dec 2012 09:40:46 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.3 2012/12/22 22:48:44 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.1.5-r1.ebuild,v 1.4 2012/12/23 09:40:46 alonbl Exp $
EAPI=4
@@ -90,12 +90,6 @@
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
--disable-silent-rules \
--disable-valgrind-tests \
- --with-libnettle-prefix="${EROOT}"/usr \
- --with-libiconv-prefix="${EROOT}"/usr \
- --with-libintl-prefix="${EROOT}"/usr \
- --with-libpth-prefix="${EROOT}"/usr \
- --with-libpthread-prefix="${EROOT}"/usr \
- --with-libz-prefix="${EROOT}"/usr \
$(use_enable cxx) \
$(use_enable dane libdane) \
$(use_enable doc gtk-doc) \
1.395 net-libs/gnutls/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.395&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.395&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.394&r2=1.395
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.394
retrieving revision 1.395
diff -u -r1.394 -r1.395
--- ChangeLog 22 Dec 2012 22:48:44 -0000 1.394
+++ ChangeLog 23 Dec 2012 09:40:46 -0000 1.395
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/gnutls
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.394 2012/12/22 22:48:44 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.395 2012/12/23 09:40:46 alonbl Exp $
+
+ 23 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> gnutls-3.1.5-r1.ebuild:
+ Revert bug#438222, multilib issue, thanks for Alexander E. Patrakov
22 Dec 2012; Alon Bar-Lev <alonbl@gentoo.org> gnutls-3.1.5-r1.ebuild:
Add certtool.cfg as doc, per bug#426124, thanks to Petr Pisar
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-12-23 9:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-23 9:40 [gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.1.5-r1.ebuild ChangeLog Alon Bar-Lev (alonbl)
-- strict thread matches above, loose matches on Subject: below --
2012-12-22 22:48 Alon Bar-Lev (alonbl)
2012-12-22 22:41 Alon Bar-Lev (alonbl)
2012-12-22 22:24 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