On Sat, August 22, 2020 13:27, Rafael Sadowski wrote:
> As mentioned here:
> https://marc.info/?l=openbsd-ports&m=159447072122157&w=2
>
> Nobody is interested in it, nobody wants to update it and I want to get
> rid of py-qt4.
>
> OK to remove?
>
>
Hi,
Attached is an update to linkchecker-9.4.0.
GUI is not maintained since 2016 by the old upstream and since 2017
by the new one so it was removed from the port.
It is still python2 but doesn't need Qt4 anymore. Next release should
by python3 compatible.
OK to commit?
Index: Makefile
===================================================================
RCS file: /cvs/ports/www/linkchecker/Makefile,v
retrieving revision 1.50
diff -u -p -u -p -r1.50 Makefile
--- Makefile 12 Jul 2019 20:50:47 -0000 1.50
+++ Makefile 25 Aug 2020 11:28:08 -0000
@@ -1,22 +1,14 @@
# $OpenBSD: Makefile,v 1.50 2019/07/12 20:50:47 sthen Exp $
-COMMENT-main= checks HTML documents for broken links, CLI
-COMMENT-x11= checks HTML documents for broken links, GUI
+COMMENT= checks HTML documents for broken links, CLI
-V= 9.3
-REVISION-main= 3
-REVISION-x11= 3
-MODPY_EGG_VERSION=${V}
-GH_ACCOUNT= wummel
+GH_ACCOUNT= linkchecker
GH_PROJECT= linkchecker
-GH_TAGNAME= upstream/$V
+GH_TAGNAME= v9.4.0
-DISTNAME= ${GH_PROJECT}-${V}
-PKGNAME-main= ${DISTNAME}
-PKGNAME-x11= ${GH_PROJECT}-gui-${V}
-CATEGORIES= www
+MODPY_EGG_VERSION=${GH_TAGNAME:S/v//}
-HOMEPAGE= http://wummel.github.io/linkchecker/
+CATEGORIES= www
# GPLv2+
PERMIT_PACKAGE= Yes
@@ -24,31 +16,14 @@ PERMIT_PACKAGE= Yes
WANTLIB+= ${MODPY_WANTLIB} pthread
MODULES= lang/python
+MODPY_SETUPTOOLS = Yes
-RUN_DEPENDS-main= net/py-dnspython \
+RUN_DEPENDS= devel/py-xdg \
+ net/py-dnspython \
www/py-requests
-RUN_DEPENDS-x11= devel/desktop-file-utils \
- www/linkchecker,-main \
- x11/gtk+3,-guic \
- x11/py-qt4
-
SEPARATE_BUILD= Yes
-MULTI_PACKAGES= -main -x11
-WRKDIST= ${WRKDIR}/${GH_PROJECT}-upstream-${V}
NO_TEST= Yes
-
-post-extract:
- @perl -pi -e 's,logo48x48,linkchecker,' ${WRKSRC}/doc/*.desktop
-
-post-install:
-.for s in 16 32 48 64 128
- ${INSTALL_DATA_DIR} ${PREFIX}/share/icons/hicolor/${s}x${s}/apps
- ${INSTALL_DATA} ${WRKSRC}/doc/html/logo${s}x${s}.png \
- ${PREFIX}/share/icons/hicolor/${s}x${s}/apps/linkchecker.png
-.endfor
- ${INSTALL_DATA} ${WRKSRC}/doc/html/lccollection.qhcp \
- ${PREFIX}/share/linkchecker/lccollection.qhc
.include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/linkchecker/distinfo,v
retrieving revision 1.21
diff -u -p -u -p -r1.21 distinfo
--- distinfo 6 Dec 2014 21:26:42 -0000 1.21
+++ distinfo 25 Aug 2020 11:28:08 -0000
@@ -1,2 +1,2 @@
-SHA256 (linkchecker-9.3.tar.gz) = wHsJHD5PzH9K1eraSlesDqENclg2t5+nu8P/IzQzshM=
-SIZE (linkchecker-9.3.tar.gz) = 779255
+SHA256 (linkchecker-9.4.0.tar.gz) = HOSV/F8jZqxbMcvab+8sXPZYK7LVX9lkiTGVJhHkdHM=
+SIZE (linkchecker-9.4.0.tar.gz) = 489909
Index: patches/patch-linkcheck___init___py
===================================================================
RCS file: patches/patch-linkcheck___init___py
diff -N patches/patch-linkcheck___init___py
--- patches/patch-linkcheck___init___py 2 Jul 2017 16:18:44 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,32 +0,0 @@
-$OpenBSD: patch-linkcheck___init___py,v 1.1 2017/07/02 16:18:44 jca Exp $
-
-commit c2ce810c3fb00b895a841a7be6b2e78c64e7b042
-Author: Bastian Kleineidam <[email protected]>
-Date: Tue Jun 28 21:55:10 2016 +0200
-
- Fix python requests version check
-
-Index: linkcheck/__init__.py
---- linkcheck/__init__.py.orig
-+++ linkcheck/__init__.py
-@@ -24,10 +24,17 @@ import sys
- # 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 platform
-+ version = platform.python_version()
-+ raise SystemExit("This program requires Python 2.7.2 or later instead of %s." % version)
-+# require a reasonably recent requests module: 2.4.0 from 2014-08-29
- import requests
--if requests.__version__ <= '2.2.0':
-- raise SystemExit("This program requires Python requests 2.2.0 or later.")
-+# PEP 396 has only version strings, bummer! PEP 386 is also not helpful.
-+requests_version = requests.__version__.split('.')
-+# Depends on the version scheme of Python requests
-+if int(requests_version[0]) < 2 or \
-+ (int(requests_version[0]) == 2 and int(requests_version[1]) < 4):
-+ raise SystemExit("This program requires Python requests 2.4.0 or later instead of %s." % requests.__version__)
-
- import os
- # add the custom linkcheck_dns directory to sys.path
Index: patches/patch-setup_py
===================================================================
RCS file: /cvs/ports/www/linkchecker/patches/patch-setup_py,v
retrieving revision 1.14
diff -u -p -u -p -r1.14 patch-setup_py
--- patches/patch-setup_py 6 Dec 2014 21:26:42 -0000 1.14
+++ patches/patch-setup_py 25 Aug 2020 11:28:08 -0000
@@ -1,7 +1,8 @@
$OpenBSD: patch-setup_py,v 1.14 2014/12/06 21:26:42 kirby Exp $
---- setup.py.orig Wed Jul 16 09:37:19 2014
-+++ setup.py Fri Nov 28 15:55:33 2014
-@@ -368,6 +368,7 @@ class MyInstallLib (install_lib, object):
+Index: setup.py
+--- setup.py.orig
++++ setup.py
+@@ -140,6 +140,7 @@ class MyInstallLib (install_lib, object):
else:
val = getattr(cmd_obj, attr)
if attr == 'install_data':
@@ -9,49 +10,26 @@ $OpenBSD: patch-setup_py,v 1.14 2014/12/
cdir = os.path.join(val, "share", "linkchecker")
data.append('config_dir = %r' % cnormpath(cdir))
elif attr == 'install_lib':
-@@ -654,8 +655,7 @@ myemail = "[email protected]"
-
- data_files = [
- ('share/linkchecker',
-- ['config/linkcheckerrc',
-- 'doc/html/lccollection.qhc', 'doc/html/lcdoc.qch']),
-+ ['config/linkcheckerrc',]),
- ('share/linkchecker/examples',
- ['cgi-bin/lconline/leer.html.en',
- 'cgi-bin/lconline/leer.html.de',
-@@ -669,11 +669,9 @@ data_files = [
- ]
+@@ -420,11 +421,9 @@ for (src, dst) in list_message_files(AppName):
+ data_files.append((dst, [src]))
if os.name == 'posix':
-- data_files.append(('share/man/man1', ['doc/en/linkchecker.1', 'doc/en/linkchecker-gui.1']))
+- data_files.append(('share/man/man1', ['doc/en/linkchecker.1']))
- data_files.append(('share/man/man5', ['doc/en/linkcheckerrc.5']))
-- data_files.append(('share/man/de/man1', ['doc/de/linkchecker.1', 'doc/de/linkchecker-gui.1']))
+- data_files.append(('share/man/de/man1', ['doc/de/linkchecker.1']))
- data_files.append(('share/man/de/man5', ['doc/de/linkcheckerrc.5']))
- data_files.append(('share/linkchecker/examples',
-+ data_files.append(('man/man1', ['doc/en/linkchecker.1', 'doc/en/linkchecker-gui.1']))
++ data_files.append(('man/man1', ['doc/en/linkchecker.1']))
+ data_files.append(('man/man5', ['doc/en/linkcheckerrc.5']))
+ data_files.append(('share/examples/linkchecker',
['config/linkchecker-completion',
'doc/examples/check_blacklist.sh',
'doc/examples/check_for_x_errors.sh',
-@@ -896,9 +894,6 @@ args = dict(
- 'py2exe': MyPy2exe,
- 'py2app': MyPy2app,
- },
-- package_dir = {
-- 'linkcheck_dns.dns': 'third_party/dnspython/dns',
-- },
- packages = [
- 'linkcheck',
- 'linkcheck.bookmarks',
-@@ -913,10 +908,6 @@ args = dict(
- 'linkcheck.network',
- 'linkcheck.parser',
- 'linkcheck.plugins',
-- 'linkcheck_dns.dns',
-- 'linkcheck_dns.dns.rdtypes',
-- 'linkcheck_dns.dns.rdtypes.ANY',
-- 'linkcheck_dns.dns.rdtypes.IN',
+@@ -502,7 +501,6 @@ args = dict(
+ # Requirements, usable with setuptools or the new Python packaging module.
+ install_requires = [
+ 'requests<2.15,>=2.2',
+- 'dnspython',
+ 'pyxdg',
],
- ext_modules = [
- Extension('linkcheck.HtmlParser.htmlsax',
+ # Commented out since they are untested and not officially supported.
Index: pkg/DESCR
===================================================================
RCS file: pkg/DESCR
diff -N pkg/DESCR
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ pkg/DESCR 25 Aug 2020 11:28:08 -0000
@@ -0,0 +1,15 @@
+LinkChecker checks HTML documents for broken links. It features:
+
+o recursive checking
+o multithreading
+o output in colored or normal text, HTML, SQL, CSV or a sitemap
+ graph in GML or XML.
+o HTTP/1.1, HTTPS, FTP, mailto:, news:, nntp:, Gopher, Telnet and local
+ file links support
+o restriction of link checking with regular expression filters for URLs
+o proxy support
+o username/password authorization for HTTP and FTP
+o robots.txt exclusion protocol support
+o i18n support
+
+This package contains a command line interface.
Index: pkg/DESCR-main
===================================================================
RCS file: pkg/DESCR-main
diff -N pkg/DESCR-main
--- pkg/DESCR-main 6 Apr 2015 13:11:14 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-LinkChecker checks HTML documents for broken links. It features:
-
-o recursive checking
-o multithreading
-o output in colored or normal text, HTML, SQL, CSV or a sitemap
- graph in GML or XML.
-o HTTP/1.1, HTTPS, FTP, mailto:, news:, nntp:, Gopher, Telnet and local
- file links support
-o restriction of link checking with regular expression filters for URLs
-o proxy support
-o username/password authorization for HTTP and FTP
-o robots.txt exclusion protocol support
-o i18n support
-
-This package contains a command line interface.
Index: pkg/DESCR-x11
===================================================================
RCS file: pkg/DESCR-x11
diff -N pkg/DESCR-x11
--- pkg/DESCR-x11 6 Apr 2015 13:11:14 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-LinkChecker checks HTML documents for broken links. It features:
-
-o recursive checking
-o multithreading
-o output in colored or normal text, HTML, SQL, CSV or a sitemap
- graph in GML or XML.
-o HTTP/1.1, HTTPS, FTP, mailto:, news:, nntp:, Gopher, Telnet and local
- file links support
-o restriction of link checking with regular expression filters for URLs
-o proxy support
-o username/password authorization for HTTP and FTP
-o robots.txt exclusion protocol support
-o i18n support
-
-This package contains a graphical user interface.
Index: pkg/PLIST
===================================================================
RCS file: pkg/PLIST
diff -N pkg/PLIST
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ pkg/PLIST 25 Aug 2020 11:28:08 -0000
@@ -0,0 +1,248 @@
+@comment $OpenBSD: PLIST,v$
+@pkgpath www/linkchecker,-main
+bin/linkchecker
+lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
+lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO
+lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt
+lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt
+lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt
+lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
+lib/python${MODPY_VERSION}/site-packages/_LinkChecker_configdata.py
+lib/python${MODPY_VERSION}/site-packages/_LinkChecker_configdata.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/htmllib.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/htmllib.pyc
+@so lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/htmlsax.so
+lib/python${MODPY_VERSION}/site-packages/linkcheck/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/ansicolor.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/ansicolor.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/better_exchook2.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/better_exchook2.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chrome.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chrome.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chromium.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chromium.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/firefox.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/firefox.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/opera.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/opera.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/safari.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/safari.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/results.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/results.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/robots_txt.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/robots_txt.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/urlqueue.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/urlqueue.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/const.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/const.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/dnsurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/dnsurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/fileurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/fileurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ftpurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ftpurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/httpurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/httpurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ignoreurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ignoreurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/internpaturl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/internpaturl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/itmsservicesurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/itmsservicesurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/mailtourl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/mailtourl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/nntpurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/nntpurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/proxysupport.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/proxysupport.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/telneturl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/telneturl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/unknownurl.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/unknownurl.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/urlbase.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/urlbase.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cmdline.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cmdline.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/colorama.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/colorama.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/confparse.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/confparse.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/containers.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/containers.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cookies.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/cookies.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/decorators.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/decorators.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/aggregator.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/aggregator.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/checker.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/checker.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/console.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/console.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/interrupt.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/interrupt.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/logger.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/logger.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/status.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/status.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/task.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/director/task.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/dummy.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/dummy.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/fileutil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/fileutil.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/ftpparse.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/ftpparse.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/gzip2.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/gzip2.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/formsearch.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/formsearch.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkname.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkname.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkparse.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkparse.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/httputil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/httputil.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/i18n.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/i18n.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/lc_cgi.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/lc_cgi.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/loader.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/loader.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/lock.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/lock.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/log.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/log.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logconf.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logconf.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/blacklist.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/blacklist.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/csvlog.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/csvlog.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/customxml.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/customxml.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/dot.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/dot.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gml.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gml.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/graph.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/graph.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gxml.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gxml.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/html.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/html.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/none.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/none.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sitemapxml.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sitemapxml.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sql.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sql.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/text.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/text.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/xmllog.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/xmllog.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/mem.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/mem.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/memoryutil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/memoryutil.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/mimeutil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/mimeutil.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/network/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/network/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/network/__init__.pyc
+@so lib/python${MODPY_VERSION}/site-packages/linkcheck/network/_network.so
+lib/python${MODPY_VERSION}/site-packages/linkcheck/network/iputil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/network/iputil.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/sitemap.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/sitemap.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/__init__.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/anchorcheck.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/anchorcheck.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/httpheaderinfo.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/httpheaderinfo.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/locationinfo.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/locationinfo.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/markdowncheck.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/markdowncheck.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parsepdf.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parsepdf.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parseword.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parseword.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/regexcheck.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/regexcheck.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/sslcertcheck.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/sslcertcheck.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/syntaxchecks.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/syntaxchecks.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/viruscheck.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/viruscheck.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/robotparser2.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/robotparser2.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/socketutil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/socketutil.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/strformat.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/strformat.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/threader.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/threader.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/trace.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/trace.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/updater.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/updater.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/url.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/url.pyc
+lib/python${MODPY_VERSION}/site-packages/linkcheck/winutil.py
+lib/python${MODPY_VERSION}/site-packages/linkcheck/winutil.pyc
+@man man/man1/linkchecker.1
+@man man/man5/linkcheckerrc.5
+@comment share/applications/
+@comment share/applications/linkchecker.desktop
+share/examples/linkchecker/
+share/examples/linkchecker/check_blacklist.sh
+share/examples/linkchecker/check_for_x_errors.sh
+share/examples/linkchecker/check_urls.sh
+share/examples/linkchecker/linkchecker-completion
+share/linkchecker/
+share/linkchecker/examples/
+share/linkchecker/examples/check.js
+share/linkchecker/examples/index.html
+share/linkchecker/examples/lc.wsgi
+share/linkchecker/examples/lc_cgi.html.de
+share/linkchecker/examples/lc_cgi.html.en
+share/linkchecker/examples/leer.html.de
+share/linkchecker/examples/leer.html.en
+share/linkchecker/examples/linkchecker.apache2.conf
+share/linkchecker/linkcheckerrc
+share/locale/de/LC_MESSAGES/linkchecker.mo
+share/locale/es/LC_MESSAGES/linkchecker.mo
+share/locale/fr/LC_MESSAGES/linkchecker.mo
Index: pkg/PLIST-main
===================================================================
RCS file: pkg/PLIST-main
diff -N pkg/PLIST-main
--- pkg/PLIST-main 6 Apr 2015 13:11:14 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,303 +0,0 @@
-@comment $OpenBSD: PLIST-main,v 1.1 2015/04/06 13:11:14 kirby Exp $
-@pkgpath www/linkchecker
-bin/linkchecker
-lib/python${MODPY_VERSION}/site-packages/LinkChecker-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
-lib/python${MODPY_VERSION}/site-packages/_LinkChecker_configdata.py
-lib/python${MODPY_VERSION}/site-packages/_LinkChecker_configdata.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/htmllib.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/htmllib.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/HtmlParser/htmlsax.so
-lib/python${MODPY_VERSION}/site-packages/linkcheck/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/ansicolor.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/ansicolor.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/better_exchook2.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/better_exchook2.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chrome.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chrome.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chromium.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/chromium.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/firefox.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/firefox.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/opera.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/opera.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/safari.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/bookmarks/safari.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/results.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/results.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/robots_txt.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/robots_txt.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/urlqueue.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cache/urlqueue.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/const.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/const.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/dnsurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/dnsurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/fileurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/fileurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ftpurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ftpurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/httpurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/httpurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ignoreurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/ignoreurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/internpaturl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/internpaturl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/mailtourl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/mailtourl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/nntpurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/nntpurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/proxysupport.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/proxysupport.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/telneturl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/telneturl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/unknownurl.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/unknownurl.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/urlbase.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/checker/urlbase.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cmdline.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cmdline.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/colorama.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/colorama.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/confparse.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/configuration/confparse.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/containers.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/containers.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cookies.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/cookies.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/decorators.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/decorators.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/aggregator.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/aggregator.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/checker.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/checker.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/console.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/console.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/interrupt.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/interrupt.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/logger.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/logger.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/status.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/status.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/task.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/director/task.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/dummy.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/dummy.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/fileutil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/fileutil.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/ftpparse.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/ftpparse.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/checker.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/checker.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/contextmenu.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/contextmenu.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/debug.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/debug.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/editor.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/editor.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/editor_qsci.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/editor_qsci.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/editor_qt.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/editor_qt.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/help.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/help.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/lineedit.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/lineedit.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_rc.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_rc.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_debug.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_debug.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_editor.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_editor.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_main.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_main.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_options.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/linkchecker_ui_options.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/logger.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/logger.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/options.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/options.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/projects.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/projects.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/properties.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/properties.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/recentdocs.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/recentdocs.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/settings.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/settings.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/statistics.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/statistics.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/syntax.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/syntax.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/updater.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/updater.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/urlmodel.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/urlmodel.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/urlsave.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/urlsave.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/validator.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gui/validator.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gzip2.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/gzip2.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/formsearch.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/formsearch.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkname.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkname.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkparse.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/htmlutil/linkparse.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/httputil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/httputil.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/i18n.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/i18n.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/lc_cgi.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/lc_cgi.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/loader.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/loader.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/lock.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/lock.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/log.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/log.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logconf.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logconf.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/blacklist.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/blacklist.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/csvlog.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/csvlog.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/customxml.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/customxml.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/dot.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/dot.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gml.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gml.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/graph.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/graph.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gxml.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/gxml.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/html.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/html.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/none.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/none.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sitemapxml.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sitemapxml.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sql.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/sql.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/text.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/text.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/xmllog.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/logger/xmllog.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/mem.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/mem.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/memoryutil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/memoryutil.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/mimeutil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/mimeutil.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/network/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/network/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/network/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/network/_network.so
-lib/python${MODPY_VERSION}/site-packages/linkcheck/network/iputil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/network/iputil.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/sitemap.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/parser/sitemap.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/__init__.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/__init__.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/anchorcheck.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/anchorcheck.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/httpheaderinfo.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/httpheaderinfo.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/locationinfo.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/locationinfo.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parsepdf.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parsepdf.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parseword.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/parseword.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/regexcheck.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/regexcheck.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/sslcertcheck.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/sslcertcheck.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/syntaxchecks.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/syntaxchecks.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/viruscheck.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/plugins/viruscheck.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/robotparser2.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/robotparser2.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/socketutil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/socketutil.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/strformat.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/strformat.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/threader.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/threader.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/trace.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/trace.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/updater.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/updater.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/url.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/url.pyc
-lib/python${MODPY_VERSION}/site-packages/linkcheck/winutil.py
-lib/python${MODPY_VERSION}/site-packages/linkcheck/winutil.pyc
-@man man/man1/linkchecker.1
-@man man/man5/linkcheckerrc.5
-@comment share/applications/
-share/examples/linkchecker/
-share/examples/linkchecker/check_blacklist.sh
-share/examples/linkchecker/check_for_x_errors.sh
-share/examples/linkchecker/check_urls.sh
-share/examples/linkchecker/linkchecker-completion
-@comment share/icons/
-@comment share/icons/hicolor/
-@comment share/icons/hicolor/128x128/
-@comment share/icons/hicolor/128x128/apps/
-@comment share/icons/hicolor/16x16/
-@comment share/icons/hicolor/16x16/apps/
-@comment share/icons/hicolor/32x32/
-@comment share/icons/hicolor/32x32/apps/
-@comment share/icons/hicolor/48x48/
-@comment share/icons/hicolor/48x48/apps/
-@comment share/icons/hicolor/64x64/
-@comment share/icons/hicolor/64x64/apps/
-share/linkchecker/
-share/linkchecker/examples/
-share/linkchecker/examples/check.js
-share/linkchecker/examples/index.html
-share/linkchecker/examples/lc.wsgi
-share/linkchecker/examples/lc_cgi.html.de
-share/linkchecker/examples/lc_cgi.html.en
-share/linkchecker/examples/leer.html.de
-share/linkchecker/examples/leer.html.en
-share/linkchecker/examples/linkchecker.apache2.conf
-share/linkchecker/linkcheckerrc
-share/locale/de/LC_MESSAGES/linkchecker.mo
-share/locale/es/LC_MESSAGES/linkchecker.mo
-share/locale/fr/LC_MESSAGES/linkchecker.mo
Index: pkg/PLIST-x11
===================================================================
RCS file: pkg/PLIST-x11
diff -N pkg/PLIST-x11
--- pkg/PLIST-x11 29 Jun 2018 22:16:21 -0000 1.3
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-@comment $OpenBSD: PLIST-x11,v 1.3 2018/06/29 22:16:21 espie Exp $
-@conflict linkchecker-<9.3p0
-bin/linkchecker-gui
-@man man/man1/linkchecker-gui.1
-share/applications/linkchecker-gui.desktop
-@comment share/applications/linkchecker.desktop
-share/icons/hicolor/128x128/apps/linkchecker.png
-share/icons/hicolor/16x16/apps/linkchecker.png
-share/icons/hicolor/32x32/apps/linkchecker.png
-share/icons/hicolor/48x48/apps/linkchecker.png
-share/icons/hicolor/64x64/apps/linkchecker.png
-share/linkchecker/lccollection.qhc
-@tag update-desktop-database
-@tag gtk-update-icon-cache %D/share/icons/hicolor