[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/21: gnu: linkchecker: Update to 9.4.0.
From: |
Tobias Geerinckx-Rice |
Subject: |
04/21: gnu: linkchecker: Update to 9.4.0. |
Date: |
Wed, 6 Jun 2018 00:12:53 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 15dd85f0c3b362b0a1e41afbcbaa421cb54212fa
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Wed Jun 6 01:13:56 2018 +0200
gnu: linkchecker: Update to 9.4.0.
* gnu/packages/web.scm (linkchecker): Update to 9.4.0.
[source]: Use GIT-FETCH.
[inputs]: Add python2-dnspython and python2-pyxdg.
[arguments]: Remove ‘remove-python-requests-version’ phase.
[license]: Remove licences of unbundled inputs.
---
gnu/packages/web.scm | 39 +++++++++++++++------------------------
1 file changed, 15 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index fb967af..12a165b 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -73,6 +73,7 @@
#:use-module (gnu packages databases)
#:use-module (gnu packages bison)
#:use-module (gnu packages flex)
+ #:use-module (gnu packages freedesktop)
#:use-module (gnu packages kerberos)
#:use-module (gnu packages gd)
#:use-module (gnu packages gettext)
@@ -5563,28 +5564,23 @@ Instagram and YouTube.")
(define-public linkchecker
(package
(name "linkchecker")
- (version "9.3")
+ (version "9.4.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "LinkChecker" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/linkchecker/linkchecker")
+ (commit (string-append "v" version))))
(sha256
(base32
- "0v8pavf0bx33xnz1kwflv0r7lxxwj7vg3syxhy2wzza0wh6sc2pf"))))
+ "03ihjmc4bqxxqv71bb43r2f23sx0xnbq1k2fsg9fw05qa5s9x187"))))
(build-system python-build-system)
(inputs
- `(("python2-requests" ,python2-requests)))
+ `(("python2-dnspython" ,python2-dnspython)
+ ("python2-pyxdg" ,python2-pyxdg)
+ ("python2-requests" ,python2-requests)))
(arguments
- `(#:python ,python-2
- #:phases
- (modify-phases %standard-phases
- ;; Remove faulty python-requests version check. This has been fixed
- ;; upstream, and can be removed in version 9.4.
- (add-after 'unpack 'remove-python-requests-version
- (lambda _
- (substitute* "linkcheck/__init__.py"
- (("requests.__version__ <= '2.2.0'") "False"))
- #t)))))
+ `(#:python ,python-2))
(home-page "https://linkcheck.github.io/linkchecker")
(synopsis "Check websites for broken links")
(description "LinkChecker is a website validator. It checks for broken
@@ -5593,15 +5589,10 @@ colored or normal text, HTML, SQL, CSV, XML or as a
sitemap graph. It
supports checking HTTP/1.1, HTTPS, FTP, mailto, news, nntp, telnet and local
file links.")
(license (list l:gpl2+
- l:bsd-2 ; linkcheck/better_exchook2.py
- l:bsd-3 ; linkcheck/colorama.py
- l:psfl ; linkcheck/gzip2.py
- l:expat ; linkcheck/mem.py
- ;; FIXME: Unbundle dnspython and miniboa
- ;; This issue has been raised upstream
- ;; https://github.com/wummel/linkchecker/issues/729
- l:isc ; third_party/dnspython
- l:asl2.0)))) ; third_party/miniboa
+ l:bsd-2 ; linkcheck/better_exchook2.py
+ l:bsd-3 ; linkcheck/colorama.py
+ l:psfl ; linkcheck/gzip2.py
+ l:expat)))) ; linkcheck/mem.py
(define-public cadaver
(package
- branch master updated (d83c9fc -> 37b561e), Tobias Geerinckx-Rice, 2018/06/06
- 01/21: gnu: libwacom, xf86-input-wacom: Update home page., Tobias Geerinckx-Rice, 2018/06/06
- 05/21: gnu: ruby-connection-pool: Update to 2.2.2., Tobias Geerinckx-Rice, 2018/06/06
- 06/21: gnu: ruby-eventmachine: Update to 1.2.7., Tobias Geerinckx-Rice, 2018/06/06
- 02/21: gnu: libwacom: Update to 0.30., Tobias Geerinckx-Rice, 2018/06/06
- 09/21: gnu: ruby-asciidoctor: Use HTTPS home page., Tobias Geerinckx-Rice, 2018/06/06
- 04/21: gnu: linkchecker: Update to 9.4.0.,
Tobias Geerinckx-Rice <=
- 10/21: gnu: inxi: Fix man page location., Tobias Geerinckx-Rice, 2018/06/06
- 07/21: gnu: ruby-eventmachine: Use working home page., Tobias Geerinckx-Rice, 2018/06/06
- 03/21: gnu: xf86-input-wacom: Update to 0.36.1., Tobias Geerinckx-Rice, 2018/06/06
- 08/21: gnu: ruby-asciidoctor: Update to 1.5.7.1., Tobias Geerinckx-Rice, 2018/06/06
- 12/21: gnu: inxi: Update to 3.0.11-1., Tobias Geerinckx-Rice, 2018/06/06
- 15/21: gnu: cfitsio: Update to 3.450., Tobias Geerinckx-Rice, 2018/06/06
- 18/21: gnu: python-lmdb: Update to 0.94., Tobias Geerinckx-Rice, 2018/06/06
- 11/21: gnu: inxi: Use GIT-FETCH., Tobias Geerinckx-Rice, 2018/06/06
- 16/21: gnu: tomb: Update to 2.5., Tobias Geerinckx-Rice, 2018/06/06
- 13/21: gnu: wcslib: Fix build., Tobias Geerinckx-Rice, 2018/06/06