[arch-commits] Commit in wget/repos (10 files)

2014-12-18 Thread Eric Bélanger
Date: Thursday, December 18, 2014 @ 22:50:27
  Author: eric
Revision: 227761

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  wget/repos/extra-i686/PKGBUILD
(from rev 227760, wget/trunk/PKGBUILD)
  wget/repos/extra-i686/wget.install
(from rev 227760, wget/trunk/wget.install)
  wget/repos/extra-x86_64/PKGBUILD
(from rev 227760, wget/trunk/PKGBUILD)
  wget/repos/extra-x86_64/wget.install
(from rev 227760, wget/trunk/wget.install)
Deleted:
  wget/repos/extra-i686/PKGBUILD
  wget/repos/extra-i686/wget-1.16-fix-test-proxied-https-auth.patch
  wget/repos/extra-i686/wget.install
  wget/repos/extra-x86_64/PKGBUILD
  wget/repos/extra-x86_64/wget-1.16-fix-test-proxied-https-auth.patch
  wget/repos/extra-x86_64/wget.install

--+
 /PKGBUILD|   86 
 /wget.install|   40 +
 extra-i686/PKGBUILD  |   48 ---
 extra-i686/wget-1.16-fix-test-proxied-https-auth.patch   |   89 -
 extra-i686/wget.install  |   20 --
 extra-x86_64/PKGBUILD|   48 ---
 extra-x86_64/wget-1.16-fix-test-proxied-https-auth.patch |   89 -
 extra-x86_64/wget.install|   20 --
 8 files changed, 126 insertions(+), 314 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-18 21:48:09 UTC (rev 227760)
