* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-03-27 12:52 Anthony G. Basile (blueness)
0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-03-27 12:52 UTC (permalink / raw
To: gentoo-commits
blueness 14/03/27 12:52:16
Modified: ChangeLog
Added: curl-7.36.0.ebuild
Log:
Version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.342 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.342&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.342&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.341&r2=1.342
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.341
retrieving revision 1.342
diff -u -r1.341 -r1.342
--- ChangeLog 4 Mar 2014 19:16:46 -0000 1.341
+++ ChangeLog 27 Mar 2014 12:52:16 -0000 1.342
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.341 2014/03/04 19:16:46 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.342 2014/03/27 12:52:16 blueness Exp $
+
+*curl-7.36.0 (27 Mar 2014)
+
+ 27 Mar 2014; Anthony G. Basile <blueness@gentoo.org> +curl-7.36.0.ebuild:
+ Version bump
04 Mar 2014; Naohiro Aota <naota@gentoo.org>
+files/curl-7.30.0-configure.patch, curl-7.35.0.ebuild:
1.1 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.1&content-type=text/plain
Index: curl-7.36.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.1 2014/03/27 12:52:15 blueness Exp $
EAPI="5"
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 ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
#lead to lots of false negatives, bug #285669
RESTRICT="test"
RDEPEND="ldap? ( net-nds/openldap )
ssl? (
curl_ssl_axtls? ( net-libs/axtls app-misc/ca-certificates )
curl_ssl_cyassl? ( net-libs/cyassl app-misc/ca-certificates )
curl_ssl_gnutls? (
|| (
( >=net-libs/gnutls-3[static-libs?] dev-libs/nettle )
( =net-libs/gnutls-2.12*[nettle,static-libs?] dev-libs/nettle )
( =net-libs/gnutls-2.12*[-nettle,static-libs?] dev-libs/libgcrypt[static-libs?] )
)
app-misc/ca-certificates
)
curl_ssl_openssl? ( dev-libs/openssl[static-libs?] )
curl_ssl_nss? ( dev-libs/nss app-misc/ca-certificates )
curl_ssl_polarssl? ( net-libs/polarssl app-misc/ca-certificates )
)
idn? ( net-dns/libidn[static-libs?] )
adns? ( net-dns/c-ares )
kerberos? ( virtual/krb5 )
metalink? ( >=media-libs/libmetalink-0.1.0 )
rtmp? ( media-video/rtmpdump )
ssh? ( net-libs/libssh2[static-libs?] )
sys-libs/zlib"
# Do we need to enforce the same ssl backend for curl and rtmpdump? Bug #423303
# rtmp? (
# media-video/rtmpdump
# curl_ssl_gnutls? ( media-video/rtmpdump[gnutls] )
# curl_ssl_openssl? ( media-video/rtmpdump[-gnutls,ssl] )
# )
# ssl providers to be added:
# fbopenssl $(use_with spnego)
# krb4 http://web.mit.edu/kerberos/www/krb4-end-of-life.html
DEPEND="${RDEPEND}
virtual/pkgconfig
test? (
sys-apps/diffutils
dev-lang/perl
)"
# c-ares must be disabled for threads
# only one ssl provider can be enabled
REQUIRED_USE="
threads? ( !adns )
ssl? (
^^ (
curl_ssl_axtls
curl_ssl_cyassl
curl_ssl_gnutls
curl_ssl_openssl
curl_ssl_nss
curl_ssl_polarssl
)
)"
DOCS=( CHANGES README docs/FEATURES docs/INTERNALS \
docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE)
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-7.30.0-prefix.patch \
"${FILESDIR}"/${PN}-respect-cflags-3.patch \
"${FILESDIR}"/${PN}-fix-gnutls-nettle.patch
sed -i '/LD_LIBRARY_PATH=/d' configure.ac || die #382241
epatch_user
eprefixify curl-config.in
eautoreconf
}
src_configure() {
einfo "\033[1;32m**************************************************\033[00m"
# We make use of the fact that later flags override earlier ones
# So start with all ssl providers off until proven otherwise
local myconf=()
myconf+=( --without-axtls --without-cyassl --without-gnutls --without-nss --without-polarssl --without-ssl )
myconf+=( --with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt )
if use ssl ; then
if use curl_ssl_axtls; then
einfo "SSL provided by axtls"
einfo "NOTE: axtls is meant for embedded systems and"
einfo "may not be the best choice as an ssl provider"
myconf+=( --with-axtls )
fi
if use curl_ssl_cyassl; then
einfo "SSL provided by cyassl"
einfo "NOTE: cyassl is meant for embedded systems and"
einfo "may not be the best choice as an ssl provider"
myconf+=( --with-cyassl )
fi
if use curl_ssl_gnutls; then
einfo "SSL provided by gnutls"
if has_version ">=net-libs/gnutls-3" || has_version "=net-libs/gnutls-2.12*[nettle]"; then
einfo "gnutls compiled with dev-libs/nettle"
myconf+=( --with-gnutls --with-nettle )
else
einfo "gnutls compiled with dev-libs/libgcrypt"
myconf+=( --with-gnutls --without-nettle )
fi
fi
if use curl_ssl_nss; then
einfo "SSL provided by nss"
myconf+=( --with-nss )
fi
if use curl_ssl_polarssl; then
einfo "SSL provided by polarssl"
einfo "NOTE: polarssl is meant for embedded systems and"
einfo "may not be the best choice as an ssl provider"
myconf+=( --with-polarssl )
fi
if use curl_ssl_openssl; then
einfo "SSL provided by openssl"
myconf+=( --with-ssl --without-ca-bundle --with-ca-path="${EPREFIX}"/etc/ssl/certs )
fi
else
einfo "SSL disabled"
fi
einfo "\033[1;32m**************************************************\033[00m"
# These configuration options are organized alphabetically
# within each category. This should make it easier if we
# ever decide to make any of them contingent on USE flags:
# 1) protocols first. To see them all do
# 'grep SUPPORT_PROTOCOLS configure.ac'
# 2) --enable/disable options second.
# 'grep -- --enable configure | grep Check | awk '{ print $4 }' | sort
# 3) --with/without options third.
# grep -- --with configure | grep Check | awk '{ print $4 }' | sort
econf \
--enable-dict \
--enable-file \
--enable-ftp \
--enable-gopher \
--enable-http \
--enable-imap \
$(use_enable ldap) \
$(use_enable ldap ldaps) \
--enable-pop3 \
--enable-rtsp \
$(use_with ssh libssh2) \
--enable-smtp \
--enable-telnet \
--enable-tftp \
$(use_enable adns ares) \
--enable-cookies \
--enable-hidden-symbols \
$(use_enable ipv6) \
--enable-largefile \
--enable-manual \
--enable-proxy \
--disable-soname-bump \
--disable-sspi \
$(use_enable static-libs static) \
$(use_enable threads threaded-resolver) \
--disable-versioned-symbols \
--without-darwinssl \
$(use_with idn libidn) \
$(use_with kerberos gssapi "${EPREFIX}"/usr) \
--without-krb4 \
$(use_with metalink libmetalink) \
--without-nghttp2 \
$(use_with rtmp librtmp) \
--without-spnego \
--without-winidn \
--without-winssl \
--with-zlib \
"${myconf[@]}"
}
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
}
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-03-31 13:42 Anthony G. Basile (blueness)
0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-03-31 13:42 UTC (permalink / raw
To: gentoo-commits
blueness 14/03/31 13:42:39
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Enable tests, bug #285669
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.2 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.1&r2=1.2
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- curl-7.36.0.ebuild 27 Mar 2014 12:52:15 -0000 1.1
+++ curl-7.36.0.ebuild 31 Mar 2014 13:42:39 -0000 1.2
@@ -1,10 +1,11 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.1 2014/03/27 12:52:15 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.2 2014/03/31 13:42:39 blueness Exp $
EAPI="5"
-inherit autotools eutils prefix
+PYTHON_COMPAT=( python2_6 python2_7 )
+inherit autotools eutils prefix python-any-r1
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/"
@@ -16,9 +17,6 @@
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
-#lead to lots of false negatives, bug #285669
-RESTRICT="test"
-
RDEPEND="ldap? ( net-nds/openldap )
ssl? (
curl_ssl_axtls? ( net-libs/axtls app-misc/ca-certificates )
@@ -58,6 +56,7 @@
DEPEND="${RDEPEND}
virtual/pkgconfig
test? (
+ ${PYTHON_DEPS}
sys-apps/diffutils
dev-lang/perl
)"
@@ -80,11 +79,18 @@
DOCS=( CHANGES README docs/FEATURES docs/INTERNALS \
docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE)
+pkg_setup() {
+ if use test ; then
+ python-any-r1_pkg_setup
+ fi
+}
+
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-7.30.0-prefix.patch \
"${FILESDIR}"/${PN}-respect-cflags-3.patch \
"${FILESDIR}"/${PN}-fix-gnutls-nettle.patch
+
sed -i '/LD_LIBRARY_PATH=/d' configure.ac || die #382241
epatch_user
1.343 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.343&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.343&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.342&r2=1.343
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.342
retrieving revision 1.343
diff -u -r1.342 -r1.343
--- ChangeLog 27 Mar 2014 12:52:16 -0000 1.342
+++ ChangeLog 31 Mar 2014 13:42:39 -0000 1.343
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.342 2014/03/27 12:52:16 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.343 2014/03/31 13:42:39 blueness Exp $
+
+ 31 Mar 2014; Anthony G. Basile <blueness@gentoo.org> curl-7.36.0.ebuild:
+ Enable tests, bug #285669
*curl-7.36.0 (27 Mar 2014)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-02 15:38 Anthony G. Basile (blueness)
0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-04-02 15:38 UTC (permalink / raw
To: gentoo-commits
blueness 14/04/02 15:38:28
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Disable tests again on 7.36.0
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.3 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.2&r2=1.3
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- curl-7.36.0.ebuild 31 Mar 2014 13:42:39 -0000 1.2
+++ curl-7.36.0.ebuild 2 Apr 2014 15:38:28 -0000 1.3
@@ -1,11 +1,10 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.2 2014/03/31 13:42:39 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.3 2014/04/02 15:38:28 blueness Exp $
EAPI="5"
-PYTHON_COMPAT=( python2_6 python2_7 )
-inherit autotools eutils prefix python-any-r1
+inherit autotools eutils prefix
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/"
@@ -17,6 +16,9 @@
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
+#lead to lots of false negatives, bug #285669
+RESTRICT="test"
+
RDEPEND="ldap? ( net-nds/openldap )
ssl? (
curl_ssl_axtls? ( net-libs/axtls app-misc/ca-certificates )
@@ -56,7 +58,6 @@
DEPEND="${RDEPEND}
virtual/pkgconfig
test? (
- ${PYTHON_DEPS}
sys-apps/diffutils
dev-lang/perl
)"
@@ -79,12 +80,6 @@
DOCS=( CHANGES README docs/FEATURES docs/INTERNALS \
docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE)
-pkg_setup() {
- if use test ; then
- python-any-r1_pkg_setup
- fi
-}
-
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-7.30.0-prefix.patch \
1.345 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.345&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.345&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.344&r2=1.345
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.344
retrieving revision 1.345
diff -u -r1.344 -r1.345
--- ChangeLog 2 Apr 2014 15:29:40 -0000 1.344
+++ ChangeLog 2 Apr 2014 15:38:28 -0000 1.345
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.344 2014/04/02 15:29:40 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.345 2014/04/02 15:38:28 blueness Exp $
+
+ 02 Apr 2014; Anthony G. Basile <blueness@gentoo.org> curl-7.36.0.ebuild:
+ Disable tests again on 7.36.0
*curl-7.35.0-r1 (02 Apr 2014)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-05 22:01 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-05 22:01 UTC (permalink / raw
To: gentoo-commits
ago 14/04/05 22:01:04
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.4&r2=1.5
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- curl-7.36.0.ebuild 3 Apr 2014 14:40:57 -0000 1.4
+++ curl-7.36.0.ebuild 5 Apr 2014 22:01:04 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.4 2014/04/03 14:40:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.5 2014/04/05 22:01:04 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.347 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.347&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.347&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.346&r2=1.347
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.346
retrieving revision 1.347
diff -u -r1.346 -r1.347
--- ChangeLog 3 Apr 2014 14:40:57 -0000 1.346
+++ ChangeLog 5 Apr 2014 22:01:04 -0000 1.347
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.346 2014/04/03 14:40:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.347 2014/04/05 22:01:04 ago Exp $
+
+ 05 Apr 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for amd64, wrt bug #505864
03 Apr 2014; Jeroen Roovers <jer@gentoo.org> curl-7.36.0.ebuild:
Stable for HPPA (bug #505864).
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-07 22:33 Mike Frysinger (vapier)
0 siblings, 0 replies; 12+ messages in thread
From: Mike Frysinger (vapier) @ 2014-04-07 22:33 UTC (permalink / raw
To: gentoo-commits
vapier 14/04/07 22:33:19
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Mark arm64/m68k/s390/sh stable #505864.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.7 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.6&r2=1.7
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- curl-7.36.0.ebuild 7 Apr 2014 09:17:12 -0000 1.6
+++ curl-7.36.0.ebuild 7 Apr 2014 22:33:19 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.6 2014/04/07 09:17:12 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.7 2014/04/07 22:33:19 vapier Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.349 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.349&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.349&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.348&r2=1.349
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- ChangeLog 7 Apr 2014 09:17:12 -0000 1.348
+++ ChangeLog 7 Apr 2014 22:33:19 -0000 1.349
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.348 2014/04/07 09:17:12 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.349 2014/04/07 22:33:19 vapier Exp $
+
+ 07 Apr 2014; Mike Frysinger <vapier@gentoo.org> curl-7.36.0.ebuild:
+ Mark arm64/m68k/s390/sh stable #505864.
07 Apr 2014; Sergey Popov <pinkbyte@gentoo.org> curl-7.36.0.ebuild:
Stable on arm, wrt bug #505864
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-12 9:33 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-12 9:33 UTC (permalink / raw
To: gentoo-commits
ago 14/04/12 09:33:20
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for x86, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.7&r2=1.8
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- curl-7.36.0.ebuild 7 Apr 2014 22:33:19 -0000 1.7
+++ curl-7.36.0.ebuild 12 Apr 2014 09:33:20 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.7 2014/04/07 22:33:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.8 2014/04/12 09:33:20 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.350 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.350&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.350&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.349&r2=1.350
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.349
retrieving revision 1.350
diff -u -r1.349 -r1.350
--- ChangeLog 7 Apr 2014 22:33:19 -0000 1.349
+++ ChangeLog 12 Apr 2014 09:33:20 -0000 1.350
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.349 2014/04/07 22:33:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.350 2014/04/12 09:33:20 ago Exp $
+
+ 12 Apr 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for x86, wrt bug #505864
07 Apr 2014; Mike Frysinger <vapier@gentoo.org> curl-7.36.0.ebuild:
Mark arm64/m68k/s390/sh stable #505864.
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-13 0:43 Naohiro Aota (naota)
0 siblings, 0 replies; 12+ messages in thread
From: Naohiro Aota (naota) @ 2014-04-13 0:43 UTC (permalink / raw
To: gentoo-commits
naota 14/04/13 00:43:14
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Add a upstream patch to build on FreeBSD. #507494
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F8551514)
Revision Changes Path
1.9 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.8&r2=1.9
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- curl-7.36.0.ebuild 12 Apr 2014 09:33:20 -0000 1.8
+++ curl-7.36.0.ebuild 13 Apr 2014 00:43:13 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.8 2014/04/12 09:33:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.9 2014/04/13 00:43:13 naota Exp $
EAPI="5"
@@ -84,7 +84,8 @@
epatch \
"${FILESDIR}"/${PN}-7.30.0-prefix.patch \
"${FILESDIR}"/${PN}-respect-cflags-3.patch \
- "${FILESDIR}"/${PN}-fix-gnutls-nettle.patch
+ "${FILESDIR}"/${PN}-fix-gnutls-nettle.patch \
+ "${FILESDIR}"/${P}-hostcheck.patch #507494
sed -i '/LD_LIBRARY_PATH=/d' configure.ac || die #382241
1.351 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.351&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.351&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.350&r2=1.351
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.350
retrieving revision 1.351
diff -u -r1.350 -r1.351
--- ChangeLog 12 Apr 2014 09:33:20 -0000 1.350
+++ ChangeLog 13 Apr 2014 00:43:13 -0000 1.351
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.350 2014/04/12 09:33:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.351 2014/04/13 00:43:13 naota Exp $
+
+ 13 Apr 2014; Naohiro Aota <naota@gentoo.org>
+ +files/curl-7.36.0-hostcheck.patch, curl-7.36.0.ebuild:
+ Add a upstream patch to build on FreeBSD. #507494
12 Apr 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
Stable for x86, wrt bug #505864
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-13 11:06 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-13 11:06 UTC (permalink / raw
To: gentoo-commits
ago 14/04/13 11:06:07
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.9&r2=1.10
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- curl-7.36.0.ebuild 13 Apr 2014 00:43:13 -0000 1.9
+++ curl-7.36.0.ebuild 13 Apr 2014 11:06:06 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.9 2014/04/13 00:43:13 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.10 2014/04/13 11:06:06 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ~ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.352 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.352&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.352&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.351&r2=1.352
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.351
retrieving revision 1.352
diff -u -r1.351 -r1.352
--- ChangeLog 13 Apr 2014 00:43:13 -0000 1.351
+++ ChangeLog 13 Apr 2014 11:06:06 -0000 1.352
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.351 2014/04/13 00:43:13 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.352 2014/04/13 11:06:06 ago Exp $
+
+ 13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for ppc, wrt bug #505864
13 Apr 2014; Naohiro Aota <naota@gentoo.org>
+files/curl-7.36.0-hostcheck.patch, curl-7.36.0.ebuild:
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-04-21 10:50 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-21 10:50 UTC (permalink / raw
To: gentoo-commits
ago 14/04/21 10:50:05
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.11&r2=1.12
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- curl-7.36.0.ebuild 19 Apr 2014 15:43:23 -0000 1.11
+++ curl-7.36.0.ebuild 21 Apr 2014 10:50:05 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.11 2014/04/19 15:43:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.12 2014/04/21 10:50:05 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ~ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ~ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.356 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.356&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.356&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.355&r2=1.356
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.355
retrieving revision 1.356
diff -u -r1.355 -r1.356
--- ChangeLog 19 Apr 2014 15:47:23 -0000 1.355
+++ ChangeLog 21 Apr 2014 10:50:05 -0000 1.356
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.355 2014/04/19 15:47:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.356 2014/04/21 10:50:05 ago Exp $
+
+ 21 Apr 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for alpha, wrt bug #505864
19 Apr 2014; Anthony G. Basile <blueness@gentoo.org> -curl-7.35.0-r1.ebuild:
Remove 7.35.0-r1 which was just used to test tests for bug #285669
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-05-11 8:02 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-05-11 8:02 UTC (permalink / raw
To: gentoo-commits
ago 14/05/11 08:02:30
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.13 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.12&r2=1.13
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- curl-7.36.0.ebuild 21 Apr 2014 10:50:05 -0000 1.12
+++ curl-7.36.0.ebuild 11 May 2014 08:02:30 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.12 2014/04/21 10:50:05 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.13 2014/05/11 08:02:30 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ~ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.358 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.358&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.358&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.357&r2=1.358
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -r1.357 -r1.358
--- ChangeLog 29 Apr 2014 13:27:40 -0000 1.357
+++ ChangeLog 11 May 2014 08:02:30 -0000 1.358
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.357 2014/04/29 13:27:40 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.358 2014/05/11 08:02:30 ago Exp $
+
+ 11 May 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for ppc64, wrt bug #505864
*curl-7.36.0-r1 (29 Apr 2014)
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-05-13 15:20 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-05-13 15:20 UTC (permalink / raw
To: gentoo-commits
ago 14/05/13 15:20:43
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.14 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.13&r2=1.14
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- curl-7.36.0.ebuild 11 May 2014 08:02:30 -0000 1.13
+++ curl-7.36.0.ebuild 13 May 2014 15:20:43 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.13 2014/05/11 08:02:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.14 2014/05/13 15:20:43 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.359 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.359&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.359&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.358&r2=1.359
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.358
retrieving revision 1.359
diff -u -r1.358 -r1.359
--- ChangeLog 11 May 2014 08:02:30 -0000 1.358
+++ ChangeLog 13 May 2014 15:20:43 -0000 1.359
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.358 2014/05/11 08:02:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.359 2014/05/13 15:20:43 ago Exp $
+
+ 13 May 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for ia64, wrt bug #505864
11 May 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
Stable for ppc64, wrt bug #505864
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog
@ 2014-05-14 16:10 Agostino Sarubbo (ago)
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-05-14 16:10 UTC (permalink / raw
To: gentoo-commits
ago 14/05/14 16:10:31
Modified: curl-7.36.0.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #505864
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.15 net-misc/curl/curl-7.36.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild?r1=1.14&r2=1.15
Index: curl-7.36.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- curl-7.36.0.ebuild 13 May 2014 15:20:43 -0000 1.14
+++ curl-7.36.0.ebuild 14 May 2014 16:10:31 -0000 1.15
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.14 2014/05/13 15:20:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.36.0.ebuild,v 1.15 2014/05/14 16:10:31 ago Exp $
EAPI="5"
@@ -12,7 +12,7 @@
LICENSE="MIT"
SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="adns idn ipv6 kerberos ldap metalink rtmp ssh ssl static-libs test threads"
IUSE="${IUSE} curl_ssl_axtls curl_ssl_cyassl curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl"
1.360 net-misc/curl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.360&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.360&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.359&r2=1.360
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.359
retrieving revision 1.360
diff -u -r1.359 -r1.360
--- ChangeLog 13 May 2014 15:20:43 -0000 1.359
+++ ChangeLog 14 May 2014 16:10:31 -0000 1.360
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/curl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.359 2014/05/13 15:20:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.360 2014/05/14 16:10:31 ago Exp $
+
+ 14 May 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
+ Stable for sparc, wrt bug #505864
13 May 2014; Agostino Sarubbo <ago@gentoo.org> curl-7.36.0.ebuild:
Stable for ia64, wrt bug #505864
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2014-05-14 16:10 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-31 13:42 [gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.36.0.ebuild ChangeLog Anthony G. Basile (blueness)
-- strict thread matches above, loose matches on Subject: below --
2014-05-14 16:10 Agostino Sarubbo (ago)
2014-05-13 15:20 Agostino Sarubbo (ago)
2014-05-11 8:02 Agostino Sarubbo (ago)
2014-04-21 10:50 Agostino Sarubbo (ago)
2014-04-13 11:06 Agostino Sarubbo (ago)
2014-04-13 0:43 Naohiro Aota (naota)
2014-04-12 9:33 Agostino Sarubbo (ago)
2014-04-07 22:33 Mike Frysinger (vapier)
2014-04-05 22:01 Agostino Sarubbo (ago)
2014-04-02 15:38 Anthony G. Basile (blueness)
2014-03-27 12:52 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