public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-05-03 20:06 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 10+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-05-03 20:06 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/05/03 20:06:39

  Modified:             ChangeLog
  Added:                neon-0.29.6.ebuild
  Log:
  Version bump. Fixed support for >=net-libs/gnutls-2.11.1[nettle] (bug #339393). Update dependencies (bug #341373).
  
  (Portage version: 2.2.0_alpha30_p40/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	16 Jan 2011 18:30:57 -0000	1.15
+++ ChangeLog	3 May 2011 20:06:39 -0000	1.16
@@ -1,6 +1,13 @@
 # ChangeLog for net-libs/neon
 # 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 $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.16 2011/05/03 20:06:39 arfrever Exp $
+
+*neon-0.29.6 (03 May 2011)
+
+  03 May 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +neon-0.29.6.ebuild:
+  Version bump. Fixed support for >=net-libs/gnutls-2.11.1[nettle] (bug #339393).
+  Update dependencies (bug #341373).
 
   16 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   neon-0.29.5.ebuild:



1.1                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.1&content-type=text/plain

Index: neon-0.29.6.ebuild
===================================================================
# 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.6.ebuild,v 1.1 2011/05/03 20:06:39 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 static-libs 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? (
		app-misc/ca-certificates
		>=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}
	dev-util/pkgconfig"

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-shared \
		$(use_with kerberos gssapi) \
		$(use_with libproxy) \
		$(use_enable nls) \
		$(use_with pkcs11 pakchois) \
		$(use_enable static-libs static) \
		$(use_with zlib) \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install-lib install-headers install-config install-nls || die "emake install failed"

	find "${ED}" -name "*.la" -print0 | xargs -0 rm -f

	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.6.ebuild ChangeLog
@ 2011-06-08 11:11 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-06-08 11:11 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/06/08 11:11:39

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #370523
  
  (Portage version: 2.1.9.49/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.1&r2=1.2

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- neon-0.29.6.ebuild	3 May 2011 20:06:39 -0000	1.1
+++ neon-0.29.6.ebuild	8 Jun 2011 11:11:39 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.1 2011/05/03 20:06:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.2 2011/06/08 11:11:39 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.17                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	3 May 2011 20:06:39 -0000	1.16
+++ ChangeLog	8 Jun 2011 11:11:39 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.16 2011/05/03 20:06:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.17 2011/06/08 11:11:39 hwoarang Exp $
+
+  08 Jun 2011; Markos Chandras <hwoarang@gentoo.org> neon-0.29.6.ebuild:
+  Stable on amd64 wrt bug #370523
 
 *neon-0.29.6 (03 May 2011)
 






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-06-11 21:11 Markus Meier (maekke)
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-06-11 21:11 UTC (permalink / raw
  To: gentoo-commits

maekke      11/06/11 21:11:49

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  arm stable, bug #370523
  
  (Portage version: 2.1.10/cvs/Linux i686)

Revision  Changes    Path
1.3                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.2&r2=1.3

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- neon-0.29.6.ebuild	8 Jun 2011 11:11:39 -0000	1.2
+++ neon-0.29.6.ebuild	11 Jun 2011 21:11:49 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.2 2011/06/08 11:11:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.3 2011/06/11 21:11:49 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.18                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	8 Jun 2011 11:11:39 -0000	1.17
+++ ChangeLog	11 Jun 2011 21:11:49 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.17 2011/06/08 11:11:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.18 2011/06/11 21:11:49 maekke Exp $
+
+  11 Jun 2011; Markus Meier <maekke@gentoo.org> neon-0.29.6.ebuild:
+  arm stable, bug #370523
 
   08 Jun 2011; Markos Chandras <hwoarang@gentoo.org> neon-0.29.6.ebuild:
   Stable on amd64 wrt bug #370523






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-06-12 15:42 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 10+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-06-12 15:42 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/06/12 15:42:55

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  x86 stable wrt bug #370523
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.4                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.3&r2=1.4

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- neon-0.29.6.ebuild	11 Jun 2011 21:11:49 -0000	1.3
+++ neon-0.29.6.ebuild	12 Jun 2011 15:42:55 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.3 2011/06/11 21:11:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.4 2011/06/12 15:42:55 phajdan.jr 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.19                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	11 Jun 2011 21:11:49 -0000	1.18
+++ ChangeLog	12 Jun 2011 15:42:55 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.18 2011/06/11 21:11:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.19 2011/06/12 15:42:55 phajdan.jr Exp $
+
+  12 Jun 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> neon-0.29.6.ebuild:
+  x86 stable wrt bug #370523
 
   11 Jun 2011; Markus Meier <maekke@gentoo.org> neon-0.29.6.ebuild:
   arm stable, bug #370523






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-06-14 23:14 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-14 23:14 UTC (permalink / raw
  To: gentoo-commits

jer         11/06/14 23:14:57

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #370523).
  
  (Portage version: 2.2.0_alpha41/cvs/Linux i686)

Revision  Changes    Path
1.5                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.4&r2=1.5

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- neon-0.29.6.ebuild	12 Jun 2011 15:42:55 -0000	1.4
+++ neon-0.29.6.ebuild	14 Jun 2011 23:14:57 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.4 2011/06/12 15:42:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.5 2011/06/14 23:14:57 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.20                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	12 Jun 2011 15:42:55 -0000	1.19
+++ ChangeLog	14 Jun 2011 23:14:57 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.19 2011/06/12 15:42:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.20 2011/06/14 23:14:57 jer Exp $
+
+  14 Jun 2011; Jeroen Roovers <jer@gentoo.org> neon-0.29.6.ebuild:
+  Stable for HPPA (bug #370523).
 
   12 Jun 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> neon-0.29.6.ebuild:
   x86 stable wrt bug #370523






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-06-24 12:06 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2011-06-24 12:06 UTC (permalink / raw
  To: gentoo-commits

armin76     11/06/24 12:06:45

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #370523
  
  (Portage version: 2.1.10.3/cvs/Linux ia64)

Revision  Changes    Path
1.6                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.5&r2=1.6

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- neon-0.29.6.ebuild	14 Jun 2011 23:14:57 -0000	1.5
+++ neon-0.29.6.ebuild	24 Jun 2011 12:06:45 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.5 2011/06/14 23:14:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.6 2011/06/24 12:06:45 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.21                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	14 Jun 2011 23:14:57 -0000	1.20
+++ ChangeLog	24 Jun 2011 12:06:45 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.20 2011/06/14 23:14:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.21 2011/06/24 12:06:45 armin76 Exp $
+
+  24 Jun 2011; Raúl Porcel <armin76@gentoo.org> neon-0.29.6.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #370523
 
   14 Jun 2011; Jeroen Roovers <jer@gentoo.org> neon-0.29.6.ebuild:
   Stable for HPPA (bug #370523).






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-06-26 15:01 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2011-06-26 15:01 UTC (permalink / raw
  To: gentoo-commits

ranger      11/06/26 15:01:36

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  Marking neon-0.29.6 ppc for bug 370523
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.7                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.6&r2=1.7

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- neon-0.29.6.ebuild	24 Jun 2011 12:06:45 -0000	1.6
+++ neon-0.29.6.ebuild	26 Jun 2011 15:01:35 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.6 2011/06/24 12:06:45 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.7 2011/06/26 15:01:35 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.22                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	24 Jun 2011 12:06:45 -0000	1.21
+++ ChangeLog	26 Jun 2011 15:01:35 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.21 2011/06/24 12:06:45 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.22 2011/06/26 15:01:35 ranger Exp $
+
+  26 Jun 2011; Brent Baude <ranger@gentoo.org> neon-0.29.6.ebuild:
+  Marking neon-0.29.6 ppc for bug 370523
 
   24 Jun 2011; Raúl Porcel <armin76@gentoo.org> neon-0.29.6.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #370523






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2011-07-20 22:14 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 10+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-07-20 22:14 UTC (permalink / raw
  To: gentoo-commits

halcy0n     11/07/20 22:14:39

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  Stable for ppc64; bug #370523
  
  (Portage version: 2.1.10.3/cvs/Linux ppc64)

Revision  Changes    Path
1.8                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.7&r2=1.8

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- neon-0.29.6.ebuild	26 Jun 2011 15:01:35 -0000	1.7
+++ neon-0.29.6.ebuild	20 Jul 2011 22:14:39 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.7 2011/06/26 15:01:35 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.8 2011/07/20 22:14:39 halcy0n 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 static-libs zlib"
 IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN"
 for lingua in ${IUSE_LINGUAS}; do



1.23                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	26 Jun 2011 15:01:35 -0000	1.22
+++ ChangeLog	20 Jul 2011 22:14:39 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.22 2011/06/26 15:01:35 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.23 2011/07/20 22:14:39 halcy0n Exp $
+
+  20 Jul 2011; Mark Loeser <halcy0n@gentoo.org> neon-0.29.6.ebuild:
+  Stable for ppc64; bug #370523
 
   26 Jun 2011; Brent Baude <ranger@gentoo.org> neon-0.29.6.ebuild:
   Marking neon-0.29.6 ppc for bug 370523






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2012-03-02 21:07 Fabian Groffen (grobian)
  0 siblings, 0 replies; 10+ messages in thread
From: Fabian Groffen (grobian) @ 2012-03-02 21:07 UTC (permalink / raw
  To: gentoo-commits

grobian     12/03/02 21:07:32

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  Fix ca-bundle path for Prefix
  
  (Portage version: 2.2.01.20153-prefix/cvs/SunOS i386)

Revision  Changes    Path
1.9                  net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.8&r2=1.9

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- neon-0.29.6.ebuild	20 Jul 2011 22:14:39 -0000	1.8
+++ neon-0.29.6.ebuild	2 Mar 2012 21:07:32 -0000	1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.8 2011/07/20 22:14:39 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.9 2012/03/02 21:07:32 grobian Exp $
 
 EAPI="3"
 
@@ -66,7 +66,7 @@
 	fi
 
 	if use gnutls; then
-		myconf+=" --with-ssl=gnutls --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
+		myconf+=" --with-ssl=gnutls --with-ca-bundle=${EPREFIX}/etc/ssl/certs/ca-certificates.crt"
 	elif use ssl; then
 		myconf+=" --with-ssl=openssl"
 	fi



1.28                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	24 Sep 2011 10:04:23 -0000	1.27
+++ ChangeLog	2 Mar 2012 21:07:32 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/neon
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.27 2011/09/24 10:04:23 mgorny Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.28 2012/03/02 21:07:32 grobian Exp $
+
+  02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild:
+  Fix ca-bundle path for Prefix
 
   24 Sep 2011; Michał Górny <mgorny@gentoo.org> metadata.xml:
   Fix invalid herd.






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog
@ 2012-03-02 21:17 Fabian Groffen (grobian)
  0 siblings, 0 replies; 10+ messages in thread
From: Fabian Groffen (grobian) @ 2012-03-02 21:17 UTC (permalink / raw
  To: gentoo-commits

grobian     12/03/02 21:17:03

  Modified:             neon-0.29.6.ebuild ChangeLog
  Log:
  Make sure neon links against -lintl on Solaris with USE=nls, because it needs it.
  
  (Portage version: 2.2.01.20153-prefix/cvs/SunOS i386)

Revision  Changes    Path
1.10                 net-libs/neon/neon-0.29.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild?r1=1.9&r2=1.10

Index: neon-0.29.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- neon-0.29.6.ebuild	2 Mar 2012 21:07:32 -0000	1.9
+++ neon-0.29.6.ebuild	2 Mar 2012 21:17:03 -0000	1.10
@@ -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/neon/neon-0.29.6.ebuild,v 1.9 2012/03/02 21:07:32 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.29.6.ebuild,v 1.10 2012/03/02 21:17:03 grobian Exp $
 
 EAPI="3"
 
@@ -71,6 +71,9 @@
 		myconf+=" --with-ssl=openssl"
 	fi
 
+	# work around broken check, we really need -lintl on Solaris
+	[[ ${CHOST} == *-solaris* ]] && export ne_cv_libsfor_bindtextdomain=-lintl
+
 	econf \
 		--enable-shared \
 		$(use_with kerberos gssapi) \



1.29                 net-libs/neon/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/neon/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	2 Mar 2012 21:07:32 -0000	1.28
+++ ChangeLog	2 Mar 2012 21:17:03 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/neon
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.28 2012/03/02 21:07:32 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/ChangeLog,v 1.29 2012/03/02 21:17:03 grobian Exp $
+
+  02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild:
+  Make sure neon links against -lintl on Solaris with USE=nls, because it needs
+  it.
 
   02 Mar 2012; Fabian Groffen <grobian@gentoo.org> neon-0.29.6.ebuild:
   Fix ca-bundle path for Prefix






^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2012-03-02 21:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-03 20:06 [gentoo-commits] gentoo-x86 commit in net-libs/neon: neon-0.29.6.ebuild ChangeLog Arfrever Frehtes Taifersar Arahesis (arfrever)
  -- strict thread matches above, loose matches on Subject: below --
2011-06-08 11:11 Markos Chandras (hwoarang)
2011-06-11 21:11 Markus Meier (maekke)
2011-06-12 15:42 PaweA Hajdan (phajdan.jr)
2011-06-14 23:14 Jeroen Roovers (jer)
2011-06-24 12:06 Raul Porcel (armin76)
2011-06-26 15:01 Brent Baude (ranger)
2011-07-20 22:14 Mark Loeser (halcy0n)
2012-03-02 21:07 Fabian Groffen (grobian)
2012-03-02 21:17 Fabian Groffen (grobian)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox