From 6560fa4912b09b74fb5ae5e05283ff53b7248fc9 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Thu, 20 Mar 2014 10:19:04 +0800 Subject: wget: upgrade from 1.14 to 1.15 * Removed: - fix_doc.patch (backport) * Add the HOMEPAGE. (From OE-Core rev: c5ed2e443d8f3d6c31a3fa99cddc20b8f89f7d0e) Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- meta/recipes-extended/wget/wget-1.14/fix_doc.patch | 71 ---------------------- .../wget/wget-1.14/fix_makefile.patch | 33 ---------- meta/recipes-extended/wget/wget.inc | 1 + meta/recipes-extended/wget/wget/fix_makefile.patch | 33 ++++++++++ meta/recipes-extended/wget/wget_1.14.bb | 10 --- meta/recipes-extended/wget/wget_1.15.bb | 7 +++ 6 files changed, 41 insertions(+), 114 deletions(-) delete mode 100644 meta/recipes-extended/wget/wget-1.14/fix_doc.patch delete mode 100644 meta/recipes-extended/wget/wget-1.14/fix_makefile.patch create mode 100644 meta/recipes-extended/wget/wget/fix_makefile.patch delete mode 100644 meta/recipes-extended/wget/wget_1.14.bb create mode 100644 meta/recipes-extended/wget/wget_1.15.bb (limited to 'meta/recipes-extended/wget') diff --git a/meta/recipes-extended/wget/wget-1.14/fix_doc.patch b/meta/recipes-extended/wget/wget-1.14/fix_doc.patch deleted file mode 100644 index 91a5ff73da..0000000000 --- a/meta/recipes-extended/wget/wget-1.14/fix_doc.patch +++ /dev/null @@ -1,71 +0,0 @@ -Fix documentation build errors with Texinfo 5 and Perl 5.18 - -wget.pod around line 2105: Expected text after =item, not a number -wget.pod around line 2110: Expected text after =item, not a number -wget.pod around line 2116: Expected text after =item, not a number -wget.pod around line 2121: Expected text after =item, not a number -wget.pod around line 2126: Expected text after =item, not a number -wget.pod around line 2131: Expected text after =item, not a number -wget.pod around line 2136: Expected text after =item, not a number -wget.pod around line 2141: Expected text after =item, not a number -wget.texi:879: @itemx must follow @item -wget.texi:980: @itemx must follow @item -wget.texi:3097: @itemx must follow @item -wget.texi:3608: warning: @itemx should not begin @table - -Upstream-Status: Backport -Signed-off-by: Jonathan Liu - -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\<$thing\>\n"; -diff --git a/doc/wget.texi b/doc/wget.texi -index 7efdc72..2b045fd 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. diff --git a/meta/recipes-extended/wget/wget-1.14/fix_makefile.patch b/meta/recipes-extended/wget/wget-1.14/fix_makefile.patch deleted file mode 100644 index 8ad7c62cdf..0000000000 --- a/meta/recipes-extended/wget/wget-1.14/fix_makefile.patch +++ /dev/null @@ -1,33 +0,0 @@ - -Upstream-Status: Pending - -Signed-off-by: Saul Wold - -Index: wget-1.12/po/Makefile.in.in -=================================================================== ---- wget-1.12.orig/po/Makefile.in.in 2009-09-04 09:31:54.000000000 -0700 -+++ wget-1.12/po/Makefile.in.in 2011-10-19 20:32:53.714812160 -0700 -@@ -8,8 +8,8 @@ - # Please note that the actual code of GNU gettext is covered by the GNU - # General Public License and is *not* in the public domain. - # --# Origin: gettext-0.17 --GETTEXT_MACRO_VERSION = 0.17 -+# Origin: gettext-0.18 -+GETTEXT_MACRO_VERSION = 0.18 - - PACKAGE = @PACKAGE@ - VERSION = @VERSION@ -Index: wget-1.12/configure.ac -=================================================================== ---- wget-1.12.orig/configure.ac 2009-09-22 09:39:49.000000000 -0700 -+++ wget-1.12/configure.ac 2011-10-19 20:32:53.714812160 -0700 -@@ -110,7 +110,7 @@ - dnl Gettext - dnl - AM_GNU_GETTEXT([external],[need-ngettext]) --AM_GNU_GETTEXT_VERSION([0.17]) -+AM_GNU_GETTEXT_VERSION([0.18]) - - AC_PROG_RANLIB - diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 22d8e545ba..4eeef708c4 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -1,4 +1,5 @@ SUMMARY = "Console URL download utility supporting HTTP, FTP, etc" +HOMEPAGE = "https://www.gnu.org/software/wget/" SECTION = "console/network" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" diff --git a/meta/recipes-extended/wget/wget/fix_makefile.patch b/meta/recipes-extended/wget/wget/fix_makefile.patch new file mode 100644 index 0000000000..8ad7c62cdf --- /dev/null +++ b/meta/recipes-extended/wget/wget/fix_makefile.patch @@ -0,0 +1,33 @@ + +Upstream-Status: Pending + +Signed-off-by: Saul Wold + +Index: wget-1.12/po/Makefile.in.in +=================================================================== +--- wget-1.12.orig/po/Makefile.in.in 2009-09-04 09:31:54.000000000 -0700 ++++ wget-1.12/po/Makefile.in.in 2011-10-19 20:32:53.714812160 -0700 +@@ -8,8 +8,8 @@ + # Please note that the actual code of GNU gettext is covered by the GNU + # General Public License and is *not* in the public domain. + # +-# Origin: gettext-0.17 +-GETTEXT_MACRO_VERSION = 0.17 ++# Origin: gettext-0.18 ++GETTEXT_MACRO_VERSION = 0.18 + + PACKAGE = @PACKAGE@ + VERSION = @VERSION@ +Index: wget-1.12/configure.ac +=================================================================== +--- wget-1.12.orig/configure.ac 2009-09-22 09:39:49.000000000 -0700 ++++ wget-1.12/configure.ac 2011-10-19 20:32:53.714812160 -0700 +@@ -110,7 +110,7 @@ + dnl Gettext + dnl + AM_GNU_GETTEXT([external],[need-ngettext]) +-AM_GNU_GETTEXT_VERSION([0.17]) ++AM_GNU_GETTEXT_VERSION([0.18]) + + AC_PROG_RANLIB + diff --git a/meta/recipes-extended/wget/wget_1.14.bb b/meta/recipes-extended/wget/wget_1.14.bb deleted file mode 100644 index b12c14711d..0000000000 --- a/meta/recipes-extended/wget/wget_1.14.bb +++ /dev/null @@ -1,10 +0,0 @@ -PR = "${INC_PR}.0" - -SRC_URI = "${GNU_MIRROR}/wget/wget-${PV}.tar.gz \ - file://fix_makefile.patch \ - file://fix_doc.patch \ - " -SRC_URI[md5sum] = "12edc291dba8127f2e9696e69f36299e" -SRC_URI[sha256sum] = "f3a6898e3a765bb94435b04a6668db9e5d19b3e90e0c69a503a2773ae936c269" - -require wget.inc diff --git a/meta/recipes-extended/wget/wget_1.15.bb b/meta/recipes-extended/wget/wget_1.15.bb new file mode 100644 index 0000000000..c2fcca740c --- /dev/null +++ b/meta/recipes-extended/wget/wget_1.15.bb @@ -0,0 +1,7 @@ +SRC_URI = "${GNU_MIRROR}/wget/wget-${PV}.tar.gz \ + file://fix_makefile.patch \ + " +SRC_URI[md5sum] = "506df41295afc6486662cc47470b4618" +SRC_URI[sha256sum] = "52126be8cf1bddd7536886e74c053ad7d0ed2aa89b4b630f76785bac21695fcd" + +require wget.inc -- cgit 1.2.3-korg