diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:47:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:47:51 +0000 |
commit | 8e328572811594ac8aac42d380878b61c944c69a (patch) | |
tree | b1c86012fc38e375fb89671e4b2f519ac83b8a34 /debian/patches | |
parent | Adding upstream version 1.21. (diff) | |
download | wget-8e328572811594ac8aac42d380878b61c944c69a.tar.xz wget-8e328572811594ac8aac42d380878b61c944c69a.zip |
Adding debian version 1.21-1+deb11u1.debian/1.21-1+deb11u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/fix-large-downloads-on-32-bit | 26 | ||||
-rw-r--r-- | debian/patches/series | 4 | ||||
-rw-r--r-- | debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc | 22 | ||||
-rw-r--r-- | debian/patches/wget-doc-remove-usr-local-in-wget.texi | 43 | ||||
-rw-r--r-- | debian/patches/wget-passive_ftp-default | 12 |
5 files changed, 107 insertions, 0 deletions
diff --git a/debian/patches/fix-large-downloads-on-32-bit b/debian/patches/fix-large-downloads-on-32-bit new file mode 100644 index 0000000..2e9ca64 --- /dev/null +++ b/debian/patches/fix-large-downloads-on-32-bit @@ -0,0 +1,26 @@ +Debian patch based on the upstream commit below, defuzzed +in the context of the debian package. + +commit 90631a6fe54eabd9c80ede5c70bc916719e76cfe +Author: Tim Rühsen <tim.ruehsen@gmx.de> +Date: Sun Apr 11 12:53:16 2021 +0200 + + * src/wget.h: Use strtoll() for str_to_wgint + + This fixes a regression reported at https://savannah.gnu.org/bugs/?60353. + + Reported-by: Michal Ruprich + +Index: wget-1.21/src/wget.h +=================================================================== +--- wget-1.21.orig/src/wget.h ++++ wget-1.21/src/wget.h +@@ -144,7 +144,7 @@ typedef int64_t wgint; + #define WGINT_MAX INT64_MAX + typedef wgint SUM_SIZE_INT; + +-#define str_to_wgint strtol ++#define str_to_wgint strtoll + + #include "options.h" + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..f8837c2 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1,4 @@ +wget-doc-remove-usr-local-in-sample.wgetrc +wget-doc-remove-usr-local-in-wget.texi +wget-passive_ftp-default +fix-large-downloads-on-32-bit diff --git a/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc b/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc new file mode 100644 index 0000000..9224525 --- /dev/null +++ b/debian/patches/wget-doc-remove-usr-local-in-sample.wgetrc @@ -0,0 +1,22 @@ +corrects the wgetrc path from /usr/local/etc/ to /etc/wgetrc in the sample wgetrc + +--- a/doc/sample.wgetrc ++++ b/doc/sample.wgetrc +@@ -10,7 +10,7 @@ + ## Or online here: + ## https://www.gnu.org/software/wget/manual/wget.html#Startup-File + ## +-## Wget initialization file can reside in /usr/local/etc/wgetrc ++## Wget initialization file can reside in /etc/wgetrc + ## (global, for all users) or $HOME/.wgetrc (for a single user). + ## + ## To use the settings in this file, you will have to uncomment them, +@@ -19,7 +19,7 @@ + + + ## +-## Global settings (useful for setting up in /usr/local/etc/wgetrc). ++## Global settings (useful for setting up in /etc/wgetrc). + ## Think well before you change them, since they may reduce wget's + ## functionality, and make it behave contrary to the documentation: + ## diff --git a/debian/patches/wget-doc-remove-usr-local-in-wget.texi b/debian/patches/wget-doc-remove-usr-local-in-wget.texi new file mode 100644 index 0000000..ef664c2 --- /dev/null +++ b/debian/patches/wget-doc-remove-usr-local-in-wget.texi @@ -0,0 +1,43 @@ +corrects the wgetrc path from /usr/local/etc/ to /etc/wgetrc in the documentation + +--- a/doc/wget.texi 2011-08-06 12:22:58.000000000 +0200 ++++ b/doc/wget.texi 2011-08-12 14:13:35.000000000 +0200 +@@ -190,16 +190,16 @@ + Most of the features are fully configurable, either through command line + options, or via the initialization file @file{.wgetrc} (@pxref{Startup + File}). Wget allows you to define @dfn{global} startup files +-(@file{/usr/local/etc/wgetrc} by default) for site settings. You can also ++(@file{/etc/wgetrc} by default) for site settings. You can also + specify the location of a startup file with the --config option. + To disable the reading of config files, use --no-config. + If both --config and --no-config are given, --no-config is ignored. + + + @ignore + @c man begin FILES + @table @samp +-@item /usr/local/etc/wgetrc ++@item /etc/wgetrc + Default location of the @dfn{global} startup file. + + @item .wgetrc +@@ -2696,9 +2696,7 @@ + @cindex location of wgetrc + + When initializing, Wget will look for a @dfn{global} startup file, +-@file{/usr/local/etc/wgetrc} by default (or some prefix other than +-@file{/usr/local}, if Wget was not installed there) and read commands +-from there, if it exists. ++@file{/etc/wgetrc} by default and read commands from there, if it exists. + + Then it will look for the user's file. If the environmental variable + @code{WGETRC} is set, Wget will try to load that file. Failing that, no +@@ -2708,7 +2706,7 @@ + + The fact that user's settings are loaded after the system-wide ones + means that in case of collision user's wgetrc @emph{overrides} the +-system-wide wgetrc (in @file{/usr/local/etc/wgetrc} by default). ++system-wide wgetrc (in @file{//etc/wgetrc} by default). + Fascist admins, away! + + @node Wgetrc Syntax, Wgetrc Commands, Wgetrc Location, Startup File diff --git a/debian/patches/wget-passive_ftp-default b/debian/patches/wget-passive_ftp-default new file mode 100644 index 0000000..9ec28c8 --- /dev/null +++ b/debian/patches/wget-passive_ftp-default @@ -0,0 +1,12 @@ +make passive-ftp the default + +--- a/doc/sample.wgetrc ++++ b/doc/sample.wgetrc +@@ -43,6 +43,7 @@ + # problems supporting passive transfer. If you are in such + # environment, use "passive_ftp = off" to revert to active FTP. + #passive_ftp = off ++passive_ftp = on + + # The "wait" command below makes Wget wait between every connection. + # If, instead, you want Wget to wait only between retries of failed |