urlwatch: Update to urlwatch-2.1
2016-02-03 Thomas Perl <thp.io/about> * Replace urllib usage with requests (by Louis Sautier) * Add cookies support (by Louis Sautier) * Convert README to Markdown (README.md, by Louis Sautier) * Add a new auto-applying filter that uses regexes, fixes #37 (by Louis Sautier) * Use setuptools, install dependencies (Fixes #33) * Fix HTTP basic authentication (Fixes #26) * Add ssl_no_verify option for UrlJob * Update list of dependencies (add requests) * Fix unit tests for files only in source tree (Fixes #34) * Add test/data to source tarball (#34) * Workaround a requests shortcoming related to encoding
This commit is contained in:
parent
8e3048d547
commit
6a6542a949
3 changed files with 13 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.1 2015/08/18 18:36:32 yhardy Exp $
|
||||
|
||||
DISTNAME= urlwatch-2.0
|
||||
DISTNAME= urlwatch-2.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://thp.io/2008/urlwatch/
|
||||
|
||||
|
@ -15,13 +15,14 @@ DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
|
|||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
||||
INSTALLATION_DIRS+= ${PKGMANDIR}/man1 share/doc/${PKGBASE}
|
||||
|
||||
# no support for 2.x
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
||||
|
||||
post-install:
|
||||
${MV} ${DESTDIR}${PREFIX}/share/man/man1/urlwatch.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
||||
${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
||||
|
||||
.include "../../lang/python/application.mk"
|
||||
.include "../../lang/python/distutils.mk"
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
@comment $NetBSD$
|
||||
bin/urlwatch
|
||||
man/man1/urlwatch.1
|
||||
${PYSITELIB}/${EGG_FILE}
|
||||
${PYSITELIB}/${EGG_FILE}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_FILE}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_FILE}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_FILE}/requires.txt
|
||||
${PYSITELIB}/${EGG_FILE}/top_level.txt
|
||||
${PYSITELIB}/urlwatch/__init__.py
|
||||
${PYSITELIB}/urlwatch/__init__.pyc
|
||||
${PYSITELIB}/urlwatch/__init__.pyo
|
||||
|
@ -32,5 +36,6 @@ ${PYSITELIB}/urlwatch/storage.pyo
|
|||
${PYSITELIB}/urlwatch/util.py
|
||||
${PYSITELIB}/urlwatch/util.pyc
|
||||
${PYSITELIB}/urlwatch/util.pyo
|
||||
share/doc/urlwatch/README.md
|
||||
share/urlwatch/examples/hooks.py.example
|
||||
share/urlwatch/examples/urls.yaml.example
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2015/08/18 18:36:32 yhardy Exp $
|
||||
|
||||
SHA1 (urlwatch-2.0.tar.gz) = d14f515d02824bc51bc6a071bd99f97c334119e8
|
||||
RMD160 (urlwatch-2.0.tar.gz) = 7f70dca21b4891fba61b404ba1a86e176a58144f
|
||||
SHA512 (urlwatch-2.0.tar.gz) = 00855557daccf2c418382082392173f03d694be0b6e643ad06fb2a6e0329d17fac37232867686d8e0a6cb79f037e4127a5ea78739bfcd8acfd1cffccf2d78b75
|
||||
Size (urlwatch-2.0.tar.gz) = 22988 bytes
|
||||
SHA1 (urlwatch-2.1.tar.gz) = 0e0336cb621dcbd5e5bda720c06619d2c2936a07
|
||||
RMD160 (urlwatch-2.1.tar.gz) = 9bc6480d8c4b4eebe7e23462e7d4f857fb44e2d9
|
||||
SHA512 (urlwatch-2.1.tar.gz) = 60960b41b592d45a29f967d212580b2687afc5d5053adef7c796044e404a4a1e120ea66d8cd0cbf869cccead76373db0d0ab6d6541a77cc4f8885c02b098f6d2
|
||||
Size (urlwatch-2.1.tar.gz) = 25134 bytes
|
||||
|
|
Loading…
Reference in a new issue