From ed4b275fe1dcefd3a8d817dcdff879e1a27ef21e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 30 Jan 2012 03:14:26 +0000 Subject: testing/urlwatch: new aport This script is intended to help you watch URLs and get notified (via email or in your terminal) of any changes. The change notification will include the URL that has changed and a unified diff of what has changed. The script supports the use of a filtering hook function to strip trivially-varying elements of a webpage. Basic features * Simple configuration (text file, one URL per line) * Easily hackable (clean Python implementation) * Can run as a cronjob and mail changes to you * Always outputs only plaintext - no HTML mails :) * Supports removing noise (always-changing website parts) * Example hooks to filter content in Python http://thpinfo.com/2008/urlwatch/ --- testing/urlwatch/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testing/urlwatch/APKBUILD (limited to 'testing/urlwatch/APKBUILD') diff --git a/testing/urlwatch/APKBUILD b/testing/urlwatch/APKBUILD new file mode 100644 index 0000000000..8927ac8a16 --- /dev/null +++ b/testing/urlwatch/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=urlwatch +pkgver=1.14 +pkgrel=0 +pkgdesc="A tool for monitoring webpages for updates" +url="http://thpinfo.com/2008/urlwatch/" +arch="noarch" +license="BSD" +depends="python" +depends_dev="" +makedepends="python-dev" +install="" +subpackages="$pkgname-doc" +source="http://thp.io/2008/$pkgname/$pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="6bff9dab50fe4c45521d0b8e36d604a5 urlwatch-1.14.tar.gz" -- cgit v1.2.3