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.20.0-r2.ebuild
@ 2010-03-21 15:12 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 7+ messages in thread
From: Alfredo Tupone (tupone) @ 2010-03-21 15:12 UTC (permalink / raw
  To: gentoo-commits

tupone      10/03/21 15:12:17

  Modified:             ChangeLog
  Added:                curl-7.20.0-r2.ebuild
  Log:
  Fixing missing quotes in libcurl.m4
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.155                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog	16 Mar 2010 21:43:01 -0000	1.154
+++ ChangeLog	21 Mar 2010 15:12:16 -0000	1.155
@@ -1,6 +1,12 @@
 # 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.154 2010/03/16 21:43:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.155 2010/03/21 15:12:16 tupone Exp $
+
+*curl-7.20.0-r2 (21 Mar 2010)
+
+  21 Mar 2010; Tupone Alfredo <tupone@gentoo.org> +curl-7.20.0-r2.ebuild,
+  +files/curl-7.20.0-libcurlm4.patch:
+  Fixing missing quotes in libcurl.m4
 
 *curl-7.20.0-r1 (16 Mar 2010)
 



1.1                  net-misc/curl/curl-7.20.0-r2.ebuild

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

Index: curl-7.20.0-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.1 2010/03/21 15:12:16 tupone 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"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="ares gnutls idn ipv6 kerberos ldap libssh2 nss ssl test"

RDEPEND="ldap? ( net-nds/openldap )
	ssl? (
		gnutls? ( net-libs/gnutls app-misc/ca-certificates )
		nss? ( !gnutls? ( dev-libs/nss app-misc/ca-certificates ) )
		!gnutls? ( !nss? ( dev-libs/openssl ) )
	)
	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

pkg_setup() {
	if ! use ssl && ( use gnutls || use nss ) ; then
		ewarn "USE='gnutls nss' are ignored without USE='ssl'."
		ewarn "Please review the local USE flags for this package."
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${P}-strip-ldflags.patch
	epatch "${FILESDIR}"/${PN}-7.19.7-test241.patch \
		"${FILESDIR}"/${P}-libcurlm4.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)
		$(use_enable ares)
		--enable-http
		--enable-ftp
		--enable-gopher
		--enable-file
		--enable-dict
		--enable-manual
		--enable-telnet
		--enable-smtp
		--enable-pop3
		--enable-imap
		--enable-rtsp
		--enable-nonblocking
		--enable-largefile
		--enable-maintainer-mode
		--disable-sspi
		--without-krb4
		--without-spnego"

	if use ssl ; then
		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"
		else
			myconf="${myconf} --without-gnutls --without-nss --with-ssl"
			myconf="${myconf} --without-ca-bundle --with-ca-path=/etc/ssl/certs"
		fi
	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] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild
@ 2010-04-26  9:10 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-04-26  9:10 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/04/26 09:10:54

  Modified:             ChangeLog curl-7.20.0-r2.ebuild
  Log:
  x86 stable wrt bug #315507
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.157                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -r1.156 -r1.157
--- ChangeLog	15 Apr 2010 20:55:42 -0000	1.156
+++ ChangeLog	26 Apr 2010 09:10:54 -0000	1.157
@@ -1,6 +1,10 @@
 # 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.156 2010/04/15 20:55:42 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.157 2010/04/26 09:10:54 phajdan.jr Exp $
+
+  26 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  curl-7.20.0-r2.ebuild:
+  x86 stable wrt bug #315507
 
 *curl-7.20.1 (15 Apr 2010)
 



1.2                  net-misc/curl/curl-7.20.0-r2.ebuild

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

Index: curl-7.20.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- curl-7.20.0-r2.ebuild	21 Mar 2010 15:12:16 -0000	1.1
+++ curl-7.20.0-r2.ebuild	26 Apr 2010 09:10:54 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.1 2010/03/21 15:12:16 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.2 2010/04/26 09:10:54 phajdan.jr Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 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="ares gnutls idn ipv6 kerberos ldap libssh2 nss ssl test"
 
 RDEPEND="ldap? ( net-nds/openldap )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild
@ 2010-05-08 17:49 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-05-08 17:49 UTC (permalink / raw
  To: gentoo-commits

jer         10/05/08 17:49:34

  Modified:             ChangeLog curl-7.20.0-r2.ebuild
  Log:
  Stable for HPPA (bug #315507).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.158                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog	26 Apr 2010 09:10:54 -0000	1.157
+++ ChangeLog	8 May 2010 17:49:34 -0000	1.158
@@ -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.157 2010/04/26 09:10:54 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.158 2010/05/08 17:49:34 jer Exp $
+
+  08 May 2010; Jeroen Roovers <jer@gentoo.org> curl-7.20.0-r2.ebuild:
+  Stable for HPPA (bug #315507).
 
   26 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   curl-7.20.0-r2.ebuild:



1.3                  net-misc/curl/curl-7.20.0-r2.ebuild

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

Index: curl-7.20.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- curl-7.20.0-r2.ebuild	26 Apr 2010 09:10:54 -0000	1.2
+++ curl-7.20.0-r2.ebuild	8 May 2010 17:49:34 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.2 2010/04/26 09:10:54 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.3 2010/05/08 17:49:34 jer Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 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="ares gnutls idn ipv6 kerberos ldap libssh2 nss ssl test"
 
 RDEPEND="ldap? ( net-nds/openldap )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild
@ 2010-05-11 20:58 Joseph Jezak (josejx)
  0 siblings, 0 replies; 7+ messages in thread
From: Joseph Jezak (josejx) @ 2010-05-11 20:58 UTC (permalink / raw
  To: gentoo-commits

josejx      10/05/11 20:58:16

  Modified:             ChangeLog curl-7.20.0-r2.ebuild
  Log:
  Marked ppc/ppc64 stable for bug #315507.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.159                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- ChangeLog	8 May 2010 17:49:34 -0000	1.158
+++ ChangeLog	11 May 2010 20:58:16 -0000	1.159
@@ -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.158 2010/05/08 17:49:34 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.159 2010/05/11 20:58:16 josejx Exp $
+
+  11 May 2010; Joseph Jezak <josejx@gentoo.org> curl-7.20.0-r2.ebuild:
+  Marked ppc/ppc64 stable for bug #315507.
 
   08 May 2010; Jeroen Roovers <jer@gentoo.org> curl-7.20.0-r2.ebuild:
   Stable for HPPA (bug #315507).



1.4                  net-misc/curl/curl-7.20.0-r2.ebuild

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

Index: curl-7.20.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- curl-7.20.0-r2.ebuild	8 May 2010 17:49:34 -0000	1.3
+++ curl-7.20.0-r2.ebuild	11 May 2010 20:58:16 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.3 2010/05/08 17:49:34 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.4 2010/05/11 20:58:16 josejx Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 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="ares gnutls idn ipv6 kerberos ldap libssh2 nss ssl test"
 
 RDEPEND="ldap? ( net-nds/openldap )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild
@ 2010-05-22 20:59 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-05-22 20:59 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/05/22 20:59:56

  Modified:             ChangeLog curl-7.20.0-r2.ebuild
  Log:
  amd64 stable (tested by rullzer) (bug #315507).
  (Portage version: HEAD/cvs/Linux x86_64)

Revision  Changes    Path
1.160                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog	11 May 2010 20:58:16 -0000	1.159
+++ ChangeLog	22 May 2010 20:59:55 -0000	1.160
@@ -1,6 +1,10 @@
 # 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.159 2010/05/11 20:58:16 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.160 2010/05/22 20:59:55 arfrever Exp $
+
+  22 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  curl-7.20.0-r2.ebuild:
+  amd64 stable (tested by rullzer) (bug #315507).
 
   11 May 2010; Joseph Jezak <josejx@gentoo.org> curl-7.20.0-r2.ebuild:
   Marked ppc/ppc64 stable for bug #315507.



1.5                  net-misc/curl/curl-7.20.0-r2.ebuild

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

Index: curl-7.20.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- curl-7.20.0-r2.ebuild	11 May 2010 20:58:16 -0000	1.4
+++ curl-7.20.0-r2.ebuild	22 May 2010 20:59:55 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.4 2010/05/11 20:58:16 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.5 2010/05/22 20:59:55 arfrever Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 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="ares gnutls idn ipv6 kerberos ldap libssh2 nss ssl test"
 
 RDEPEND="ldap? ( net-nds/openldap )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild
@ 2010-07-03 14:09 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-03 14:09 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/03 14:09:40

  Modified:             ChangeLog curl-7.20.0-r2.ebuild
  Log:
  alpha/arm/ia64/s390/sh/sparc stable wrt #308645
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.164                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	2 Jul 2010 13:33:38 -0000	1.163
+++ ChangeLog	3 Jul 2010 14:09:40 -0000	1.164
@@ -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.163 2010/07/02 13:33:38 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.164 2010/07/03 14:09:40 armin76 Exp $
+
+  03 Jul 2010; Raúl Porcel <armin76@gentoo.org> curl-7.20.0-r2.ebuild:
+  alpha/arm/ia64/s390/sh/sparc stable wrt #308645
 
   02 Jul 2010; Dror Levin <spatz@gentoo.org> curl-7.21.0.ebuild:
   Don't die on USE="ares threads", silently disable ares instead, bug



1.6                  net-misc/curl/curl-7.20.0-r2.ebuild

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

Index: curl-7.20.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- curl-7.20.0-r2.ebuild	22 May 2010 20:59:55 -0000	1.5
+++ curl-7.20.0-r2.ebuild	3 Jul 2010 14:09:40 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.5 2010/05/22 20:59:55 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.20.0-r2.ebuild,v 1.6 2010/07/03 14:09:40 armin76 Exp $
 
 # NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
 
@@ -15,7 +15,7 @@
 
 LICENSE="MIT"
 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="ares gnutls idn ipv6 kerberos ldap libssh2 nss ssl test"
 
 RDEPEND="ldap? ( net-nds/openldap )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild
@ 2011-06-12 16:45 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 7+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-06-12 16:45 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/06/12 16:45:13

  Modified:             ChangeLog
  Removed:              curl-7.20.0-r2.ebuild
  Log:
  Remove overshadowed old version and patches.
  
  (Portage version: 2.2.0_alpha39/cvs/Linux x86_64)

Revision  Changes    Path
1.183                net-misc/curl/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog	12 Jun 2011 14:39:31 -0000	1.182
+++ ChangeLog	12 Jun 2011 16:45:13 -0000	1.183
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.182 2011/06/12 14:39:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.183 2011/06/12 16:45:13 scarabeus Exp $
+
+  12 Jun 2011; Tomáš Chvátal <scarabeus@gentoo.org> -curl-7.20.0-r2.ebuild,
+  -files/curl-7.20.0-libcurlm4.patch, -files/curl-7.21.3-buffer-overflow.patch:
+  Remove overshadowed old version and patches.
 
   12 Jun 2011; Raúl Porcel <armin76@gentoo.org> curl-7.21.4.ebuild:
   ia64/s390/sh/sparc stable wrt #355595






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

end of thread, other threads:[~2011-06-12 16:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-21 15:12 [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.20.0-r2.ebuild Alfredo Tupone (tupone)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-26  9:10 PaweA Hajdan (phajdan.jr)
2010-05-08 17:49 Jeroen Roovers (jer)
2010-05-11 20:58 Joseph Jezak (josejx)
2010-05-22 20:59 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-07-03 14:09 Raul Porcel (armin76)
2011-06-12 16:45 Tomas Chvatal (scarabeus)

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