From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:41143) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCO8a-00074e-GK for guix-patches@gnu.org; Fri, 05 Apr 2019 08:40:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCO8Z-00048h-AC for guix-patches@gnu.org; Fri, 05 Apr 2019 08:40:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:59839) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hCO8Y-00045r-0n for guix-patches@gnu.org; Fri, 05 Apr 2019 08:40:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hCO8X-0002Oa-Me for guix-patches@gnu.org; Fri, 05 Apr 2019 08:40:01 -0400 Subject: [bug#35156] Followup: Update to 3.49.2 References: <87imvs7io7.fsf@nicolasgoaziou.fr> In-Reply-To: <87imvs7io7.fsf@nicolasgoaziou.fr> Resent-Message-ID: From: Nicolas Goaziou Date: Fri, 05 Apr 2019 14:39:23 +0200 Message-ID: <87ef6g7hj8.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35156@debbugs.gnu.org --=-=-= Content-Type: text/plain This is an update to the latest 3.49.2, which is not tagged as a new release in the repository ! --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-httrack.patch Content-Transfer-Encoding: quoted-printable Content-Description: Update htttrack >From e0d495da8aeab8e0b6d37475af821455e1a1a249 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 5 Apr 2019 14:12:48 +0200 Subject: [PATCH] gnu: Add httrack. * gnu/packages/web.scm (httrack): New variable. --- gnu/packages/web.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index e84b42358c..d6f15d5154 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -30,6 +30,7 @@ ;;; Copyright =C2=A9 2018 G=C3=A1bor Boskovits ;;; Copyright =C2=A9 2018 M=C4=83d=C4=83lin Ionel Patra=C8=99cu ;;; Copyright =C2=A9 2018 Alex Vong +;;; Copyright =C2=A9 2019 Nicolas Goaziou ;;; ;;; This file is part of GNU Guix. ;;; @@ -6430,3 +6431,32 @@ compressed JSON header blocks. provided by Guix. The list of packages is searchable and provides instructions on how to use Guix in a shared HPC environment.") (license l:agpl3+)))) + +(define-public httrack + (package + (name "httrack") + (version "3.49.2") + (source (origin + (method url-fetch) + (uri (string-append "https://mirror.httrack.com/historical/" + "httrack-" version ".tar.gz")) + (sha256 + (base32 + "09a0gm67nml86qby1k1gh7rdxamnrnzwr6l9r5iiq94favjs0xrl")))) + (build-system gnu-build-system) + (inputs + `(("libressl" ,libressl) + ("zlib" ,zlib))) + (home-page "https://www.httrack.com/") + (synopsis "Easy-to-use offline browser utility") + (description "HTTrack allows you to download a World Wide Web site from +the Internet to a local directory, building recursively all directories, +getting HTML, images, and other files from the server to your computer. + +HTTrack arranges the original site's relative link-structure. Simply open +a page of the ``mirrored'' website in your browser, and you can browse the +site from link to link, as if you were viewing it online. HTTrack can also +update an existing mirrored site, and resume interrupted downloads. + +HTTrack is fully configurable, and has an integrated help system.") + (license license:gpl3+))) --=20 2.21.0 --=-=-=--