Date: Mon, 20 May 2019 21:20:45 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502173 - in head/www: . py-urlwatch Message-ID: <201905202120.x4KLKj41079414@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Mon May 20 21:20:45 2019 New Revision: 502173 URL: https://svnweb.freebsd.org/changeset/ports/502173 Log: New port: www/py-urlwatch With urlwatch you can watch changes in webpages and get notified (via e-mail, in your terminal or through various third party services) of any changes. The change notification will include the URL that has changed and a unified diff of what has changed. WWW: https://github.com/thp/urlwatch Added: head/www/py-urlwatch/ head/www/py-urlwatch/Makefile (contents, props changed) head/www/py-urlwatch/distinfo (contents, props changed) head/www/py-urlwatch/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon May 20 21:15:48 2019 (r502172) +++ head/www/Makefile Mon May 20 21:20:45 2019 (r502173) @@ -1848,6 +1848,7 @@ SUBDIR += py-url SUBDIR += py-urlgrabber SUBDIR += py-urlobject + SUBDIR += py-urlwatch SUBDIR += py-user_agent SUBDIR += py-utidylib SUBDIR += py-w3lib Added: head/www/py-urlwatch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-urlwatch/Makefile Mon May 20 21:20:45 2019 (r502173) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= urlwatch +DISTVERSION= 2.17 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kai@FreeBSD.org +COMMENT= Monitors webpages and sends notifications about changes + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}minidb>0:databases/py-minidb@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}appdirs>0:devel/py-appdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycodestyle>0:devel/py-pycodestyle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}keyring>0:security/py-keyring@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cssselect>0:www/py-cssselect@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} + +USES= python:3.3+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v + +.include <bsd.port.mk> Added: head/www/py-urlwatch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-urlwatch/distinfo Mon May 20 21:20:45 2019 (r502173) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558315936 +SHA256 (urlwatch-2.17.tar.gz) = 08f51c7ffe7489c0be7a6c54855e074da65131714e4b6c622e4cfb107ef7ea78 +SIZE (urlwatch-2.17.tar.gz) = 44178 Added: head/www/py-urlwatch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-urlwatch/pkg-descr Mon May 20 21:20:45 2019 (r502173) @@ -0,0 +1,7 @@ +With urlwatch you can watch changes in webpages and get notified (via e-mail, +in your terminal or through various third party services) of any changes. + +The change notification will include the URL that has changed and a unified +diff of what has changed. + +WWW: https://github.com/thp/urlwatch
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905202120.x4KLKj41079414>