From 1e56a3c37956a47d9c030cc0176f416e68692792 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 14 Mar 2017 18:49:32 +0100 Subject: [PATCH 1/4] wget: Strip trailing space --- wget-1.17-1.bee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wget-1.17-1.bee b/wget-1.17-1.bee index f13763580..3cb4cc0ff 100755 --- a/wget-1.17-1.bee +++ b/wget-1.17-1.bee @@ -52,7 +52,7 @@ SRCURL[0]="http://ftp.gnu.org/gnu/wget/wget-${PKGVERSION}.tar.xz" #} #mee_configure() { -# bee_configure +# bee_configure #} #mee_build() { From 6240d8213f92e6928ba9baec9302aba0f1b33eac Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 14 Mar 2017 18:50:15 +0100 Subject: [PATCH 2/4] wget: Convert to versionless bee file --- wget-1.17-1.bee => wget.be0 | 2 ++ 1 file changed, 2 insertions(+) rename wget-1.17-1.bee => wget.be0 (98%) diff --git a/wget-1.17-1.bee b/wget.be0 similarity index 98% rename from wget-1.17-1.bee rename to wget.be0 index 3cb4cc0ff..0f69345ce 100755 --- a/wget-1.17-1.bee +++ b/wget.be0 @@ -1,5 +1,7 @@ #!/usr/bin/env beesh +# BEE_VERSION wget-1.17-1 + ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From dc59828d7f2b7a2f1a36f28833e5ff2291504fe5 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 14 Mar 2017 18:50:53 +0100 Subject: [PATCH 3/4] wget: Securely download source archive Use HTTPS to securely download the source archive. --- wget.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wget.be0 b/wget.be0 index 0f69345ce..30ac0fac2 100755 --- a/wget.be0 +++ b/wget.be0 @@ -9,7 +9,7 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="http://ftp.gnu.org/gnu/wget/wget-${PKGVERSION}.tar.xz" +SRCURL[0]="https://ftp.gnu.org/gnu/wget/wget-${PKGVERSION}.tar.xz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. From 94758f3cbcf8ecb1ae3188b7c7245a5a715d53ce Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 14 Mar 2017 18:51:20 +0100 Subject: [PATCH 4/4] wget: Update version from 1.17.1 to 1.19 GNU Wget 1.19 was released on February 3rd, 2017 [1]. > It comes with major improvements for Metalink, IDNA2008 for > international domain names, an option to call external tools > for fetching user/password, several bugfixes and improvements. The update also fixes a crash on my system. ``` $ wget --version GNU Wget 1.17 built on linux-gnu. +digest +https +ipv6 +iri +large-file +nls +ntlm +opie -psl +ssl/gnutls Wgetrc: /etc/wgetrc (system) Locale: /usr/share/locale Compile: gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC="/etc/wgetrc" -DLOCALEDIR="/usr/share/locale" -I. -I/scratch/local/bee-root/wget/wget-1.17-1/source/src -I../lib -I/scratch/local/bee-root/wget/wget-1.17-1/source/lib -I/usr/include/p11-kit-1 -DHAVE_LIBGNUTLS -DNDEBUG Link: gcc -I/usr/include/p11-kit-1 -DHAVE_LIBGNUTLS -DNDEBUG -lpcre -luuid -lnettle -lgnutls -lz -lidn ftp-opie.o gnutls.o http-ntlm.o ../lib/libgnu.a Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Originally written by Hrvoje Niksic . Please send bug reports and questions to . $ wget http://www.coreboot.org/pipermail/coreboot/attachments/20170314/6e97eacd/attachment-0001.bin Segmentation fault (core dumped) ``` [1] https://lists.gnu.org/archive/html/info-gnu/2017-02/msg00000.html --- wget.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wget.be0 b/wget.be0 index 30ac0fac2..f392e848d 100755 --- a/wget.be0 +++ b/wget.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION wget-1.17-1 +# BEE_VERSION wget-1.19-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.)