* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-01-26 19:41 Mike Frysinger (vapier)
0 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger (vapier) @ 2012-01-26 19:41 UTC (permalink / raw
To: gentoo-commits
vapier 12/01/26 19:41:53
Modified: ChangeLog
Added: curl-7.24.0.ebuild
Log:
Version bump #400799.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.198 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.198&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.198&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.197&r2=1.198
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog 26 Jan 2012 19:20:26 -0000 1.197
+++ ChangeLog 26 Jan 2012 19:41:53 -0000 1.198
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.197 2012/01/26 19:20:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.198 2012/01/26 19:41:53 vapier Exp $
+
+*curl-7.24.0 (26 Jan 2012)
+
+ 26 Jan 2012; Mike Frysinger <vapier@gentoo.org> +curl-7.24.0.ebuild:
+ Version bump #400799.
26 Jan 2012; Mike Frysinger <vapier@gentoo.org> curl-7.21.4.ebuild,
curl-7.21.6.ebuild, curl-7.21.7.ebuild, curl-7.21.7-r2.ebuild,
1.1 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.1&content-type=text/plain
Index: curl-7.24.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.1 2012/01/26 19:41:53 vapier Exp $
EAPI="4"
inherit autotools eutils prefix
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/"
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 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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="ares gnutls idn ipv6 kerberos ldap nss ssh ssl static-libs test threads"
RDEPEND="ldap? ( net-nds/openldap )
gnutls? ( net-libs/gnutls dev-libs/libgcrypt app-misc/ca-certificates )
ssl? ( !gnutls? ( dev-libs/openssl ) )
nss? ( !gnutls? ( !ssl? ( dev-libs/nss app-misc/ca-certificates ) ) )
idn? ( net-dns/libidn )
ares? ( >=net-dns/c-ares-1.6 )
kerberos? ( virtual/krb5 )
ssh? ( >=net-libs/libssh2-0.16 )"
# rtmpdump ( media-video/rtmpdump ) / --with-librtmp
# fbopenssl (not in gentoo) --with-spnego
# krb4 http://web.mit.edu/kerberos/www/krb4-end-of-life.html
DEPEND="${RDEPEND}
sys-apps/ed
dev-util/pkgconfig
test? (
sys-apps/diffutils
dev-lang/perl
)"
# used - but can do without in self test: net-misc/stunnel
# ares must be disabled for threads and both can be disabled
# one can use wether gnutls or nss if ssl is enabled
REQUIRED_USE="threads? ( !ares )
nss? ( !gnutls )"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-7.20.0-strip-ldflags.patch \
"${FILESDIR}"/${PN}-7.19.7-test241.patch \
"${FILESDIR}"/${PN}-7.18.2-prefix.patch \
"${FILESDIR}"/${PN}-respect-cflags-3.patch
sed -i '/LD_LIBRARY_PATH=/d' configure.ac || die #382241
eprefixify curl-config.in
eautoreconf
}
src_configure() {
local myconf=()
if use gnutls; then
myconf+=( --without-ssl --with-gnutls --without-nss )
myconf+=( --with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt )
elif use ssl; then
myconf+=( --with-ssl --without-gnutls --without-nss )
myconf+=( --without-ca-bundle --with-ca-path="${EPREFIX}"/etc/ssl/certs )
elif use nss; then
myconf+=( --without-ssl --without-gnutls --with-nss )
myconf+=( --with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt )
else
myconf+=( --without-ssl --without-gnutls --without-nss )
fi
econf \
$(use_enable ldap) \
$(use_enable ldap ldaps) \
$(use_with idn libidn) \
$(use_with kerberos gssapi "${EPREFIX}"/usr) \
$(use_with ssh libssh2) \
$(use_enable static-libs static) \
$(use_enable ipv6) \
$(use_enable threads threaded-resolver) \
$(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-librtmp \
--without-spnego \
"${myconf[@]}"
}
src_compile() {
default
ed - lib/curl_config.h < "${FILESDIR}"/config.h.ed || die
ed - src/curl_config.h < "${FILESDIR}"/config.h.ed || die
ed - include/curl/curlbuild.h < "${FILESDIR}"/curlbuild.h.ed || die
}
src_install() {
default
find "${ED}" -name '*.la' -delete
rm -rf "${ED}"/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.24.0.ebuild
@ 2012-01-28 17:26 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2012-01-28 17:26 UTC (permalink / raw
To: gentoo-commits
jer 12/01/28 17:26:03
Modified: ChangeLog curl-7.24.0.ebuild
Log:
Stable for HPPA (bug #400799).
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.200 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.200&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.200&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.199&r2=1.200
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- ChangeLog 27 Jan 2012 13:26:35 -0000 1.199
+++ ChangeLog 28 Jan 2012 17:26:03 -0000 1.200
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.199 2012/01/27 13:26:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.200 2012/01/28 17:26:03 jer Exp $
+
+ 28 Jan 2012; Jeroen Roovers <jer@gentoo.org> curl-7.24.0.ebuild:
+ Stable for HPPA (bug #400799).
27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> curl-7.24.0.ebuild:
Stable for AMD64, wrt security bug #400799
1.3 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.2&r2=1.3
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- curl-7.24.0.ebuild 27 Jan 2012 13:26:35 -0000 1.2
+++ curl-7.24.0.ebuild 28 Jan 2012 17:26:03 -0000 1.3
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.2 2012/01/27 13:26:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.3 2012/01/28 17:26:03 jer Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 ~x64-freebsd ~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="ares gnutls idn ipv6 kerberos ldap nss ssh ssl static-libs test threads"
RDEPEND="ldap? ( net-nds/openldap )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-01-29 12:22 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-01-29 12:22 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 12/01/29 12:22:55
Modified: ChangeLog curl-7.24.0.ebuild
Log:
x86 stable wrt bug #400799
(Portage version: 2.1.10.44/cvs/Linux i686)
Revision Changes Path
1.201 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.201&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.201&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.200&r2=1.201
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog 28 Jan 2012 17:26:03 -0000 1.200
+++ ChangeLog 29 Jan 2012 12:22:55 -0000 1.201
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.200 2012/01/28 17:26:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.201 2012/01/29 12:22:55 phajdan.jr Exp $
+
+ 29 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> curl-7.24.0.ebuild:
+ x86 stable wrt bug #400799
28 Jan 2012; Jeroen Roovers <jer@gentoo.org> curl-7.24.0.ebuild:
Stable for HPPA (bug #400799).
1.4 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.3&r2=1.4
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- curl-7.24.0.ebuild 28 Jan 2012 17:26:03 -0000 1.3
+++ curl-7.24.0.ebuild 29 Jan 2012 12:22:55 -0000 1.4
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.3 2012/01/28 17:26:03 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.4 2012/01/29 12:22:55 phajdan.jr Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 ~x64-freebsd ~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="ares gnutls idn ipv6 kerberos ldap nss ssh ssl static-libs test threads"
RDEPEND="ldap? ( net-nds/openldap )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-02-01 17:22 Brent Baude (ranger)
0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2012-02-01 17:22 UTC (permalink / raw
To: gentoo-commits
ranger 12/02/01 17:22:37
Modified: ChangeLog curl-7.24.0.ebuild
Log:
Marking curl-7.24.0 ppc for bug 400799
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.202 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.202&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.202&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.201&r2=1.202
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -r1.201 -r1.202
--- ChangeLog 29 Jan 2012 12:22:55 -0000 1.201
+++ ChangeLog 1 Feb 2012 17:22:37 -0000 1.202
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.201 2012/01/29 12:22:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.202 2012/02/01 17:22:37 ranger Exp $
+
+ 01 Feb 2012; Brent Baude <ranger@gentoo.org> curl-7.24.0.ebuild:
+ Marking curl-7.24.0 ppc for bug 400799
29 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> curl-7.24.0.ebuild:
x86 stable wrt bug #400799
1.5 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.4&r2=1.5
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- curl-7.24.0.ebuild 29 Jan 2012 12:22:55 -0000 1.4
+++ curl-7.24.0.ebuild 1 Feb 2012 17:22:37 -0000 1.5
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.4 2012/01/29 12:22:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.5 2012/02/01 17:22:37 ranger Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 ~x64-freebsd ~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="ares gnutls idn ipv6 kerberos ldap nss ssh ssl static-libs test threads"
RDEPEND="ldap? ( net-nds/openldap )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-02-04 15:30 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2012-02-04 15:30 UTC (permalink / raw
To: gentoo-commits
armin76 12/02/04 15:30:56
Modified: ChangeLog curl-7.24.0.ebuild
Log:
alpha/arm/ia64/s390/sh/sparc stable wrt #400799
(Portage version: 2.1.10.44/cvs/Linux ia64)
Revision Changes Path
1.203 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.203&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.203&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.202&r2=1.203
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- ChangeLog 1 Feb 2012 17:22:37 -0000 1.202
+++ ChangeLog 4 Feb 2012 15:30:56 -0000 1.203
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.202 2012/02/01 17:22:37 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.203 2012/02/04 15:30:56 armin76 Exp $
+
+ 04 Feb 2012; Raúl Porcel <armin76@gentoo.org> curl-7.24.0.ebuild:
+ alpha/arm/ia64/s390/sh/sparc stable wrt #400799
01 Feb 2012; Brent Baude <ranger@gentoo.org> curl-7.24.0.ebuild:
Marking curl-7.24.0 ppc for bug 400799
1.6 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.5&r2=1.6
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- curl-7.24.0.ebuild 1 Feb 2012 17:22:37 -0000 1.5
+++ curl-7.24.0.ebuild 4 Feb 2012 15:30:56 -0000 1.6
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.5 2012/02/01 17:22:37 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.6 2012/02/04 15:30:56 armin76 Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 ~x64-freebsd ~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="ares gnutls idn ipv6 kerberos ldap nss ssh ssl static-libs test threads"
RDEPEND="ldap? ( net-nds/openldap )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-03-03 15:30 Brent Baude (ranger)
0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2012-03-03 15:30 UTC (permalink / raw
To: gentoo-commits
ranger 12/03/03 15:30:40
Modified: ChangeLog curl-7.24.0.ebuild
Log:
Marking curl-7.24.0 ppc64 for bug 400799
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.204 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.204&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.204&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.203&r2=1.204
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -r1.203 -r1.204
--- ChangeLog 4 Feb 2012 15:30:56 -0000 1.203
+++ ChangeLog 3 Mar 2012 15:30:40 -0000 1.204
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.203 2012/02/04 15:30:56 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.204 2012/03/03 15:30:40 ranger Exp $
+
+ 03 Mar 2012; Brent Baude <ranger@gentoo.org> curl-7.24.0.ebuild:
+ Marking curl-7.24.0 ppc64 for bug 400799
04 Feb 2012; Raúl Porcel <armin76@gentoo.org> curl-7.24.0.ebuild:
alpha/arm/ia64/s390/sh/sparc stable wrt #400799
1.7 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.6&r2=1.7
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- curl-7.24.0.ebuild 4 Feb 2012 15:30:56 -0000 1.6
+++ curl-7.24.0.ebuild 3 Mar 2012 15:30:40 -0000 1.7
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.6 2012/02/04 15:30:56 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.7 2012/03/03 15:30:40 ranger Exp $
EAPI="4"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~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 ~x64-freebsd ~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="ares gnutls idn ipv6 kerberos ldap nss ssh ssl static-libs test threads"
RDEPEND="ldap? ( net-nds/openldap )
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-03-31 16:59 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-31 16:59 UTC (permalink / raw
To: gentoo-commits
blueness 12/03/31 16:59:21
Modified: ChangeLog curl-7.24.0.ebuild
Log:
Backport of REQUIRED_USE zero or one of gnutls/ssl/nss, bug #410305
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.210 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.210&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.210&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.209&r2=1.210
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog 31 Mar 2012 14:11:13 -0000 1.209
+++ ChangeLog 31 Mar 2012 16:59:20 -0000 1.210
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.209 2012/03/31 14:11:13 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.210 2012/03/31 16:59:20 blueness Exp $
+
+ 31 Mar 2012; Anthony G. Basile <blueness@gentoo.org> curl-7.24.0.ebuild:
+ Backport of REQUIRED_USE zero or one of gnutls/ssl/nss, bug #410305
31 Mar 2012; Anthony G. Basile <blueness@gentoo.org> curl-7.25.0.ebuild:
Use REQUIRED_USE for gnutls/ssl/nss, bug #410305
1.8 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.7&r2=1.8
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- curl-7.24.0.ebuild 3 Mar 2012 15:30:40 -0000 1.7
+++ curl-7.24.0.ebuild 31 Mar 2012 16:59:20 -0000 1.8
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.7 2012/03/03 15:30:40 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.8 2012/03/31 16:59:20 blueness Exp $
EAPI="4"
@@ -17,8 +17,8 @@
RDEPEND="ldap? ( net-nds/openldap )
gnutls? ( net-libs/gnutls dev-libs/libgcrypt app-misc/ca-certificates )
- ssl? ( !gnutls? ( dev-libs/openssl ) )
- nss? ( !gnutls? ( !ssl? ( dev-libs/nss app-misc/ca-certificates ) ) )
+ ssl? ( dev-libs/openssl )
+ nss? ( dev-libs/nss app-misc/ca-certificates )
idn? ( net-dns/libidn )
ares? ( >=net-dns/c-ares-1.6 )
kerberos? ( virtual/krb5 )
@@ -37,10 +37,12 @@
)"
# used - but can do without in self test: net-misc/stunnel
-# ares must be disabled for threads and both can be disabled
-# one can use wether gnutls or nss if ssl is enabled
+# ares must be disabled for threads
+# only zero or one of gnutls, ssl, nss, bug #410305
REQUIRED_USE="threads? ( !ares )
- nss? ( !gnutls )"
+ gnutls? ( !ssl !nss )
+ ssl? ( !nss !gnutls )
+ nss? ( !gnutls !ssl )"
src_prepare() {
epatch \
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-03-31 18:31 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-31 18:31 UTC (permalink / raw
To: gentoo-commits
blueness 12/03/31 18:31:54
Modified: ChangeLog curl-7.24.0.ebuild
Log:
Reverting backport REQUIRED_USE as ssl should refer to any ssl provider
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.211 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.211&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.211&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.210&r2=1.211
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog 31 Mar 2012 16:59:20 -0000 1.210
+++ ChangeLog 31 Mar 2012 18:31:54 -0000 1.211
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.210 2012/03/31 16:59:20 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.211 2012/03/31 18:31:54 blueness Exp $
+
+ 31 Mar 2012; Anthony G. Basile <blueness@gentoo.org> curl-7.24.0.ebuild:
+ Reverting backport REQUIRED_USE as ssl should refer to any ssl provider,
+ not just openssl. Waiting for a better fix.
31 Mar 2012; Anthony G. Basile <blueness@gentoo.org> curl-7.24.0.ebuild:
Backport of REQUIRED_USE zero or one of gnutls/ssl/nss, bug #410305
1.9 net-misc/curl/curl-7.24.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild?r1=1.8&r2=1.9
Index: curl-7.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- curl-7.24.0.ebuild 31 Mar 2012 16:59:20 -0000 1.8
+++ curl-7.24.0.ebuild 31 Mar 2012 18:31:54 -0000 1.9
@@ -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-misc/curl/curl-7.24.0.ebuild,v 1.8 2012/03/31 16:59:20 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.24.0.ebuild,v 1.9 2012/03/31 18:31:54 blueness Exp $
EAPI="4"
@@ -17,8 +17,8 @@
RDEPEND="ldap? ( net-nds/openldap )
gnutls? ( net-libs/gnutls dev-libs/libgcrypt app-misc/ca-certificates )
- ssl? ( dev-libs/openssl )
- nss? ( dev-libs/nss app-misc/ca-certificates )
+ ssl? ( !gnutls? ( dev-libs/openssl ) )
+ nss? ( !gnutls? ( !ssl? ( dev-libs/nss app-misc/ca-certificates ) ) )
idn? ( net-dns/libidn )
ares? ( >=net-dns/c-ares-1.6 )
kerberos? ( virtual/krb5 )
@@ -37,12 +37,10 @@
)"
# used - but can do without in self test: net-misc/stunnel
-# ares must be disabled for threads
-# only zero or one of gnutls, ssl, nss, bug #410305
+# ares must be disabled for threads and both can be disabled
+# one can use wether gnutls or nss if ssl is enabled
REQUIRED_USE="threads? ( !ares )
- gnutls? ( !ssl !nss )
- ssl? ( !nss !gnutls )
- nss? ( !gnutls !ssl )"
+ nss? ( !gnutls )"
src_prepare() {
epatch \
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild
@ 2012-09-03 12:31 Anthony G. Basile (blueness)
0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-09-03 12:31 UTC (permalink / raw
To: gentoo-commits
blueness 12/09/03 12:31:16
Modified: ChangeLog
Removed: curl-7.24.0.ebuild
Log:
Remove older stable, bug #433281
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.248 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.248&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.248&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.247&r2=1.248
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -r1.247 -r1.248
--- ChangeLog 2 Sep 2012 13:19:38 -0000 1.247
+++ ChangeLog 3 Sep 2012 12:31:16 -0000 1.248
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.247 2012/09/02 13:19:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.248 2012/09/03 12:31:16 blueness Exp $
+
+ 03 Sep 2012; Anthony G. Basile <blueness@gentoo.org> -curl-7.24.0.ebuild:
+ Remove older stable, bug #433281
02 Sep 2012; Jeroen Roovers <jer@gentoo.org> curl-7.26.0.ebuild:
Stable for HPPA (bug #421479).
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-09-03 12:48 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-26 19:41 [gentoo-commits] gentoo-x86 commit in net-misc/curl: ChangeLog curl-7.24.0.ebuild Mike Frysinger (vapier)
-- strict thread matches above, loose matches on Subject: below --
2012-01-28 17:26 Jeroen Roovers (jer)
2012-01-29 12:22 PaweA Hajdan (phajdan.jr)
2012-02-01 17:22 Brent Baude (ranger)
2012-02-04 15:30 Raul Porcel (armin76)
2012-03-03 15:30 Brent Baude (ranger)
2012-03-31 16:59 Anthony G. Basile (blueness)
2012-03-31 18:31 Anthony G. Basile (blueness)
2012-09-03 12:31 Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox