public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-08-19 22:30 Alex Legler (a3li)
  0 siblings, 0 replies; 9+ messages in thread
From: Alex Legler (a3li) @ 2009-08-19 22:30 UTC (permalink / raw
  To: gentoo-commits

a3li        09/08/19 22:30:33

  Modified:             ChangeLog
  Added:                curl-7.19.6.ebuild
  Log:
  Non-maintaner commit: Version bump for security bug 281515. Tests run fine on ~amd64 and git and claws-mail-rssyl build fine against it.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.143                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	8 Mar 2009 00:05:08 -0000	1.142
+++ ChangeLog	19 Aug 2009 22:30:33 -0000	1.143
@@ -1,6 +1,12 @@
 # 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.142 2009/03/08 00:05:08 dragonheart Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.143 2009/08/19 22:30:33 a3li Exp $
+
+*curl-7.19.6 (19 Aug 2009)
+
+  19 Aug 2009; Alex Legler <a3li@gentoo.org> +curl-7.19.6.ebuild:
+  Non-maintaner commit: Version bump for security bug 281515. Tests run fine
+  on ~amd64 and git and claws-mail-rssyl build fine against it.
 
   08 Mar 2009; Daniel Black <dragonheart@gentoo.org>
   -files/curl-7.15.1-test62.patch, -files/curl-7.15-strip-ldflags.patch,



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

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

Index: curl-7.19.6.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.6.ebuild,v 1.1 2009/08/19 22:30:33 a3li 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 ~x86 ~sparc-fbsd ~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
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-08-20 12:46 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2009-08-20 12:46 UTC (permalink / raw
  To: gentoo-commits

jer         09/08/20 12:46:44

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  Stable for HPPA (bug #281950).
  (Portage version: 2.2_rc38/cvs/Linux i686)

Revision  Changes    Path
1.144                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	19 Aug 2009 22:30:33 -0000	1.143
+++ ChangeLog	20 Aug 2009 12:46:44 -0000	1.144
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.143 2009/08/19 22:30:33 a3li Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.144 2009/08/20 12:46:44 jer Exp $
+
+  20 Aug 2009; Jeroen Roovers <jer@gentoo.org> curl-7.19.6.ebuild:
+  Stable for HPPA (bug #281950).
 
 *curl-7.19.6 (19 Aug 2009)
 



1.2                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- curl-7.19.6.ebuild	19 Aug 2009 22:30:33 -0000	1.1
+++ curl-7.19.6.ebuild	20 Aug 2009 12:46:44 -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.6.ebuild,v 1.1 2009/08/19 22:30:33 a3li Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.2 2009/08/20 12:46:44 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 ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 






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

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

nixnut      09/08/23 09:02:46

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  ppc stable #281515
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.145                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.144
retrieving revision 1.145
diff -u -r1.144 -r1.145
--- ChangeLog	20 Aug 2009 12:46:44 -0000	1.144
+++ ChangeLog	23 Aug 2009 09:02:45 -0000	1.145
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.144 2009/08/20 12:46:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.145 2009/08/23 09:02:45 nixnut Exp $
+
+  23 Aug 2009; nixnut <nixnut@gentoo.org> curl-7.19.6.ebuild:
+  ppc stable #281515
 
   20 Aug 2009; Jeroen Roovers <jer@gentoo.org> curl-7.19.6.ebuild:
   Stable for HPPA (bug #281950).



1.3                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- curl-7.19.6.ebuild	20 Aug 2009 12:46:44 -0000	1.2
+++ curl-7.19.6.ebuild	23 Aug 2009 09:02:45 -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.6.ebuild,v 1.2 2009/08/20 12:46:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.3 2009/08/23 09:02:45 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 ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-08-25 14:54 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-08-25 14:54 UTC (permalink / raw
  To: gentoo-commits

fauli       09/08/25 14:54:44

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  stable x86, security bug 281515
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.146                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	23 Aug 2009 09:02:45 -0000	1.145
+++ ChangeLog	25 Aug 2009 14:54:44 -0000	1.146
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.145 2009/08/23 09:02:45 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.146 2009/08/25 14:54:44 fauli Exp $
+
+  25 Aug 2009; Christian Faulhammer <fauli@gentoo.org> curl-7.19.6.ebuild:
+  stable x86, security bug 281515
 
   23 Aug 2009; nixnut <nixnut@gentoo.org> curl-7.19.6.ebuild:
   ppc stable #281515



1.4                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- curl-7.19.6.ebuild	23 Aug 2009 09:02:45 -0000	1.3
+++ curl-7.19.6.ebuild	25 Aug 2009 14:54:44 -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.6.ebuild,v 1.3 2009/08/23 09:02:45 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.4 2009/08/25 14:54:44 fauli 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 ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-08-25 15:41 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-08-25 15:41 UTC (permalink / raw
  To: gentoo-commits

klausman    09/08/25 15:41:01

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  Stable on alpha, bug #281515
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.147                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog	25 Aug 2009 14:54:44 -0000	1.146
+++ ChangeLog	25 Aug 2009 15:41:01 -0000	1.147
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.146 2009/08/25 14:54:44 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.147 2009/08/25 15:41:01 klausman Exp $
+
+  25 Aug 2009; Tobias Klausmann <klausman@gentoo.org> curl-7.19.6.ebuild:
+  Stable on alpha, bug #281515
 
   25 Aug 2009; Christian Faulhammer <fauli@gentoo.org> curl-7.19.6.ebuild:
   stable x86, security bug 281515



1.5                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- curl-7.19.6.ebuild	25 Aug 2009 14:54:44 -0000	1.4
+++ curl-7.19.6.ebuild	25 Aug 2009 15:41:01 -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.6.ebuild,v 1.4 2009/08/25 14:54:44 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.5 2009/08/25 15:41:01 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 x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-08-26 13:46 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2009-08-26 13:46 UTC (permalink / raw
  To: gentoo-commits

armin76     09/08/26 13:46:13

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  arm/ia64/s390/sh/sparc stable wrt #281515
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.148                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	25 Aug 2009 15:41:01 -0000	1.147
+++ ChangeLog	26 Aug 2009 13:46:13 -0000	1.148
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.147 2009/08/25 15:41:01 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.148 2009/08/26 13:46:13 armin76 Exp $
+
+  26 Aug 2009; Raúl Porcel <armin76@gentoo.org> curl-7.19.6.ebuild:
+  arm/ia64/s390/sh/sparc stable wrt #281515
 
   25 Aug 2009; Tobias Klausmann <klausman@gentoo.org> curl-7.19.6.ebuild:
   Stable on alpha, bug #281515



1.6                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- curl-7.19.6.ebuild	25 Aug 2009 15:41:01 -0000	1.5
+++ curl-7.19.6.ebuild	26 Aug 2009 13:46:13 -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.6.ebuild,v 1.5 2009/08/25 15:41:01 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.6 2009/08/26 13:46:13 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 x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-08-27 20:07 Steve Dibb (beandog)
  0 siblings, 0 replies; 9+ messages in thread
From: Steve Dibb (beandog) @ 2009-08-27 20:07 UTC (permalink / raw
  To: gentoo-commits

beandog     09/08/27 20:07:35

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  amd64 stable, bug 281515
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.149                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog	26 Aug 2009 13:46:13 -0000	1.148
+++ ChangeLog	27 Aug 2009 20:07:35 -0000	1.149
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.148 2009/08/26 13:46:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.149 2009/08/27 20:07:35 beandog Exp $
+
+  27 Aug 2009; Steve Dibb <beandog@gentoo.org> curl-7.19.6.ebuild:
+  amd64 stable, bug 281515
 
   26 Aug 2009; Raúl Porcel <armin76@gentoo.org> curl-7.19.6.ebuild:
   arm/ia64/s390/sh/sparc stable wrt #281515



1.7                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- curl-7.19.6.ebuild	26 Aug 2009 13:46:13 -0000	1.6
+++ curl-7.19.6.ebuild	27 Aug 2009 20:07:35 -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.6.ebuild,v 1.6 2009/08/26 13:46:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.7 2009/08/27 20:07:35 beandog 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 x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
 #IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
 IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2009-09-13 12:36 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2009-09-13 12:36 UTC (permalink / raw
  To: gentoo-commits

ranger      09/09/13 12:36:08

  Modified:             ChangeLog curl-7.19.6.ebuild
  Log:
  Marking curl-7.19.6 ppc64 for bug 281515
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.150                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog	27 Aug 2009 20:07:35 -0000	1.149
+++ ChangeLog	13 Sep 2009 12:36:08 -0000	1.150
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.149 2009/08/27 20:07:35 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.150 2009/09/13 12:36:08 ranger Exp $
+
+  13 Sep 2009; Brent Baude <ranger@gentoo.org> curl-7.19.6.ebuild:
+  Marking curl-7.19.6 ppc64 for bug 281515
 
   27 Aug 2009; Steve Dibb <beandog@gentoo.org> curl-7.19.6.ebuild:
   amd64 stable, bug 281515



1.8                  net-misc/curl/curl-7.19.6.ebuild

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

Index: curl-7.19.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- curl-7.19.6.ebuild	27 Aug 2009 20:07:35 -0000	1.7
+++ curl-7.19.6.ebuild	13 Sep 2009 12:36:08 -0000	1.8
@@ -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.6.ebuild,v 1.7 2009/08/27 20:07:35 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.19.6.ebuild,v 1.8 2009/09/13 12:36:08 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 x86 ~sparc-fbsd ~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"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild
@ 2010-07-03 14:17 Dror Levin (spatz)
  0 siblings, 0 replies; 9+ messages in thread
From: Dror Levin (spatz) @ 2010-07-03 14:17 UTC (permalink / raw
  To: gentoo-commits

spatz       10/07/03 14:17:25

  Modified:             ChangeLog
  Removed:              curl-7.19.6.ebuild
  Log:
  Remove vulnerable version, bug 308645.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.165                net-misc/curl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.165&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.165&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.164&r2=1.165

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog	3 Jul 2010 14:09:40 -0000	1.164
+++ ChangeLog	3 Jul 2010 14:17:25 -0000	1.165
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.164 2010/07/03 14:09:40 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.165 2010/07/03 14:17:25 spatz Exp $
+
+  03 Jul 2010; Dror Levin <spatz@gentoo.org> -curl-7.19.6.ebuild:
+  Remove vulnerable version, bug 308645.
 
   03 Jul 2010; Raúl Porcel <armin76@gentoo.org> curl-7.20.0-r2.ebuild:
   alpha/arm/ia64/s390/sh/sparc stable wrt #308645






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

end of thread, other threads:[~2010-07-03 14:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-03 14:17 [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.19.6.ebuild Dror Levin (spatz)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-13 12:36 Brent Baude (ranger)
2009-08-27 20:07 Steve Dibb (beandog)
2009-08-26 13:46 Raul Porcel (armin76)
2009-08-25 15:41 Tobias Klausmann (klausman)
2009-08-25 14:54 Christian Faulhammer (fauli)
2009-08-23  9:02 Gysbert Wassenaar (nixnut)
2009-08-20 12:46 Jeroen Roovers (jer)
2009-08-19 22:30 Alex Legler (a3li)

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