Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/urlwatch/
Date: Tue, 01 Jun 2021 07:17:15
Message-Id: 1622531830.e769e540af964cddcd951ae03038d234981061c9.monsieurp@gentoo
1 commit: e769e540af964cddcd951ae03038d234981061c9
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 1 07:16:45 2021 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 07:17:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e769e540
7
8 www-misc/urlwatch: drop 2.17
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11
12 www-misc/urlwatch/Manifest | 1 -
13 www-misc/urlwatch/urlwatch-2.17.ebuild | 63 ----------------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/www-misc/urlwatch/Manifest b/www-misc/urlwatch/Manifest
17 index 5de07ae4b91..d9e15d90ae2 100644
18 --- a/www-misc/urlwatch/Manifest
19 +++ b/www-misc/urlwatch/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST urlwatch-2.17.tar.gz 44178 BLAKE2B 46163b3305a50c3b5165da8f794c252aeb0a3581f16ba04cc1f0d920066accd02f7eba47718012e2ac0071f6bfa31019777a28840179a28a7fe365ae2e8f1d2c SHA512 635bca7e55641dd73447f5ec9ad429539decfaa8a1c19ab073c3bd46acfc518fa6012d855e0c37dd78654da28acf1446f580def611bcb85ae94fe13f567e3613
22 DIST urlwatch-2.22.tar.gz 136306 BLAKE2B e7f10872e5d7f42ec0ac1073783431c4b0e4fcdcf40884a9f7f52aee36705fbdbaaf5f9e671223715040c6f68cc580f531ba753c9326a2b1380d2fb707f66f1c SHA512 f2c1e0d279689d1e5761203ba139614b972c6266c30877262d59759b0ce63342a820a063f001039848427ea4af4325505c636762cdedb3dc60ebd09e859914f4
23 DIST urlwatch-2.23.tar.gz 137917 BLAKE2B 330c52cad62985d24b2cc4c7345156abe9d5d369f8b3f4402856eb96a98f75422de49045bc10910e5cc81306744aad2dce7c05667a6f4eeb22b2bba47869f260 SHA512 e54f8fe2d8307ca9f2f222e6a2082d517a330db60e410b7c991283a2bf88aa861306965b23ca644811aa69425ec2281f7f48d5e34047b808c0897f45ffc7fcbc
24
25 diff --git a/www-misc/urlwatch/urlwatch-2.17.ebuild b/www-misc/urlwatch/urlwatch-2.17.ebuild
26 deleted file mode 100644
27 index b1488b254b6..00000000000
28 --- a/www-misc/urlwatch/urlwatch-2.17.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{7,8} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="A tool for monitoring webpages for updates"
40 -HOMEPAGE="https://thp.io/2008/urlwatch/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - dev-python/appdirs[${PYTHON_USEDEP}]
51 - dev-python/cssselect[${PYTHON_USEDEP}]
52 - dev-python/keyring[${PYTHON_USEDEP}]
53 - dev-python/lxml[${PYTHON_USEDEP}]
54 - dev-python/minidb[${PYTHON_USEDEP}]
55 - dev-python/pyyaml[${PYTHON_USEDEP}]
56 - dev-python/requests[${PYTHON_USEDEP}]
57 -"
58 -BDEPEND="
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 - test? (
61 - ${RDEPEND}
62 - dev-python/nose[${PYTHON_USEDEP}]
63 - dev-python/pycodestyle[${PYTHON_USEDEP}]
64 - )
65 -"
66 -
67 -DOCS=( CHANGELOG.md README.md )
68 -
69 -# https://github.com/thp/urlwatch/pull/382
70 -PATCHES=( "${FILESDIR}/${P}-fix-yaml.load.patch" )
71 -
72 -python_test() {
73 - nosetests -v test || die "tests failed with ${EPYTHON}"
74 -}
75 -
76 -pkg_postinst() {
77 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
78 - if ! has_version dev-python/chump; then
79 - elog "Install 'dev-python/chump' to enable Pushover" \
80 - "notifications support"
81 - fi
82 - if ! has_version dev-python/pushbullet-py; then
83 - elog "Install 'dev-python/pushbullet-py' to enable" \
84 - "Pushbullet notifications support"
85 - fi
86 - elog "HTML parsing can be improved by installing one of the following packages"
87 - elog "and changing the html2text subfilter parameter:"
88 - elog "dev-python/beautifulsoup:4"
89 - elog "app-text/html2text"
90 - elog "dev-python/html2text"
91 - elog "www-client/lynx"
92 - fi
93 -}