Package Details: linkchecker 10.4.0-2

Git Clone URL: https://aur.archlinux.org/linkchecker.git (read-only, click to copy)
Package Base: linkchecker
Description: check links in web documents or full websites
Upstream URL: https://github.com/linkcheck/linkchecker
Keywords: 404 check crawl link
Licenses: GPL2
Submitter: None
Maintainer: Rubo
Last Packager: Rubo
Votes: 33
Popularity: 0.135766
First Submitted: 2005-11-09 05:36 (UTC)
Last Updated: 2024-03-02 20:48 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

gbabin commented on 2018-03-04 22:03 (UTC)

Please add python2-dnspython to dependencies as indicated in the requirements.txt file in the source repository.

Also, this package includes /usr/bin/linkchecker-gui which seems weird since there is a separate linkchecker-gui package.

Finally, this package should probably be named linkchecker-git.

Appart from that, it works, so thank !

jazztickets commented on 2017-11-07 21:40 (UTC)

Add python2-xdg to dependencies

Teemperor commented on 2017-11-06 10:00 (UTC)

Needs a dependency to `pyxdg`: Traceback (most recent call last): File "/usr/bin/linkchecker", line 36, in <module> from linkcheck.cmdline import print_version, print_usage, aggregate_url, \ File "/usr/lib/python2.7/site-packages/linkcheck/cmdline.py", line 24, in <module> from .director import console File "/usr/lib/python2.7/site-packages/linkcheck/director/__init__.py", line 24, in <module> from ..cache import urlqueue, robots_txt, results File "/usr/lib/python2.7/site-packages/linkcheck/cache/robots_txt.py", line 20, in <module> from .. import robotparser2 File "/usr/lib/python2.7/site-packages/linkcheck/robotparser2.py", line 31, in <module> from . import log, LOG_CHECK, configuration File "/usr/lib/python2.7/site-packages/linkcheck/configuration/__init__.py", line 35, in <module> from xdg.BaseDirectory import xdg_config_home, xdg_data_home ImportError: No module named xdg.BaseDirectory

galaux commented on 2017-06-29 20:12 (UTC) (edited on 2017-06-29 20:31 (UTC) by galaux)

You must be missing something because when building in a chroot, I get the following fail: ``` ==> Building in chroot for [extra] (x86_64)... ==> Creating clean working copy [miguel]...done ==> Making package: linkchecker 9.4-1 (Thu Jun 29 22:04:10 CEST 2017) ==> Retrieving sources... -> Cloning linkchecker git repo... Cloning into bare repository '/enc/home/miguel/documents/it/archlinux/packages/sources/linkchecker'... remote: Counting objects: 38204, done. remote: Compressing objects: 100% (10/10), done. remote: Total 38204 (delta 3), reused 2 (delta 0), pack-reused 38194 Receiving objects: 100% (38204/38204), 65.86 MiB | 457.00 KiB/s, done. Resolving deltas: 100% (27488/27488), done. ==> Validating source files with sha256sums... linkchecker ... Skipped ==> ERROR: Cannot find the git package needed to handle git sources. ==> ERROR: An unknown error has occurred. Exiting... ==> ERROR: Build failed, check /var/lib/archbuild/extra-x86_64/miguel/build ``` Also, per this commit [0] fixing this issue [1], LinkChecker won't work unless you have `python2-requests<2.15`. [0] https://github.com/linkcheck/linkchecker/commit/8dc2963264b84babca3d501c195d470a58006ac0 [1] https://github.com/linkcheck/linkchecker/issues/74

masser commented on 2017-03-30 13:07 (UTC)

2agrim The project was divided into two parts: 1. linkchecker (Command line version) 2. linkchecker-gui (GUI version) In AUR present both versions. https://aur.archlinux.org/packages/linkchecker/ https://aur.archlinux.org/packages/linkchecker-gui/

agrim commented on 2017-03-26 12:10 (UTC)

According to this bug https://github.com/wummel/linkchecker/issues/708 the project moved to https://github.com/linkcheck/linkchecker Any chance to get an updated version? thanks

electricprism commented on 2016-12-09 00:08 (UTC)

The Icon listed in the desktop launcher is a bad link, could you add a patch to correct the link? I've noted the problem over here: https://github.com/wummel/linkchecker/issues/695

michalzuber commented on 2016-07-05 06:41 (UTC)

Made a patch for the package https://gist.github.com/mikaelz/7477f9ad5628157e1a371900776b26c1 Thanks @Sathors for the solution

Sathors commented on 2016-06-10 16:29 (UTC) (edited on 2016-06-10 16:31 (UTC) by Sathors)

@e-anima, the bug is resolved in this pull request: https://github.com/wummel/linkchecker/pull/650. The problem is that it is not yet merged, and it does not seem it will get merged soon. I used the code from the pull request to create a patch, to add to the PKGBUILD, and resolve the problem until the pull request gets merged. Actually the pull request itself is not working as a patch, because of a one character difference (the "if requests.__version__ <" has to be "if requests.__version__ <="). The patch is ``` diff --git a/linkcheck/__init__.py b/linkcheck/__init__.py index 22a0cf5..219e576 100644 --- a/linkcheck/__init__.py +++ b/linkcheck/__init__.py @@ -20,13 +20,14 @@ # version checks import sys +from distutils.version import LooseVersion # Needs Python >= 2.7 because we use dictionary based logging config # Needs Python >= 2.7.2 which fixed http://bugs.python.org/issue11467 if not (hasattr(sys, 'version_info') or sys.version_info < (2, 7, 2, 'final', 0)): raise SystemExit("This program requires Python 2.7.2 or later.") import requests -if requests.__version__ <= '2.2.0': +if LooseVersion(requests.__version__) < LooseVersion('2.2.0'): raise SystemExit("This program requires Python requests 2.2.0 or later.") import os ```

e-anima commented on 2016-05-18 09:45 (UTC)

wehn trying to launch from the console: This program requires Python requests 2.2.0 or later.