+++ extra-i686/PKGBUILD 2014-12-18 21:50:27 UTC (rev 227761)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=wget
-pkgver=1.16
-pkgrel=2
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-depends=('openssl' 'libidn' 'libutil-linux')
-checkdepends=('perl-http-daemon' 'perl-io-socket-ssl' 'python')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
-wget-1.16-fix-test-proxied-https-auth.patch)
-sha1sums=('08d991acc80726abe57043a278f9da469c454503'
-  'SKIP'
-  'a324d1910a6440552a3745c873da9e3dff7d7ec9')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i "${srcdir}/wget-1.16-fix-test-proxied-https-auth.patch"
-  sed -i 's/--no-check-certificate/& --no-http-keep-alive/' \
-tests/Test-proxied-https-auth.px
-  cat >> doc/sample.wgetrc <
+
+pkgname=wget
+pkgver=1.16.1
+pkgrel=1
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+depends=('openssl' 'libidn' 'libutil-linux')
+checkdepends=('perl-http-daemon' 'perl-io-socket-ssl' 'python')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('21cd7eee08ab5e5a14fccde22a7aec55b5fcd6fc'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  cat >> doc/sample.wgetrc <
-Date: Tue, 28 Oct 2014 10:40:34 +
-Subject: synchronize client and server in Test-proxied-https-auth.px
-

-(limited to 'tests/Test-proxied-https-auth.px')
-
-diff --git a/tests/Test-proxied-https-auth.px 
b/tests/Test-proxied-https-auth.px
-index cc987ff..272003f 100755
 a/tests/Test-proxied-https-auth.px
-+++ b/tests/Test-proxied-https-auth.px
-@@ -49,12 +49,15 @@ sub get_request {
- }
- 
- sub do_server {
-+my ($synch_callback) = @_;
- my $alrm = alarm 10;
--
- my $s = $SOCKET;
- my $conn;
- my $rqst;
- my $rspn;
-+
-+$synch_callback->();
-+
- for my $expect_inner_auth (0, 1) {
- $conn = $s->accept;
- $rqst = $conn->get_request;
-@@ -90,7 +93,7 @@ sub do_server {
- Connection => 'close'
- ]);
- $rspn->protocol('HTTP/1.0');
--print $rspn->as_string;
-+print STDERR $rspn->as_string;
- print $conn $rspn->as_string;
- } else {
- die "No proxied auth\n" unless $rqst->header('Authorization');
-@@ -100,9 +103,9 @@ sub do_server {
- 'Connection' => 'close',
- ], "foobarbaz\n");
- $rspn->protocol('HTTP/1.0');
--print "=\n";
--print $rspn->as_string;
--print "\n=\n";
-+print STDERR "=\n";
-+print STDERR $rspn->as_string;
-+print STDERR "\n=\n";
- print $conn $rspn->as_string;
- }
- $conn->close;
-@@ -113,18 +116,29 @@ sub do_server {
- }
- 
- sub fork_server {
--my $pid = fork;
--die "Couldn't fork" if ($pid < 0);
--return $pid if $pid;
-+pipe(FROM_CHILD, TO_PARENT) or die "Cannot create 

[arch-commits] Commit in wget/repos (10 files)

2014-10-28 Thread Evangelos Foutras
Date: Wednesday, October 29, 2014 @ 01:00:17
  Author: foutrelis
Revision: 225415

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  wget/repos/extra-i686/PKGBUILD
(from rev 225414, wget/trunk/PKGBUILD)
  wget/repos/extra-i686/wget-1.16-fix-test-proxied-https-auth.patch
(from rev 225414, wget/trunk/wget-1.16-fix-test-proxied-https-auth.patch)
  wget/repos/extra-i686/wget.install
(from rev 225414, wget/trunk/wget.install)
  wget/repos/extra-x86_64/PKGBUILD
(from rev 225414, wget/trunk/PKGBUILD)
  wget/repos/extra-x86_64/wget-1.16-fix-test-proxied-https-auth.patch
(from rev 225414, wget/trunk/wget-1.16-fix-test-proxied-https-auth.patch)
  wget/repos/extra-x86_64/wget.install
(from rev 225414, wget/trunk/wget.install)
Deleted:
  wget/repos/extra-i686/PKGBUILD
  wget/repos/extra-i686/wget.install
  wget/repos/extra-x86_64/PKGBUILD
  wget/repos/extra-x86_64/wget.install

--+
 /PKGBUILD|   96 +
 /wget.install|   40 +
 extra-i686/PKGBUILD  |   43 -
 extra-i686/wget-1.16-fix-test-proxied-https-auth.patch   |   89 
 extra-i686/wget.install  |   20 --
 extra-x86_64/PKGBUILD|   43 -
 extra-x86_64/wget-1.16-fix-test-proxied-https-auth.patch |   89 
 extra-x86_64/wget.install|   20 --
 8 files changed, 314 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-10-29 00:00:06 UTC (rev 225414)
+++ extra-i686/PKGBUILD 2014-10-29 00:00:17 UTC (rev 225415)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=wget
-pkgver=1.15
-pkgrel=1
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-depends=('openssl' 'libidn' 'util-linux')
-checkdepends=('perl-http-daemon' 'perl-io-socket-ssl')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha1sums=('e9fb1d25fa04f9c69e74e656a3174dca02700ba1'
-  'SKIP')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  cat >> doc/sample.wgetrc <
+
+pkgname=wget
+pkgver=1.16
+pkgrel=1
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+depends=('openssl' 'libidn' 'util-linux')
+checkdepends=('perl-http-daemon' 'perl-io-socket-ssl' 'python3')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+wget-1.16-fix-test-proxied-https-auth.patch)
+sha1sums=('08d991acc80726abe57043a278f9da469c454503'
+  'SKIP'
+  'a324d1910a6440552a3745c873da9e3dff7d7ec9')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}/wget-1.16-fix-test-proxied-https-auth.patch"
+  sed -i 's/--no-check-certificate/& --no-http-keep-alive/' \
+tests/Test-proxied-https-auth.px
+  cat >> doc/sample.wgetrc <
+Date: Tue, 28 Oct 2014 10:40:34 +
+Subject: synchronize client and server in Test-proxied-https-auth.px
+
+---
+(limited to 'tests/Test-proxied-https-auth.px')
+
+diff --git a/tests/Test-proxied-https-auth.px 
b/tests/Test-proxied-https-auth.px
+index cc987ff..272003f 100755
+--- a/tests/Test-proxied-https-auth.px
 b/tests/Test-proxied-https-auth.px
+@@ -49,12 +49,15 @@ sub get_request {
+ }
+ 
+ sub do_server {
++my ($synch_callback) = @_;
+ my $alrm = alarm 10;
+-
+ my $s = $SOCKET;
+ my $conn;
+ my $rqst;
+ my $rspn;
++
++$synch_callback->();
++
+ for my $expect_inner_auth (0, 1) {
+ $conn = $s->accept;
+ $rqst = $conn->get_request;
+@@ -90,7 +93,7 @@ sub do_server {
+ Connection => 'close'
+ ]);
+ $rspn->protocol('HTTP/1.0');
+-print $rspn->as_string;
++print STDERR $rspn->as_string;
+ print $conn $rspn->as_string;
+ } else {
+ die "No proxied auth\n" unless $rqst->header('Authorization');
+@@ -100,9 +103,9 @@ sub do_server {
+ 'Connection' => 'close',
+ ], "foobarbaz\n");
+ $rspn->protocol('HTTP/1.0');
+-print "=\n";
+-print $rspn->as_string;
+-print "\n=\n";
++print STDERR "=\n";
++print STDERR $rspn->as_string;
++print STDERR "\n=\n";
+ print $conn $rspn->as_string;
+ }
+ $conn->close;
+@@ -113,18 +116,29 @@ sub do_server {
+ }
+ 
+ sub fork_ser

[arch-commits] Commit in wget/repos (10 files)

2014-01-19 Thread Eric Bélanger
Date: Sunday, January 19, 2014 @ 21:56:35
  Author: eric
Revision: 204439

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  wget/repos/extra-i686/PKGBUILD
(from rev 204438, wget/trunk/PKGBUILD)
  wget/repos/extra-i686/wget.install
(from rev 204438, wget/trunk/wget.install)
  wget/repos/extra-x86_64/PKGBUILD
(from rev 204438, wget/trunk/PKGBUILD)
  wget/repos/extra-x86_64/wget.install
(from rev 204438, wget/trunk/wget.install)
Deleted:
  wget/repos/extra-i686/PKGBUILD
  wget/repos/extra-i686/wget-pod-fixes.patch
  wget/repos/extra-i686/wget.install
  wget/repos/extra-x86_64/PKGBUILD
  wget/repos/extra-x86_64/wget-pod-fixes.patch
  wget/repos/extra-x86_64/wget.install

---+
 /PKGBUILD |   86 
 /wget.install |   40 
 extra-i686/PKGBUILD   |   46 ---
 extra-i686/wget-pod-fixes.patch   |   81 -
 extra-i686/wget.install   |   20 
 extra-x86_64/PKGBUILD |   46 ---
 extra-x86_64/wget-pod-fixes.patch |   81 -
 extra-x86_64/wget.install |   20 
 8 files changed, 126 insertions(+), 294 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-19 20:55:47 UTC (rev 204438)
+++ extra-i686/PKGBUILD 2014-01-19 20:56:35 UTC (rev 204439)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=wget
-pkgver=1.14
-pkgrel=3
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-depends=('openssl' 'libidn' 'util-linux')
-checkdepends=('perl-http-daemon' 'perl-io-socket-ssl')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
-wget-pod-fixes.patch)
-sha1sums=('cfa0906e6f72c1c902c29b52d140c22ecdcd617e'
-  'SKIP'
-  'aae4be72657c7a8e9dbedb7109cd2d8562a325d2')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 -i "${srcdir}/wget-pod-fixes.patch"
-  cat >> doc/sample.wgetrc <
+
+pkgname=wget
+pkgver=1.15
+pkgrel=1
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+depends=('openssl' 'libidn' 'util-linux')
+checkdepends=('perl-http-daemon' 'perl-io-socket-ssl')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('e9fb1d25fa04f9c69e74e656a3174dca02700ba1'
+  'SKIP')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  cat >> doc/sample.wgetrc <
- No problems occurred.
- 
--@item 1
-+@item C<1>
- Generic error code.
- 
--@item 2
-+@item C<2>
- Parse error---for instance, when parsing command-line options, the
- @samp{.wgetrc} or @samp{.netrc}...
- 
--@item 3
-+@item C<3>
- File I/O error.
- 
--@item 4
-+@item C<4>
- Network failure.
- 
--@item 5
-+@item C<5>
- SSL verification failure.
- 
--@item 6
-+@item C<6>
- Username/password authentication failure.
- 
--@item 7
-+@item C<7>
- Protocol errors.
- 
--@item 8
-+@item C<8>
- Server issued an error response.
- @end table
- 
-@@ -3094,7 +3094,7 @@
- Change setting of passive @sc{ftp}, equivalent to the
- @samp{--passive-ftp} option.
- 
--@itemx password = @var{string}
-+@item password = @var{string}
- Specify password @var{string} for both @sc{ftp} and @sc{http} file retrieval. 
- This command can be overridden using the @samp{ftp_password} and 
- @samp{http_password} command for @sc{ftp} and @sc{http} respectively.
-@@ -3605,7 +3605,7 @@
- may be specified from within Wget itself.
- 
- @table @samp
--@itemx --no-proxy
-+@item --no-proxy
- @itemx proxy = on/off
- This option and the corresponding command may be used to suppress the
- use of proxy, even if the appropriate environment variables are set.

Deleted: extra-i686/wget.install
===
--- extra-i686/wget.install 2014-01-19 20:55:47 UTC (rev 204438)
+++ extra-i686/wget.install 2014-01-19 20:56:35 UTC (rev 204439)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(wget.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: wget/repos/extra-i686/wget.install (from rev 204438, 
wget/trunk/wget.install)

[arch-commits] Commit in wget/repos (10 files)

2013-09-29 Thread Eric Bélanger
Date: Sunday, September 29, 2013 @ 19:27:18
  Author: eric
Revision: 195268

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  wget/repos/extra-i686/PKGBUILD
(from rev 195267, wget/trunk/PKGBUILD)
  wget/repos/extra-i686/wget-pod-fixes.patch
(from rev 195267, wget/trunk/wget-pod-fixes.patch)
  wget/repos/extra-i686/wget.install
(from rev 195267, wget/trunk/wget.install)
  wget/repos/extra-x86_64/PKGBUILD
(from rev 195267, wget/trunk/PKGBUILD)
  wget/repos/extra-x86_64/wget-pod-fixes.patch
(from rev 195267, wget/trunk/wget-pod-fixes.patch)
  wget/repos/extra-x86_64/wget.install
(from rev 195267, wget/trunk/wget.install)
Deleted:
  wget/repos/extra-i686/PKGBUILD
  wget/repos/extra-i686/wget.install
  wget/repos/extra-x86_64/PKGBUILD
  wget/repos/extra-x86_64/wget.install

---+
 /PKGBUILD |   92 
 /wget.install |   40 +++
 extra-i686/PKGBUILD   |   36 --
 extra-i686/wget-pod-fixes.patch   |   81 +++
 extra-i686/wget.install   |   20 ---
 extra-x86_64/PKGBUILD |   36 --
 extra-x86_64/wget-pod-fixes.patch |   81 +++
 extra-x86_64/wget.install |   20 ---
 8 files changed, 294 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-29 17:26:13 UTC (rev 195267)
+++ extra-i686/PKGBUILD 2013-09-29 17:27:18 UTC (rev 195268)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Judd Vinet 
-
-pkgname=wget
-pkgver=1.14
-pkgrel=2
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-depends=('openssl' 'libidn' 'pcre' 'util-linux')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('316f6f59292c9098ad81fd54f658c579'
- '3e121933d69f32fa58776bff76bcebd0')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc --enable-nls
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cat >> "$pkgdir/etc/wgetrc" <
+
+pkgname=wget
+pkgver=1.14
+pkgrel=3
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+depends=('openssl' 'libidn' 'util-linux')
+checkdepends=('perl-http-daemon' 'perl-io-socket-ssl')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+wget-pod-fixes.patch)
+sha1sums=('cfa0906e6f72c1c902c29b52d140c22ecdcd617e'
+  'SKIP'
+  'aae4be72657c7a8e9dbedb7109cd2d8562a325d2')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i "${srcdir}/wget-pod-fixes.patch"
+  cat >> doc/sample.wgetrc <
+ No problems occurred.
+ 
+-@item 1
++@item C<1>
+ Generic error code.
+ 
+-@item 2
++@item C<2>
+ Parse error---for instance, when parsing command-line options, the
+ @samp{.wgetrc} or @samp{.netrc}...
+ 
+-@item 3
++@item C<3>
+ File I/O error.
+ 
+-@item 4
++@item C<4>
+ Network failure.
+ 
+-@item 5
++@item C<5>
+ SSL verification failure.
+ 
+-@item 6
++@item C<6>
+ Username/password authentication failure.
+ 
+-@item 7
++@item C<7>
+ Protocol errors.
+ 
+-@item 8
++@item C<8>
+ Server issued an error response.
+ @end table
+ 
+@@ -3094,7 +3094,7 @@
+ Change setting of passive @sc{ftp}, equivalent to the
+ @samp{--passive-ftp} option.
+ 
+-@itemx password = @var{string}
++@item password = @var{string}
+ Specify password @var{string} for both @sc{ftp} and @sc{http} file retrieval. 
+ This command can be overridden using the @samp{ftp_password} and 
+ @samp{http_password} command for @sc{ftp} and @sc{http} respectively.
+@@ -3605,7 +3605,7 @@
+ may be specified from within Wget itself.
+ 
+ @table @samp
+-@itemx --no-proxy
++@item --no-proxy
+ @itemx proxy = on/off
+ This option and the corresponding command may be used to suppress the
+ use of proxy, even if the appropriate environment variables are set.

Deleted: extra-i686/wget.install
===
--- extra-i686/wget.install 2013-09-29 17:26:13 UTC (rev 195267)
+++ extra-i686/wget.install 2013-09-29 17:27:18 UTC (rev 195268)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(wget.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
- 

[arch-commits] Commit in wget/repos (10 files)

2012-10-26 Thread Stéphane Gaudreault
Date: Friday, October 26, 2012 @ 21:52:51
  Author: stephane
Revision: 169712

db-move: moved wget from [testing] to [extra] (i686, x86_64)

Added:
  wget/repos/extra-i686/PKGBUILD
(from rev 169711, wget/repos/testing-i686/PKGBUILD)
  wget/repos/extra-i686/wget.install
(from rev 169711, wget/repos/testing-i686/wget.install)
  wget/repos/extra-x86_64/PKGBUILD
(from rev 169711, wget/repos/testing-x86_64/PKGBUILD)
  wget/repos/extra-x86_64/wget.install
(from rev 169711, wget/repos/testing-x86_64/wget.install)
Deleted:
  wget/repos/extra-i686/PKGBUILD
  wget/repos/extra-i686/wget.install
  wget/repos/extra-x86_64/PKGBUILD
  wget/repos/extra-x86_64/wget.install
  wget/repos/testing-i686/
  wget/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   81 +++-
 extra-i686/wget.install   |   40 ++---
 extra-x86_64/PKGBUILD |   81 +++-
 extra-x86_64/wget.install |   40 ++---
 4 files changed, 112 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 00:50:02 UTC (rev 169711)
+++ extra-i686/PKGBUILD 2012-10-27 01:52:51 UTC (rev 169712)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Judd Vinet 
-
-pkgname=wget
-pkgver=1.14
-pkgrel=1
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-depends=('glibc' 'openssl')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('316f6f59292c9098ad81fd54f658c579'
- '3e121933d69f32fa58776bff76bcebd0')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Note : We do not build with --enable-nls, because there is a bug in wget 
causing
-  # international domain names to be not properly converted to punycode if
-  # the current locale is a UTF-8 one
-  # See : http://lists.gnu.org/archive/html/bug-wget/2011-02/msg00026.html
-
-  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cat >> "$pkgdir/etc/wgetrc" <
+# Contributor: Judd Vinet 
+
+pkgname=wget
+pkgver=1.14
+pkgrel=2
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+depends=('openssl' 'libidn' 'pcre' 'util-linux')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('316f6f59292c9098ad81fd54f658c579'
+ '3e121933d69f32fa58776bff76bcebd0')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc --enable-nls
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  cat >> "$pkgdir/etc/wgetrc" < /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: wget/repos/extra-i686/wget.install (from rev 169711, 
wget/repos/testing-i686/wget.install)
===
--- extra-i686/wget.install (rev 0)
+++ extra-i686/wget.install 2012-10-27 01:52:51 UTC (rev 169712)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(wget.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 00:50:02 UTC (rev 169711)
+++ extra-x86_64/PKGBUILD   2012-10-27 01:52:51 UTC (rev 169712)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Judd Vinet 
-
-pkgname=wget
-pkgver=1.14
-pkgrel=1
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-depends=('glibc' 'openssl')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('316f6f59292c9098ad81fd54f658c579'
- '3e121933d69f32fa58776bff76bceb