public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2011-12-01  2:04 Mike Frysinger (vapier)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Frysinger (vapier) @ 2011-12-01  2:04 UTC (permalink / raw
  To: gentoo-commits

vapier      11/12/01 02:04:41

  Modified:             ChangeLog
  Added:                wget-1.13.4-r1.ebuild
  Log:
  Switch to pkg-config for looking up openssl #246556 by Rick Farina.
  
  (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)

Revision  Changes    Path
1.148                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	18 Sep 2011 23:08:35 -0000	1.147
+++ ChangeLog	1 Dec 2011 02:04:41 -0000	1.148
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.147 2011/09/18 23:08:35 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.148 2011/12/01 02:04:41 vapier Exp $
+
+*wget-1.13.4-r1 (01 Dec 2011)
+
+  01 Dec 2011; Mike Frysinger <vapier@gentoo.org> +wget-1.13.4-r1.ebuild,
+  +files/wget-1.13.4-openssl-pkg-config.patch:
+  Switch to pkg-config for looking up openssl #246556 by Rick Farina.
 
 *wget-1.13.4 (18 Sep 2011)
 



1.1                  net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: wget-1.13.4-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.1 2011/12/01 02:04:41 vapier Exp $

EAPI="4"

inherit flag-o-matic toolchain-funcs autotools

DESCRIPTION="Network utility to retrieve files from the WWW"
HOMEPAGE="http://www.gnu.org/software/wget/"
SRC_URI="mirror://gnu/wget/${P}.tar.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"

LIB_DEPEND="idn? ( net-dns/libidn[static-libs] )
	ssl? (
		gnutls? ( net-libs/gnutls[static-libs(+)] )
		!gnutls? ( >=dev-libs/openssl-0.9.6b[static-libs(+)] )
	)"
RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs]} )"
DEPEND="${RDEPEND}
	app-arch/xz-utils
	static? ( ${LIB_DEPEND} )
	nls? ( sys-devel/gettext )"

REQUIRED_USE="ntlm? ( !gnutls ssl ) gnutls? ( ssl )"

DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )

src_prepare() {
	epatch "${FILESDIR}"/${P}-openssl-pkg-config.patch
	eautoreconf
}

src_configure() {
	# openssl-0.9.8 now builds with -pthread on the BSD's
	use elibc_FreeBSD && use ssl && append-ldflags -pthread
	# fix compilation on Solaris, we need filio.h for FIONBIO as used in
	# the included gnutls -- force ioctl.h to include this header
	[[ ${CHOST} == *-solaris* ]] && append-flags -DBSD_COMP=1

	# the configure script contains a few hacks to workaround openssl
	# build limitations.  disable those, and use openssl's pkg-config.
	eval export ac_cv_lib_{z_compress,dl_{dlopen,shl_load}}=no

	if use static ; then
		append-ldflags -static
		tc-export PKG_CONFIG
		PKG_CONFIG+=" --static"
	fi
	econf \
		--disable-rpath \
		$(use_with ssl ssl $(usex gnutls gnutls openssl)) \
		$(use_enable ssl opie) \
		$(use_enable ssl digest) \
		$(use_enable idn iri) \
		$(use_enable ipv6) \
		$(use_enable nls) \
		$(use_enable ntlm) \
		$(use_enable debug)
}

src_install() {
	default

	use ipv6 && cat "${FILESDIR}"/wgetrc-ipv6 >> "${ED}"/etc/wgetrc

	sed -i \
		-e "s:/usr/local/etc:${EPREFIX}/etc:g" \
		"${ED}"/etc/wgetrc \
		"${ED}"/usr/share/man/man1/wget.1 \
		"${ED}"/usr/share/info/wget.info
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2011-12-01 16:53 Mike Frysinger (vapier)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Frysinger (vapier) @ 2011-12-01 16:53 UTC (permalink / raw
  To: gentoo-commits

vapier      11/12/01 16:53:04

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  Fix the static-libs logic the right way #392713 by Piotr Karbowski.
  
  (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)

Revision  Changes    Path
1.150                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog	1 Dec 2011 12:53:09 -0000	1.149
+++ ChangeLog	1 Dec 2011 16:53:04 -0000	1.150
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.149 2011/12/01 12:53:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.150 2011/12/01 16:53:04 vapier Exp $
+
+  01 Dec 2011; Mike Frysinger <vapier@gentoo.org> wget-1.13.4-r1.ebuild:
+  Fix the static-libs logic the right way #392713 by Piotr Karbowski.
 
   01 Dec 2011; Diego E. Pettenò <flameeyes@gentoo.org> wget-1.13.4-r1.ebuild:
   QA: do not try to be smart about setting dependencies, when the tricks don't



1.3                  net-misc/wget/wget-1.13.4-r1.ebuild

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

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wget-1.13.4-r1.ebuild	1 Dec 2011 12:53:09 -0000	1.2
+++ wget-1.13.4-r1.ebuild	1 Dec 2011 16:53:04 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.2 2011/12/01 12:53:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.3 2011/12/01 16:53:04 vapier Exp $
 
 EAPI="4"
 
@@ -15,20 +15,15 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
-STATIC_LIB_DEPEND="idn? ( net-dns/libidn[static-libs] )
+LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
 	ssl? (
 		gnutls? ( net-libs/gnutls[static-libs(+)] )
 		!gnutls? ( >=dev-libs/openssl-0.9.6b[static-libs(+)] )
 	)"
-LIB_DEPEND="idn? ( net-dns/libidn )
-	ssl? (
-		gnutls? ( net-libs/gnutls )
-		!gnutls? ( >=dev-libs/openssl-0.9.6b )
-	)"
-RDEPEND="!static? ( ${LIB_DEPEND} )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
 	app-arch/xz-utils
-	static? ( ${STATIC_LIB_DEPEND} )
+	static? ( ${LIB_DEPEND} )
 	nls? ( sys-devel/gettext )"
 
 REQUIRED_USE="ntlm? ( !gnutls ssl ) gnutls? ( ssl )"






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-01-13  6:19 Mike Frysinger (vapier)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Frysinger (vapier) @ 2012-01-13  6:19 UTC (permalink / raw
  To: gentoo-commits

vapier      12/01/13 06:19:16

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  Depend on pkgconfig since we use it now for openssl #398527 by Viktor Görzen.
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.152                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	20 Dec 2011 16:14:30 -0000	1.151
+++ ChangeLog	13 Jan 2012 06:19:16 -0000	1.152
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/wget
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.151 2011/12/20 16:14:30 vapier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.152 2012/01/13 06:19:16 vapier Exp $
+
+  13 Jan 2012; Mike Frysinger <vapier@gentoo.org> wget-1.13.4-r1.ebuild:
+  Depend on pkgconfig since we use it now for openssl #398527 by Viktor
+  Görzen.
 
   20 Dec 2011; Mike Frysinger <vapier@gentoo.org>
   files/wget-1.13.4-openssl-pkg-config.patch:



1.4                  net-misc/wget/wget-1.13.4-r1.ebuild

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

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wget-1.13.4-r1.ebuild	1 Dec 2011 16:53:04 -0000	1.3
+++ wget-1.13.4-r1.ebuild	13 Jan 2012 06:19:16 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.3 2011/12/01 16:53:04 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.4 2012/01/13 06:19:16 vapier Exp $
 
 EAPI="4"
 
@@ -23,6 +23,7 @@
 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
 	app-arch/xz-utils
+	dev-util/pkgconfig
 	static? ( ${LIB_DEPEND} )
 	nls? ( sys-devel/gettext )"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-04-26 15:15 Alexis Ballier (aballier)
  0 siblings, 0 replies; 12+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 15:15 UTC (permalink / raw
  To: gentoo-commits

aballier    12/04/26 15:15:50

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.153                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog	13 Jan 2012 06:19:16 -0000	1.152
+++ ChangeLog	26 Apr 2012 15:15:50 -0000	1.153
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.152 2012/01/13 06:19:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.153 2012/04/26 15:15:50 aballier Exp $
+
+  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> wget-1.13.4-r1.ebuild:
+  keyword ~amd64-fbsd
 
   13 Jan 2012; Mike Frysinger <vapier@gentoo.org> wget-1.13.4-r1.ebuild:
   Depend on pkgconfig since we use it now for openssl #398527 by Viktor



1.5                  net-misc/wget/wget-1.13.4-r1.ebuild

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

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wget-1.13.4-r1.ebuild	13 Jan 2012 06:19:16 -0000	1.4
+++ wget-1.13.4-r1.ebuild	26 Apr 2012 15:15:50 -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/wget/wget-1.13.4-r1.ebuild,v 1.4 2012/01/13 06:19:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.5 2012/04/26 15:15:50 aballier Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-05  3:20 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-05-05  3:20 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/05/05 03:20:45

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  dev-util/pkgconfig -> virtual/pkgconfig
  
  (Portage version: 2.2.0_alpha101/cvs/Linux i686)

Revision  Changes    Path
1.154                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ChangeLog	26 Apr 2012 15:15:50 -0000	1.153
+++ ChangeLog	5 May 2012 03:20:45 -0000	1.154
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.153 2012/04/26 15:15:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.154 2012/05/05 03:20:45 jdhore Exp $
+
+  05 May 2012; Jeff Horelick <jdhore@gentoo.org> wget-1.13.4-r1.ebuild:
+  dev-util/pkgconfig -> virtual/pkgconfig
 
   26 Apr 2012; Alexis Ballier <aballier@gentoo.org> wget-1.13.4-r1.ebuild:
   keyword ~amd64-fbsd



1.6                  net-misc/wget/wget-1.13.4-r1.ebuild

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

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wget-1.13.4-r1.ebuild	26 Apr 2012 15:15:50 -0000	1.5
+++ wget-1.13.4-r1.ebuild	5 May 2012 03:20:45 -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/wget/wget-1.13.4-r1.ebuild,v 1.5 2012/04/26 15:15:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.6 2012/05/05 03:20:45 jdhore Exp $
 
 EAPI="4"
 
@@ -23,7 +23,7 @@
 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
 	app-arch/xz-utils
-	dev-util/pkgconfig
+	virtual/pkgconfig
 	static? ( ${LIB_DEPEND} )
 	nls? ( sys-devel/gettext )"
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-22 18:47 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-05-22 18:47 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/05/22 18:47:05

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  marked x86 per bug 406657
  
  (Portage version: 2.2.0_alpha107/cvs/Linux i686)

Revision  Changes    Path
1.155                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog	5 May 2012 03:20:45 -0000	1.154
+++ ChangeLog	22 May 2012 18:47:05 -0000	1.155
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.154 2012/05/05 03:20:45 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.155 2012/05/22 18:47:05 jdhore Exp $
+
+  22 May 2012; Jeff Horelick <jdhore@gentoo.org> wget-1.13.4-r1.ebuild:
+  marked x86 per bug 406657
 
   05 May 2012; Jeff Horelick <jdhore@gentoo.org> wget-1.13.4-r1.ebuild:
   dev-util/pkgconfig -> virtual/pkgconfig



1.7                  net-misc/wget/wget-1.13.4-r1.ebuild

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

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- wget-1.13.4-r1.ebuild	5 May 2012 03:20:45 -0000	1.6
+++ wget-1.13.4-r1.ebuild	22 May 2012 18:47:05 -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/wget/wget-1.13.4-r1.ebuild,v 1.6 2012/05/05 03:20:45 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.7 2012/05/22 18:47:05 jdhore Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-22 19:02 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-05-22 19:02 UTC (permalink / raw
  To: gentoo-commits

ago         12/05/22 19:02:26

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  Stable for amd64, wrt bug #406657
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.156                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog	22 May 2012 18:47:05 -0000	1.155
+++ ChangeLog	22 May 2012 19:02:26 -0000	1.156
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.155 2012/05/22 18:47:05 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.156 2012/05/22 19:02:26 ago Exp $
+
+  22 May 2012; Agostino Sarubbo <ago@gentoo.org> wget-1.13.4-r1.ebuild:
+  Stable for amd64, wrt bug #406657
 
   22 May 2012; Jeff Horelick <jdhore@gentoo.org> wget-1.13.4-r1.ebuild:
   marked x86 per bug 406657



1.8                  net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?r1=1.7&r2=1.8

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- wget-1.13.4-r1.ebuild	22 May 2012 18:47:05 -0000	1.7
+++ wget-1.13.4-r1.ebuild	22 May 2012 19:02:26 -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/wget/wget-1.13.4-r1.ebuild,v 1.7 2012/05/22 18:47:05 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.8 2012/05/22 19:02:26 ago Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-23 12:55 Brent Baude (ranger)
  0 siblings, 0 replies; 12+ messages in thread
From: Brent Baude (ranger) @ 2012-05-23 12:55 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/23 12:55:16

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  Marking wget-1.13.4-r1 ppc64 for bug 406657
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.158                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog	22 May 2012 22:52:52 -0000	1.157
+++ ChangeLog	23 May 2012 12:55:16 -0000	1.158
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.157 2012/05/22 22:52:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.158 2012/05/23 12:55:16 ranger Exp $
+
+  23 May 2012; Brent Baude <ranger@gentoo.org> wget-1.13.4-r1.ebuild:
+  Marking wget-1.13.4-r1 ppc64 for bug 406657
 
   22 May 2012; Mike Frysinger <vapier@gentoo.org>
   +files/wget-1.13.4-no-gets.patch, wget-1.13.4-r1.ebuild:



1.10                 net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?r1=1.9&r2=1.10

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- wget-1.13.4-r1.ebuild	22 May 2012 22:52:52 -0000	1.9
+++ wget-1.13.4-r1.ebuild	23 May 2012 12:55:16 -0000	1.10
@@ -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/wget/wget-1.13.4-r1.ebuild,v 1.9 2012/05/22 22:52:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.10 2012/05/23 12:55:16 ranger Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-24 13:25 Jeroen Roovers (jer)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2012-05-24 13:25 UTC (permalink / raw
  To: gentoo-commits

jer         12/05/24 13:25:18

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  Stable for HPPA (bug #406657).
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)

Revision  Changes    Path
1.159                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- ChangeLog	23 May 2012 12:55:16 -0000	1.158
+++ ChangeLog	24 May 2012 13:25:18 -0000	1.159
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.158 2012/05/23 12:55:16 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.159 2012/05/24 13:25:18 jer Exp $
+
+  24 May 2012; Jeroen Roovers <jer@gentoo.org> wget-1.13.4-r1.ebuild:
+  Stable for HPPA (bug #406657).
 
   23 May 2012; Brent Baude <ranger@gentoo.org> wget-1.13.4-r1.ebuild:
   Marking wget-1.13.4-r1 ppc64 for bug 406657



1.11                 net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?r1=1.10&r2=1.11

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- wget-1.13.4-r1.ebuild	23 May 2012 12:55:16 -0000	1.10
+++ wget-1.13.4-r1.ebuild	24 May 2012 13:25:18 -0000	1.11
@@ -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/wget/wget-1.13.4-r1.ebuild,v 1.10 2012/05/23 12:55:16 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.11 2012/05/24 13:25:18 jer Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-26 10:19 Markus Meier (maekke)
  0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2012-05-26 10:19 UTC (permalink / raw
  To: gentoo-commits

maekke      12/05/26 10:19:51

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  arm stable, bug #406657
  
  (Portage version: 2.1.10.62/cvs/Linux i686)

Revision  Changes    Path
1.160                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog	24 May 2012 13:25:18 -0000	1.159
+++ ChangeLog	26 May 2012 10:19:51 -0000	1.160
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.159 2012/05/24 13:25:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.160 2012/05/26 10:19:51 maekke Exp $
+
+  26 May 2012; Markus Meier <maekke@gentoo.org> wget-1.13.4-r1.ebuild:
+  arm stable, bug #406657
 
   24 May 2012; Jeroen Roovers <jer@gentoo.org> wget-1.13.4-r1.ebuild:
   Stable for HPPA (bug #406657).



1.12                 net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?r1=1.11&r2=1.12

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- wget-1.13.4-r1.ebuild	24 May 2012 13:25:18 -0000	1.11
+++ wget-1.13.4-r1.ebuild	26 May 2012 10:19:51 -0000	1.12
@@ -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/wget/wget-1.13.4-r1.ebuild,v 1.11 2012/05/24 13:25:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.12 2012/05/26 10:19:51 maekke Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm 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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-05-29 19:13 Brent Baude (ranger)
  0 siblings, 0 replies; 12+ messages in thread
From: Brent Baude (ranger) @ 2012-05-29 19:13 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/29 19:13:13

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  Marking wget-1.13.4-r1 ppc for bug 406657
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.161                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ChangeLog	26 May 2012 10:19:51 -0000	1.160
+++ ChangeLog	29 May 2012 19:13:13 -0000	1.161
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.160 2012/05/26 10:19:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.161 2012/05/29 19:13:13 ranger Exp $
+
+  29 May 2012; Brent Baude <ranger@gentoo.org> wget-1.13.4-r1.ebuild:
+  Marking wget-1.13.4-r1 ppc for bug 406657
 
   26 May 2012; Markus Meier <maekke@gentoo.org> wget-1.13.4-r1.ebuild:
   arm stable, bug #406657



1.13                 net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?r1=1.12&r2=1.13

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- wget-1.13.4-r1.ebuild	26 May 2012 10:19:51 -0000	1.12
+++ wget-1.13.4-r1.ebuild	29 May 2012 19:13:13 -0000	1.13
@@ -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/wget/wget-1.13.4-r1.ebuild,v 1.12 2012/05/26 10:19:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.13 2012/05/29 19:13:13 ranger Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm 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 ~ia64-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 ~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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

* [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild
@ 2012-06-17 18:35 Raul Porcel (armin76)
  0 siblings, 0 replies; 12+ messages in thread
From: Raul Porcel (armin76) @ 2012-06-17 18:35 UTC (permalink / raw
  To: gentoo-commits

armin76     12/06/17 18:35:52

  Modified:             ChangeLog wget-1.13.4-r1.ebuild
  Log:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #406657
  
  (Portage version: 2.1.10.53/cvs/Linux ia64)

Revision  Changes    Path
1.162                net-misc/wget/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog	29 May 2012 19:13:13 -0000	1.161
+++ ChangeLog	17 Jun 2012 18:35:52 -0000	1.162
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/wget
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.161 2012/05/29 19:13:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.162 2012/06/17 18:35:52 armin76 Exp $
+
+  17 Jun 2012; Raúl Porcel <armin76@gentoo.org> wget-1.13.4-r1.ebuild:
+  alpha/ia64/m68k/s390/sh/sparc stable wrt #406657
 
   29 May 2012; Brent Baude <ranger@gentoo.org> wget-1.13.4-r1.ebuild:
   Marking wget-1.13.4-r1 ppc for bug 406657



1.14                 net-misc/wget/wget-1.13.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild?r1=1.13&r2=1.14

Index: wget-1.13.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- wget-1.13.4-r1.ebuild	29 May 2012 19:13:13 -0000	1.13
+++ wget-1.13.4-r1.ebuild	17 Jun 2012 18:35:52 -0000	1.14
@@ -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/wget/wget-1.13.4-r1.ebuild,v 1.13 2012/05/29 19:13:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.4-r1.ebuild,v 1.14 2012/06/17 18:35:52 armin76 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm 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 ~ia64-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 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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
 
 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )






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

end of thread, other threads:[~2012-06-17 18:36 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23 12:55 [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.4-r1.ebuild Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-17 18:35 Raul Porcel (armin76)
2012-05-29 19:13 Brent Baude (ranger)
2012-05-26 10:19 Markus Meier (maekke)
2012-05-24 13:25 Jeroen Roovers (jer)
2012-05-22 19:02 Agostino Sarubbo (ago)
2012-05-22 18:47 Jeff Horelick (jdhore)
2012-05-05  3:20 Jeff Horelick (jdhore)
2012-04-26 15:15 Alexis Ballier (aballier)
2012-01-13  6:19 Mike Frysinger (vapier)
2011-12-01 16:53 Mike Frysinger (vapier)
2011-12-01  2:04 Mike Frysinger (vapier)

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