public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-01-25 22:03 Daniel Black (dragonheart)
  0 siblings, 0 replies; 7+ messages in thread
From: Daniel Black (dragonheart) @ 2009-01-25 22:03 UTC (permalink / raw
  To: gentoo-commits

dragonheart    09/01/25 22:03:17

  Modified:             ChangeLog
  Added:                curl-7.19.3.ebuild
  Log:
  version bump as per bug #255596 - thanks to Peter Alfredsen
  (Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64)

Revision  Changes    Path
1.131                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.130&r2=1.131

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog	22 Nov 2008 05:33:50 -0000	1.130
+++ ChangeLog	25 Jan 2009 22:03:17 -0000	1.131
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/curl
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.130 2008/11/22 05:33:50 loki_val Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.131 2009/01/25 22:03:17 dragonheart Exp $
+
+*curl-7.19.3 (25 Jan 2009)
+
+  25 Jan 2009; Daniel Black <dragonheart@gentoo.org> +curl-7.19.3.ebuild:
+  version bump as per bug #255596 - thanks to Peter Alfredsen
 
 *curl-7.19.2 (22 Nov 2008)
 



1.1                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.1&content-type=text/plain

Index: curl-7.19.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.1 2009/01/25 22:03:17 dragonheart Exp $

# NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!

inherit multilib eutils

#MY_P=${P/_pre/-}
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/ http://curl.planetmirror.com"
#SRC_URI="http://cool.haxx.se/curl-daily/${MY_P}.tar.bz2"
#SRC_URI="http://curl.planetmirror.com/download/${P}.tar.bz2"
SRC_URI="http://curl.haxx.se/download/${P}.tar.bz2"

LICENSE="MIT X11"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
#IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"

# TODO - change to openssl USE flag in the not too distant future
# https://bugs.gentoo.org/show_bug.cgi?id=207653#c3 (April 2008)

RDEPEND="gnutls? ( net-libs/gnutls app-misc/ca-certificates )
	nss? ( !gnutls? ( dev-libs/nss app-misc/ca-certificates ) )
	ssl? ( !gnutls? ( !nss? ( dev-libs/openssl app-misc/ca-certificates ) ) )
	ldap? ( net-nds/openldap )
	idn? ( net-dns/libidn )
	ares? ( >=net-dns/c-ares-1.4.0 )
	kerberos? ( virtual/krb5 )
	libssh2? ( >=net-libs/libssh2-0.16 )"

# fbopenssl (not in gentoo) --with-spnego
# krb4 http://web.mit.edu/kerberos/www/krb4-end-of-life.html

DEPEND="${RDEPEND}
	test? (
		sys-apps/diffutils
		dev-lang/perl
	)"
# used - but can do without in self test: net-misc/stunnel
#S="${WORKDIR}"/${MY_P}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/curl-7.17.0-strip-ldflags.patch
}

src_compile() {

	myconf="$(use_enable ldap)
		$(use_enable ldap ldaps)
		$(use_with idn libidn)
		$(use_with kerberos gssapi /usr)
		$(use_with libssh2)
		$(use_enable ipv6)
		--enable-http
		--enable-ftp
		--enable-gopher
		--enable-file
		--enable-dict
		--enable-manual
		--enable-telnet
		--enable-nonblocking
		--enable-largefile
		--enable-maintainer-mode
		--disable-sspi
		--without-krb4
		--without-spnego"

	if use ipv6 && use ares; then
		elog "c-ares support disabled because it is incompatible with ipv6."
		myconf="${myconf} --disable-ares"
	else
		myconf="${myconf} $(use_enable ares)"
	fi

	if use gnutls; then
		myconf="${myconf} --without-ssl --with-gnutls --without-nss"
		myconf="${myconf} --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
	elif use nss; then
		myconf="${myconf} --without-ssl --without-gnutls --with-nss"
		myconf="${myconf} --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
	elif use ssl; then
		myconf="${myconf} --without-gnutls --without-nss --with-ssl"
		myconf="${myconf} --without-ca-bundle --with-ca-path=/etc/ssl/certs"
	else
		myconf="${myconf} --without-gnutls --without-nss --without-ssl"
	fi

	econf ${myconf} || die 'configure failed'

	emake || die "install failed for current version"
}

src_install() {
	emake DESTDIR="${D}" install || die "installed failed for current version"
	rm -rf "${D}"/etc/

	# https://sourceforge.net/tracker/index.php?func=detail&aid=1705197&group_id=976&atid=350976
	insinto /usr/share/aclocal
	doins docs/libcurl/libcurl.m4

	dodoc CHANGES README
	dodoc docs/FEATURES docs/INTERNALS
	dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE
}

pkg_postinst() {
	if [[ -e "${ROOT}"/usr/$(get_libdir)/libcurl.so.3 ]] ; then
		elog "You must re-compile all packages that are linked against"
		elog "curl-7.15.* by using revdep-rebuild from gentoolkit:"
		elog "# revdep-rebuild --library libcurl.so.3"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-02-12 17:45 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-02-12 17:45 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/02/12 17:45:31

  Modified:             curl-7.19.3.ebuild ChangeLog
  Log:
  ppc stable #258618
  (Portage version: 2.1.6.7/cvs/Linux ppc)

Revision  Changes    Path
1.2                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?r1=1.1&r2=1.2

Index: curl-7.19.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- curl-7.19.3.ebuild	25 Jan 2009 22:03:17 -0000	1.1
+++ curl-7.19.3.ebuild	12 Feb 2009 17:45:31 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.1 2009/01/25 22:03:17 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.2 2009/02/12 17:45:31 nixnut Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT X11"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 



1.132                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.131&r2=1.132

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog	25 Jan 2009 22:03:17 -0000	1.131
+++ ChangeLog	12 Feb 2009 17:45:31 -0000	1.132
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.131 2009/01/25 22:03:17 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.132 2009/02/12 17:45:31 nixnut Exp $
+
+  12 Feb 2009; nixnut <nixnut@gentoo.org> curl-7.19.3.ebuild:
+  ppc stable #258618
 
 *curl-7.19.3 (25 Jan 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-02-12 21:34 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-12 21:34 UTC (permalink / raw
  To: gentoo-commits

jer         09/02/12 21:34:02

  Modified:             curl-7.19.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #258618).
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.3                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?r1=1.2&r2=1.3

Index: curl-7.19.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- curl-7.19.3.ebuild	12 Feb 2009 17:45:31 -0000	1.2
+++ curl-7.19.3.ebuild	12 Feb 2009 21:34:02 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.2 2009/02/12 17:45:31 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.3 2009/02/12 21:34:02 jer Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT X11"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 



1.133                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.132&r2=1.133

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog	12 Feb 2009 17:45:31 -0000	1.132
+++ ChangeLog	12 Feb 2009 21:34:02 -0000	1.133
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.132 2009/02/12 17:45:31 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.133 2009/02/12 21:34:02 jer Exp $
+
+  12 Feb 2009; Jeroen Roovers <jer@gentoo.org> curl-7.19.3.ebuild:
+  Stable for HPPA (bug #258618).
 
   12 Feb 2009; nixnut <nixnut@gentoo.org> curl-7.19.3.ebuild:
   ppc stable #258618






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-02-12 21:37 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-02-12 21:37 UTC (permalink / raw
  To: gentoo-commits

ranger      09/02/12 21:37:09

  Modified:             curl-7.19.3.ebuild ChangeLog
  Log:
  Marking curl-7.19.3 ppc64 for bug 258618
  (Portage version: 2.2_rc17/cvs/Linux 2.6.25-gentoo-r7 ppc64)

Revision  Changes    Path
1.4                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?r1=1.3&r2=1.4

Index: curl-7.19.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- curl-7.19.3.ebuild	12 Feb 2009 21:34:02 -0000	1.3
+++ curl-7.19.3.ebuild	12 Feb 2009 21:37:09 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.3 2009/02/12 21:34:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.4 2009/02/12 21:37:09 ranger Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT X11"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 



1.134                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.133&r2=1.134

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog	12 Feb 2009 21:34:02 -0000	1.133
+++ ChangeLog	12 Feb 2009 21:37:09 -0000	1.134
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.133 2009/02/12 21:34:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.134 2009/02/12 21:37:09 ranger Exp $
+
+  12 Feb 2009; Brent Baude <ranger@gentoo.org> curl-7.19.3.ebuild:
+  Marking curl-7.19.3 ppc64 for bug 258618
 
   12 Feb 2009; Jeroen Roovers <jer@gentoo.org> curl-7.19.3.ebuild:
   Stable for HPPA (bug #258618).






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-02-13 18:13 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-02-13 18:13 UTC (permalink / raw
  To: gentoo-commits

klausman    09/02/13 18:13:41

  Modified:             curl-7.19.3.ebuild ChangeLog
  Log:
  Stable on alpha, bug #258618
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?r1=1.4&r2=1.5

Index: curl-7.19.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- curl-7.19.3.ebuild	12 Feb 2009 21:37:09 -0000	1.4
+++ curl-7.19.3.ebuild	13 Feb 2009 18:13:41 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.4 2009/02/12 21:37:09 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.5 2009/02/13 18:13:41 klausman Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT X11"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 



1.135                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.134&r2=1.135

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog	12 Feb 2009 21:37:09 -0000	1.134
+++ ChangeLog	13 Feb 2009 18:13:41 -0000	1.135
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.134 2009/02/12 21:37:09 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.135 2009/02/13 18:13:41 klausman Exp $
+
+  13 Feb 2009; Tobias Klausmann <klausman@gentoo.org> curl-7.19.3.ebuild:
+  Stable on alpha, bug #258618
 
   12 Feb 2009; Brent Baude <ranger@gentoo.org> curl-7.19.3.ebuild:
   Marking curl-7.19.3 ppc64 for bug 258618






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-02-15 11:47 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-02-15 11:47 UTC (permalink / raw
  To: gentoo-commits

maekke      09/02/15 11:47:04

  Modified:             curl-7.19.3.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #258618
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?r1=1.5&r2=1.6

Index: curl-7.19.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- curl-7.19.3.ebuild	13 Feb 2009 18:13:41 -0000	1.5
+++ curl-7.19.3.ebuild	15 Feb 2009 11:47:04 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.5 2009/02/13 18:13:41 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.6 2009/02/15 11:47:04 maekke Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT X11"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 



1.136                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.135&r2=1.136

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog	13 Feb 2009 18:13:41 -0000	1.135
+++ ChangeLog	15 Feb 2009 11:47:04 -0000	1.136
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.135 2009/02/13 18:13:41 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.136 2009/02/15 11:47:04 maekke Exp $
+
+  15 Feb 2009; Markus Meier <maekke@gentoo.org> curl-7.19.3.ebuild:
+  amd64/x86 stable, bug #258618
 
   13 Feb 2009; Tobias Klausmann <klausman@gentoo.org> curl-7.19.3.ebuild:
   Stable on alpha, bug #258618






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog
@ 2009-02-17 17:12 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2009-02-17 17:12 UTC (permalink / raw
  To: gentoo-commits

armin76     09/02/17 17:12:51

  Modified:             curl-7.19.3.ebuild ChangeLog
  Log:
  arm/ia64/s390/sh/sparc stable wrt #258618
  (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 ia64)

Revision  Changes    Path
1.7                  net-misc/curl/curl-7.19.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild?r1=1.6&r2=1.7

Index: curl-7.19.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- curl-7.19.3.ebuild	15 Feb 2009 11:47:04 -0000	1.6
+++ curl-7.19.3.ebuild	17 Feb 2009 17:12:51 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.6 2009/02/15 11:47:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.3.ebuild,v 1.7 2009/02/17 17:12:51 armin76 Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT X11"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 



1.137                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/curl/ChangeLog?r1=1.136&r2=1.137

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog	15 Feb 2009 11:47:04 -0000	1.136
+++ ChangeLog	17 Feb 2009 17:12:51 -0000	1.137
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.136 2009/02/15 11:47:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.137 2009/02/17 17:12:51 armin76 Exp $
+
+  17 Feb 2009; Raúl Porcel <armin76@gentoo.org> curl-7.19.3.ebuild:
+  arm/ia64/s390/sh/sparc stable wrt #258618
 
   15 Feb 2009; Markus Meier <maekke@gentoo.org> curl-7.19.3.ebuild:
   amd64/x86 stable, bug #258618






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

end of thread, other threads:[~2009-02-17 17:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12 21:34 [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.19.3.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2009-02-17 17:12 Raul Porcel (armin76)
2009-02-15 11:47 Markus Meier (maekke)
2009-02-13 18:13 Tobias Klausmann (klausman)
2009-02-12 21:37 Brent Baude (ranger)
2009-02-12 17:45 Gysbert Wassenaar (nixnut)
2009-01-25 22:03 Daniel Black (dragonheart)

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