* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-10-16 1:21 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 10+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-10-16 1:21 UTC (permalink / raw
To: gentoo-commits
arfrever 10/10/16 01:21:35
Modified: ChangeLog
Added: neon-0.29.5.ebuild
Log:
Version bump.
(Portage version: 2.2_rc96_p20/cvs/Linux x86_64)
Revision Changes Path
1.5 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 1 Oct 2010 19:37:47 -0000 1.4
+++ ChangeLog 16 Oct 2010 01:21:35 -0000 1.5
@@ -1,6 +1,12 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.4 2010/10/01 19:37:47 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.5 2010/10/16 01:21:35 arfrever Exp $
+
+*neon-0.29.5 (16 Oct 2010)
+
+ 16 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ +neon-0.29.5.ebuild:
+ Version bump.
*neon-0.29.4 (01 Oct 2010)
1.1 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.1&content-type=text/plain
Index: neon-0.29.5.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.1 2010/10/16 01:21:35 arfrever Exp $
EAPI="3"
inherit autotools libtool versionator
DESCRIPTION="HTTP and WebDAV client library"
HOMEPAGE="http://www.webdav.org/neon/"
SRC_URI="http://www.webdav.org/neon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
IUSE+=" linguas_${lingua}"
done
unset lingua
RESTRICT="test"
RDEPEND="expat? ( dev-libs/expat )
!expat? ( dev-libs/libxml2 )
gnutls? (
>=net-libs/gnutls-2.0
pkcs11? ( dev-libs/pakchois )
)
!gnutls? ( ssl? (
>=dev-libs/openssl-0.9.6f
pkcs11? ( dev-libs/pakchois )
) )
kerberos? ( virtual/krb5 )
libproxy? ( net-libs/libproxy )
nls? ( virtual/libintl )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}"
src_prepare() {
local lingua linguas
for lingua in ${IUSE_LINGUAS}; do
use linguas_${lingua} && linguas+=" ${lingua}"
done
sed -i -e "s/ALL_LINGUAS=.*/ALL_LINGUAS=\"${linguas}\"/g" configure.in
AT_M4DIR="macros" eautoreconf
elibtoolize
}
src_configure() {
local myconf
if has_version sys-libs/glibc; then
einfo "Enabling SSL library thread-safety using POSIX threads..."
myconf+=" --enable-threadsafe-ssl=posix"
fi
if use expat; then
myconf+=" --with-expat"
else
myconf+=" --with-libxml2"
fi
if use gnutls; then
myconf+=" --with-ssl=gnutls --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
elif use ssl; then
myconf+=" --with-ssl=openssl"
fi
econf \
--enable-static \
--enable-shared \
$(use_with kerberos gssapi) \
$(use_with libproxy) \
$(use_enable nls) \
$(use_with pkcs11 pakchois) \
$(use_with zlib) \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install-lib install-headers install-config install-nls || die "emake install failed"
if use doc; then
emake DESTDIR="${D}" install-docs || die "emake install-docs failed"
fi
dodoc AUTHORS BUGS NEWS README THANKS TODO
doman doc/man/*.[1-8]
}
pkg_postinst() {
ewarn "Neon has a policy of breaking API across minor versions, this means"
ewarn "that any package that links against Neon may be broken after"
ewarn "updating. They will remain broken until they are ported to the"
ewarn "new API. You can downgrade Neon to the previous version by doing:"
ewarn
ewarn " emerge --oneshot '<${CATEGORY}/${PN}-$(get_version_component_range 1-2 ${PV})'"
ewarn
ewarn "You may also have to downgrade any package that has not been"
ewarn "ported to the new API yet."
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-11-15 13:29 Markos Chandras (hwoarang)
0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-15 13:29 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/11/15 13:29:37
Modified: neon-0.29.5.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #345481
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.2 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.1&r2=1.2
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- neon-0.29.5.ebuild 16 Oct 2010 01:21:35 -0000 1.1
+++ neon-0.29.5.ebuild 15 Nov 2010 13:29:36 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.1 2010/10/16 01:21:35 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.2 2010/11/15 13:29:36 hwoarang Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.6 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 16 Oct 2010 01:21:35 -0000 1.5
+++ ChangeLog 15 Nov 2010 13:29:36 -0000 1.6
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.5 2010/10/16 01:21:35 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.6 2010/11/15 13:29:36 hwoarang Exp $
+
+ 15 Nov 2010; Markos Chandras <hwoarang@gentoo.org> neon-0.29.5.ebuild:
+ Stable on amd64 wrt bug #345481
*neon-0.29.5 (16 Oct 2010)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-11-17 11:09 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2010-11-17 11:09 UTC (permalink / raw
To: gentoo-commits
maekke 10/11/17 11:09:22
Modified: neon-0.29.5.ebuild ChangeLog
Log:
x86 stable, bug #345481
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.3 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.2&r2=1.3
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- neon-0.29.5.ebuild 15 Nov 2010 13:29:36 -0000 1.2
+++ neon-0.29.5.ebuild 17 Nov 2010 11:09:21 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.2 2010/11/15 13:29:36 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.3 2010/11/17 11:09:21 maekke Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.7 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 15 Nov 2010 13:29:36 -0000 1.6
+++ ChangeLog 17 Nov 2010 11:09:21 -0000 1.7
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.6 2010/11/15 13:29:36 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.7 2010/11/17 11:09:21 maekke Exp $
+
+ 17 Nov 2010; Markus Meier <maekke@gentoo.org> neon-0.29.5.ebuild:
+ x86 stable, bug #345481
15 Nov 2010; Markos Chandras <hwoarang@gentoo.org> neon-0.29.5.ebuild:
Stable on amd64 wrt bug #345481
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-11-17 21:24 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2010-11-17 21:24 UTC (permalink / raw
To: gentoo-commits
maekke 10/11/17 21:24:43
Modified: neon-0.29.5.ebuild ChangeLog
Log:
arm stable, bug #345481
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.4 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.3&r2=1.4
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- neon-0.29.5.ebuild 17 Nov 2010 11:09:21 -0000 1.3
+++ neon-0.29.5.ebuild 17 Nov 2010 21:24:43 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.3 2010/11/17 11:09:21 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.4 2010/11/17 21:24:43 maekke Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.8 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 17 Nov 2010 11:09:21 -0000 1.7
+++ ChangeLog 17 Nov 2010 21:24:43 -0000 1.8
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.7 2010/11/17 11:09:21 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.8 2010/11/17 21:24:43 maekke Exp $
+
+ 17 Nov 2010; Markus Meier <maekke@gentoo.org> neon-0.29.5.ebuild:
+ arm stable, bug #345481
17 Nov 2010; Markus Meier <maekke@gentoo.org> neon-0.29.5.ebuild:
x86 stable, bug #345481
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-11-26 15:35 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2010-11-26 15:35 UTC (permalink / raw
To: gentoo-commits
jer 10/11/26 15:35:08
Modified: neon-0.29.5.ebuild ChangeLog
Log:
Stable for HPPA (bug #345481).
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.5 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.4&r2=1.5
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- neon-0.29.5.ebuild 17 Nov 2010 21:24:43 -0000 1.4
+++ neon-0.29.5.ebuild 26 Nov 2010 15:35:08 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.4 2010/11/17 21:24:43 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.5 2010/11/26 15:35:08 jer Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.9 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 17 Nov 2010 21:24:43 -0000 1.8
+++ ChangeLog 26 Nov 2010 15:35:08 -0000 1.9
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.8 2010/11/17 21:24:43 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.9 2010/11/26 15:35:08 jer Exp $
+
+ 26 Nov 2010; Jeroen Roovers <jer@gentoo.org> neon-0.29.5.ebuild:
+ Stable for HPPA (bug #345481).
17 Nov 2010; Markus Meier <maekke@gentoo.org> neon-0.29.5.ebuild:
arm stable, bug #345481
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-11-30 16:36 Michael Weber (xmw)
0 siblings, 0 replies; 10+ messages in thread
From: Michael Weber (xmw) @ 2010-11-30 16:36 UTC (permalink / raw
To: gentoo-commits
xmw 10/11/30 16:36:21
Modified: neon-0.29.5.ebuild ChangeLog
Log:
sparc stable (bug 345481)
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.6 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.5&r2=1.6
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- neon-0.29.5.ebuild 26 Nov 2010 15:35:08 -0000 1.5
+++ neon-0.29.5.ebuild 30 Nov 2010 16:36:21 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.5 2010/11/26 15:35:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.6 2010/11/30 16:36:21 xmw Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.10 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 26 Nov 2010 15:35:08 -0000 1.9
+++ ChangeLog 30 Nov 2010 16:36:21 -0000 1.10
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.9 2010/11/26 15:35:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.10 2010/11/30 16:36:21 xmw Exp $
+
+ 30 Nov 2010; Michael Weber <xmw@gentoo.org> neon-0.29.5.ebuild:
+ sparc stable (bug 345481)
26 Nov 2010; Jeroen Roovers <jer@gentoo.org> neon-0.29.5.ebuild:
Stable for HPPA (bug #345481).
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-12-05 16:36 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2010-12-05 16:36 UTC (permalink / raw
To: gentoo-commits
armin76 10/12/05 16:36:28
Modified: neon-0.29.5.ebuild ChangeLog
Log:
alpha/ia64/s390/sh stable wrt #345481
(Portage version: 2.1.9.24/cvs/Linux ia64)
Revision Changes Path
1.7 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.6&r2=1.7
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- neon-0.29.5.ebuild 30 Nov 2010 16:36:21 -0000 1.6
+++ neon-0.29.5.ebuild 5 Dec 2010 16:36:27 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.6 2010/11/30 16:36:21 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.7 2010/12/05 16:36:27 armin76 Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.11 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 30 Nov 2010 16:36:21 -0000 1.10
+++ ChangeLog 5 Dec 2010 16:36:27 -0000 1.11
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.10 2010/11/30 16:36:21 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.11 2010/12/05 16:36:27 armin76 Exp $
+
+ 05 Dec 2010; Raúl Porcel <armin76@gentoo.org> neon-0.29.5.ebuild:
+ alpha/ia64/s390/sh stable wrt #345481
30 Nov 2010; Michael Weber <xmw@gentoo.org> neon-0.29.5.ebuild:
sparc stable (bug 345481)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-12-13 20:31 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2010-12-13 20:31 UTC (permalink / raw
To: gentoo-commits
ranger 10/12/13 20:31:04
Modified: neon-0.29.5.ebuild ChangeLog
Log:
stable ppc, bug 345481
(Portage version: 2.1.8.3/cvs/Linux ppc64)
Revision Changes Path
1.8 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.7&r2=1.8
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- neon-0.29.5.ebuild 5 Dec 2010 16:36:27 -0000 1.7
+++ neon-0.29.5.ebuild 13 Dec 2010 20:31:03 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.7 2010/12/05 16:36:27 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.8 2010/12/13 20:31:03 ranger Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.12 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 5 Dec 2010 16:36:27 -0000 1.11
+++ ChangeLog 13 Dec 2010 20:31:03 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.11 2010/12/05 16:36:27 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.12 2010/12/13 20:31:03 ranger Exp $
+
+ 13 Dec 2010; Brent Baude <ranger@gentoo.org> neon-0.29.5.ebuild:
+ stable ppc, bug 345481
05 Dec 2010; Raúl Porcel <armin76@gentoo.org> neon-0.29.5.ebuild:
alpha/ia64/s390/sh stable wrt #345481
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2010-12-27 21:22 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2010-12-27 21:22 UTC (permalink / raw
To: gentoo-commits
ranger 10/12/27 21:22:26
Modified: neon-0.29.5.ebuild ChangeLog
Log:
stable ppc64, bug 345481
(Portage version: 2.1.9.25/cvs/Linux ppc64)
Revision Changes Path
1.9 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.8&r2=1.9
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- neon-0.29.5.ebuild 13 Dec 2010 20:31:03 -0000 1.8
+++ neon-0.29.5.ebuild 27 Dec 2010 21:22:26 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.8 2010/12/13 20:31:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.9 2010/12/27 21:22:26 ranger Exp $
EAPI="3"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl zlib"
IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
for lingua in ${IUSE_LINGUAS}; do
1.13 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 13 Dec 2010 20:31:03 -0000 1.12
+++ ChangeLog 27 Dec 2010 21:22:26 -0000 1.13
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/neon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.12 2010/12/13 20:31:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.13 2010/12/27 21:22:26 ranger Exp $
+
+ 27 Dec 2010; Brent Baude <ranger@gentoo.org> neon-0.29.5.ebuild:
+ stable ppc64, bug 345481
13 Dec 2010; Brent Baude <ranger@gentoo.org> neon-0.29.5.ebuild:
stable ppc, bug 345481
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog
@ 2011-01-16 18:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 10+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-01-16 18:30 UTC (permalink / raw
To: gentoo-commits
arfrever 11/01/16 18:30:57
Modified: neon-0.29.5.ebuild ChangeLog
Log:
Fix dependencies (bug #351826).
(Portage version: 2.2.0_alpha15_p10/cvs/Linux x86_64)
Revision Changes Path
1.10 net-libs/neon/neon-0.29.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild?r1=1.9&r2=1.10
Index: neon-0.29.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- neon-0.29.5.ebuild 27 Dec 2010 21:22:26 -0000 1.9
+++ neon-0.29.5.ebuild 16 Jan 2011 18:30:57 -0000 1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.9 2010/12/27 21:22:26 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.5.ebuild,v 1.10 2011/01/16 18:30:57 arfrever Exp $
EAPI="3"
@@ -35,7 +35,8 @@
libproxy? ( net-libs/libproxy )
nls? ( virtual/libintl )
zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
src_prepare() {
local lingua linguas
1.15 net-libs/neon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.14&r2=1.15
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog 27 Dec 2010 22:05:08 -0000 1.14
+++ ChangeLog 16 Jan 2011 18:30:57 -0000 1.15
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/neon
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.14 2010/12/27 22:05:08 arfrever Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.15 2011/01/16 18:30:57 arfrever Exp $
+
+ 16 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ neon-0.29.5.ebuild:
+ Fix dependencies (bug #351826).
27 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-neon-0.29.3.ebuild, -neon-0.29.4.ebuild, -files/neon-0.29-sni-fix.patch:
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2011-01-16 18:31 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-26 15:35 [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.5.ebuild ChangeLog Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2011-01-16 18:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-12-27 21:22 Brent Baude (ranger)
2010-12-13 20:31 Brent Baude (ranger)
2010-12-05 16:36 Raul Porcel (armin76)
2010-11-30 16:36 Michael Weber (xmw)
2010-11-17 21:24 Markus Meier (maekke)
2010-11-17 11:09 Markus Meier (maekke)
2010-11-15 13:29 Markos Chandras (hwoarang)
2010-10-16 1:21 Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox