main/wget: remove unneeded patches

This commit is contained in:
Bartłomiej Piotrowski 2014-01-20 15:28:09 +01:00
parent 972aeb1364
commit a48995c297
3 changed files with 4 additions and 92 deletions

View File

@ -11,9 +11,7 @@ depends=""
makedepends="openssl-dev"
subpackages="$pkgname-doc"
install="wget.post-deinstall"
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
wget-1.14-manpage-tex5.patch
wget-1.14-texi2pod_error_perl518.patch"
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
@ -49,12 +47,6 @@ package() {
return 0
}
md5sums="506df41295afc6486662cc47470b4618 wget-1.15.tar.gz
3f9ccb8e911282bed0f8e0331c423aa9 wget-1.14-manpage-tex5.patch
91c9edc2f49b5ec8cb05f66d5e948327 wget-1.14-texi2pod_error_perl518.patch"
sha256sums="52126be8cf1bddd7536886e74c053ad7d0ed2aa89b4b630f76785bac21695fcd wget-1.15.tar.gz
14b68aedb9f45dc8098c97b9213c490e7696cf39cc20f59cc19f58af1cef911b wget-1.14-manpage-tex5.patch
3396b2bbb23daf6df7fb028807eabca7529a570102942656d9586ffea1d896a6 wget-1.14-texi2pod_error_perl518.patch"
sha512sums="5cd9488891cf8e00503ca3f79c99cabd208e753df5f659c9999fd4076423f8fc5b74d2a004453d67028ce560658753841fa0fa492c4a0993d61c9f19f11df78b wget-1.15.tar.gz
60396d88e75352507b1c2574bffe2c79c9d8aa105ef985722c8794b99e8ae39bdbef40e424f0854b26614bc0729b8954f94ecb980e9f5ac53cad3e0c17ab488c wget-1.14-manpage-tex5.patch
f6c46bde6e7346b0f857c080cc00b217d56cd09b84a0943b72c9505d928d984fa6e0a60ad089edbe526ac432b28eb67e22f4b34444328494be8967078d4527eb wget-1.14-texi2pod_error_perl518.patch"
md5sums="506df41295afc6486662cc47470b4618 wget-1.15.tar.gz"
sha256sums="52126be8cf1bddd7536886e74c053ad7d0ed2aa89b4b630f76785bac21695fcd wget-1.15.tar.gz"
sha512sums="5cd9488891cf8e00503ca3f79c99cabd208e753df5f659c9999fd4076423f8fc5b74d2a004453d67028ce560658753841fa0fa492c4a0993d61c9f19f11df78b wget-1.15.tar.gz"

View File

@ -1,55 +0,0 @@
From a2a34ad8e09117041761fa96830f289aa6e67042 Mon Sep 17 00:00:00 2001
From: Tomas Hozza <thozza@redhat.com>
Date: Fri, 22 Feb 2013 12:29:37 +0100
Subject: [PATCH] Fix @itemx issue when building doc
@itemx should be used ONLY for second and subsequent item(s).
Signed-off-by: Tomas Hozza <thozza@redhat.com>
---
doc/wget.texi | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/doc/wget.texi b/doc/wget.texi
index c1fc82f..3768156 100644
--- a/doc/wget.texi
+++ b/doc/wget.texi
@@ -876,7 +876,7 @@ recommendation to block many unrelated users from a web site due to the
actions of one.
@cindex proxy
-@itemx --no-proxy
+@item --no-proxy
Don't use proxies, even if the appropriate @code{*_proxy} environment
variable is defined.
@@ -977,7 +977,7 @@ are outside the range of @sc{ascii} characters (that is, greater than
whose encoding does not match the one used locally.
@cindex IPv6
-@itemx -4
+@item -4
@itemx --inet4-only
@itemx -6
@itemx --inet6-only
@@ -3094,7 +3094,7 @@ display properly---the same as @samp{-p}.
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 @@ In addition to the environment variables, proxy location and settings
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.
--
1.8.1.2

View File

@ -1,25 +0,0 @@
From 7f43748544f26008d0dd337704f02a6ed3200aaf Mon Sep 17 00:00:00 2001
From: Dave Reisner <dreisner@archlinux.org>
Date: Mon, 17 Jun 2013 23:31:46 +0530
Subject: [PATCH] Fix error in texi2pod intriduced with Perl 5.18
---
doc/texi2pod.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletion(-)
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index 86c4b18..9db6de1 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -291,7 +291,7 @@ while(<$inf>) {
if (defined $1) {
my $thing = $1;
if ($ic =~ /\@asis/) {
- $_ = "\n=item $thing\n";
+ $_ = "\n=item C<$thing>\n";
} else {
# Entity escapes prevent munging by the <> processing below.
$_ = "\n=item $ic\&LT;$thing\&GT;\n";
--
1.8.1.4