diff options
author | Louis Sautier <sautier.louis@gmail.com> | 2016-02-05 14:56:16 +0100 |
---|---|---|
committer | Louis Sautier <sautier.louis@gmail.com> | 2016-02-05 14:56:16 +0100 |
commit | b7433c10adfbef1929d28c4c087f2c03cb821f0f (patch) | |
tree | 86465bf671f7fa433fe8b2a283aa89e9a66eb3f8 /www-misc | |
parent | net-misc/asterisk: AST-2016-001 BEAST vulnerability in built-in HTTP server, ... (diff) | |
download | gentoo-b7433c10adfbef1929d28c4c087f2c03cb821f0f.tar.gz gentoo-b7433c10adfbef1929d28c4c087f2c03cb821f0f.tar.bz2 gentoo-b7433c10adfbef1929d28c4c087f2c03cb821f0f.zip |
www-misc/urlwatch: bump to 2.1
Package-Manager: portage-2.2.27
Diffstat (limited to 'www-misc')
-rw-r--r-- | www-misc/urlwatch/Manifest | 1 | ||||
-rw-r--r-- | www-misc/urlwatch/urlwatch-2.1.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/www-misc/urlwatch/Manifest b/www-misc/urlwatch/Manifest index 2d5bb7d6b776..332f12624599 100644 --- a/www-misc/urlwatch/Manifest +++ b/www-misc/urlwatch/Manifest @@ -1,2 +1,3 @@ DIST urlwatch-1.18.tar.gz 14987 SHA256 6b17411b6658f3aeb5839d1b32458f020ce40ee1e62a3d40387a2622fa731824 SHA512 ffbfb41e5b6ca71abf19132424dc1bfb3d0cfc30a644615c34539bb5b00acea5803d4c30637c58e9682820c5411227f7c579344c1e212f575431a1c650a7e520 WHIRLPOOL 49915ef83cc835b8ac67216eaeb61391195f28fa28b5716c7e1cc8c8dac465d9f3670beb408c80dc3fa5315683467524b02b1663fb671f26338059acfa247b23 DIST urlwatch-2.0.tar.gz 22988 SHA256 6be8034671788b8c3633d12e16ae69685f0c4341d2c46bed0e847749f8c76848 SHA512 00855557daccf2c418382082392173f03d694be0b6e643ad06fb2a6e0329d17fac37232867686d8e0a6cb79f037e4127a5ea78739bfcd8acfd1cffccf2d78b75 WHIRLPOOL e0f7fce989391aad6f85dc075e91987bfa1e7fcff06d252625716b692a5052f0dac31553e1676522ef7c0df1488f3059c31ba47922a6cf755d47518fe5e90179 +DIST urlwatch-2.1.tar.gz 25134 SHA256 6627b753f9c7a908863899b1b4eb9283ef8a630bf78490c6e492275a5919c476 SHA512 60960b41b592d45a29f967d212580b2687afc5d5053adef7c796044e404a4a1e120ea66d8cd0cbf869cccead76373db0d0ab6d6541a77cc4f8885c02b098f6d2 WHIRLPOOL 6a9344d9cbfd0afdc79c0d9af364fba493a9c65f6f4fdf322baf3e5a635e231986789d11428e15c40d89030ff587fc9f9f90833f65109af59bd81cc0f70be193 diff --git a/www-misc/urlwatch/urlwatch-2.1.ebuild b/www-misc/urlwatch/urlwatch-2.1.ebuild new file mode 100644 index 000000000000..52ab7552cf31 --- /dev/null +++ b/www-misc/urlwatch/urlwatch-2.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python{3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="A tool for monitoring webpages for updates" +HOMEPAGE="http://thp.io/2008/urlwatch/ https://pypi.python.org/pypi/urlwatch" +SRC_URI="http://thp.io/2008/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-python/keyring[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/minidb[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + || ( www-client/lynx app-text/html2text ) +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + ) +" + +python_test() { + nosetests test || die "tests failed with ${EPYTHON}" +} |