diff options
author | Thiago Perrotta <tbperrotta@gmail.com> | 2021-12-29 13:56:19 -0500 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-12-29 19:04:50 +0000 |
commit | c3f8f5c85e3c6547e6ef0ae0cde774de3deaac14 (patch) | |
tree | 138c8c0c3c1af7a5440545d7b1850da58415d903 | |
parent | 14739c855a88470460ebc4c19349d7e281a52d44 (diff) | |
download | aports-patches/3853.tar.gz aports-patches/3853.tar.bz2 aports-patches/3853.tar.xz |
testing/urlwatch: new aportpatches/3853
https://thp.io/2008/urlwatch/
Tool for monitoring webpages for updates
Signed-off-by: Thiago Perrotta <tbperrotta@gmail.com>
-rw-r--r-- | testing/urlwatch/APKBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/urlwatch/APKBUILD b/testing/urlwatch/APKBUILD new file mode 100644 index 0000000000..72c99f2dee --- /dev/null +++ b/testing/urlwatch/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Thiago Perrotta <tbperrotta@gmail.com> +# Maintainer: Thiago Perrotta <tbperrotta@gmail.com> +pkgname=urlwatch +pkgver=2.24 +pkgrel=0 +pkgdesc="Tool for monitoring webpages for updates" +url="https://thp.io/2008/urlwatch/" +arch="noarch" +license="BSD-3-Clause" +depends="python3 py3-appdirs py3-cssselect py3-keyring py3-lxml py3-minidb py3-requests py3-yaml" +makedepends="py3-setuptools" +checkdepends="py3-pytest py3-docutils py3-pycodestyle" +subpackages="$pkgname-doc" +source="https://files.pythonhosted.org/packages/source/u/urlwatch/urlwatch-$pkgver.tar.gz" + +build() { + python3 setup.py build +} + +check() { + pytest +} + +package() { + python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYING +} + +sha512sums=" +ed84cb69ecd8894851c3be0165edfa1dfee92a0b49ea1383e4cfd7c31eb0604f99b1a90d9508753064b58bdd8fc4c0369d817303858d07562b37c3f2ac4cae52 urlwatch-2.24.tar.gz +" |