Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (d2ec5eea70ce62483d4a3c87862029254b15b52d)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (d2ec5eea70ce62483d4a3c87862029254b15b52d)
  • Date: Fri, 18 Mar 2022 16:08:13 +0000

GIT changes to master grimoire by Florian Franzmann <bwlf AT bandrate.org>:

ftp/wget/DEPENDS | 78
++++++++++++++++++++-----------------------------------
ftp/wget/DETAILS | 8 ++---
ftp/wget/HISTORY | 7 ----
ftp/wget/INSTALL | 5 +++
4 files changed, 38 insertions(+), 60 deletions(-)

New commits:
commit d2ec5eea70ce62483d4a3c87862029254b15b52d
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

Revert "ftp/wget: version 2.0.0"

This reverts commit 2da650d37db3ed11eecd701fc0565def2d3e2465.

wget 2 is incompatible with sorcery.

commit 7f70b45eec0e6e7e308d83a23139397c6ab541f2
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

Revert "wget - update depends"

This reverts commit 0d33a71bd3104215a75991f0514e185ea4f3da66.

wget 2 is incompatible with sorcery.

diff --git a/ftp/wget/DEPENDS b/ftp/wget/DEPENDS
index 926bdf9..297d610 100755
--- a/ftp/wget/DEPENDS
+++ b/ftp/wget/DEPENDS
@@ -1,30 +1,40 @@
depends smgl-fhs &&

-optional_depends pcre2 \
- "--with-libpcre2" \
- "--without-libpcre2" \
- "for PCRE2 regular expressions" &&
-
optional_depends pcre \
- "--with-libpcre" \
- "--without-libpcre" \
+ "--enable-pcre" \
+ "--disable-pcre" \
"for Perl-style regular expressions" &&

-optional_depends libidn2 \
- "--with-libidn2" \
- "--without-libidn2" \
- "for IDN2 support" &&
+optional_depends pcre2 \
+ "--enable-pcre2" \
+ "--disable-pcre2" \
+ "for PCRE2 regular expressions" &&

optional_depends libidn \
- "--with-libidn" \
- "--without-libidn" \
- "for IDN support" &&
+ "--enable-iri" \
+ "--disable-iri" \
+ "for IDN/IRIs support" &&
+
+optional_depends c-ares \
+ "--with-cares" \
+ "--without-cares" \
+ "for C-Ares DNS lookup support" &&

optional_depends "GETTEXT" \
"--enable-nls" \
"--disable-nls" \
"for i18n support" &&

+optional_depends "texinfo" \
+ "" \
+ "" \
+ "to build info files" &&
+
+optional_depends "nettle" \
+ '--enable-ntlm' \
+ '--disable-ntlm' \
+ 'for NTLM authentication' &&
+
optional_depends libpsl \
'--with-libpsl' \
'--without-libpsl' \
@@ -33,42 +43,12 @@ optional_depends libpsl \
optional_depends zlib \
'--with-zlib' \
'--without-zlib' \
- 'gzip compression support' &&
-
-optional_depends xz-utils \
- '--with-lzma' \
- '--without-lzma' \
- 'LZMA compression support' &&
-
-optional_depends bzip2 \
- '--with-bzip2' \
- '--without-bzip2' \
- 'bzip2 compression support' &&
-
-optional_depends brotli \
- '--with-brotlidec' \
- '--without-brotlidec' \
- 'Brotli compression support' &&
-
-optional_depends zstd \
- '--with-zstd' \
- '--without-zstd' \
- 'Zstandard compression support' &&
-
-optional_depends gpgme \
- '--with-gpgme' \
- '--without-gpgme' \
- 'GPGME support' &&
-
-optional_depends nghttp2 \
- '--without-libnghttp2' \
- '--without-libnghttp2' \
- 'HTTP2 support' &&
+ 'for HTTP compression support' &&

-optional_depends doxygen \
- '--enable-doc' \
- '--disable-doc' \
- 'build docs' &&
+optional_depends util-linux \
+ '--with-libuuid' \
+ '--without-libuuid' \
+ 'for UUID generation for WARC files' &&

case $WGET_SSL in
none)
diff --git a/ftp/wget/DETAILS b/ftp/wget/DETAILS
index 8406818..25e6c74 100755
--- a/ftp/wget/DETAILS
+++ b/ftp/wget/DETAILS
@@ -1,10 +1,10 @@
SPELL=wget
- VERSION=2.0.0
+ VERSION=1.21.2
SECURITY_PATCH=6
- SOURCE=${SPELL}2-$VERSION.tar.gz
-
SOURCE_HASH=sha512:59be98a43057220f4eb4314d0876990c21bbc2606a82444e03282ca55d6de18a382fb75b3fcbb1e7f5a5930cd9a81c6c73cdac2ffba3932b55816fb8140c00eb
+ SOURCE=$SPELL-$VERSION.tar.gz
+
SOURCE_HASH=sha512:3e35f92604486ca459f26df97d392579f1d83a9254519e8ce249b410bacf70dddf716d6caa3b29fd4865163f60410b2b8ad1ca1f7bb3dbb2456386b7647b988d
SOURCE_URL[0]=$GNU_URL/$SPELL/$SOURCE
-SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SPELL}2-$VERSION"
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
DOC_DIRS=""
WEB_SITE=https://www.gnu.org/software/wget/
ENTERED=20010922
diff --git a/ftp/wget/HISTORY b/ftp/wget/HISTORY
index 002aab6..bcfca69 100644
--- a/ftp/wget/HISTORY
+++ b/ftp/wget/HISTORY
@@ -1,10 +1,3 @@
-2021-09-24 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: copy depends from wget2 spell, syntax modified
-
-2021-09-18 Florian Franzmann <bwlf AT bandrate.org>
- * DETAILS: version 2.0.0
- * INSTALL: removed
-
2021-09-08 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.21.2

diff --git a/ftp/wget/INSTALL b/ftp/wget/INSTALL
new file mode 100755
index 0000000..8f05b26
--- /dev/null
+++ b/ftp/wget/INSTALL
@@ -0,0 +1,5 @@
+make install DESTDIR=$INSTALL_ROOT &&
+if is_depends_enabled $SPELL texinfo; then
+ install-info --info-dir="${INSTALL_ROOT}/usr/share/info"\
+ ${INSTALL_ROOT}/usr/share/info/wget.info
+fi



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (d2ec5eea70ce62483d4a3c87862029254b15b52d), Florian Franzmann, 03/18/2022

Archive powered by MHonArc 2.6.24.

Top of Page