aboutsummaryrefslogtreecommitdiffstats
path: root/python2-numpydoc/watch
diff options
context:
space:
mode:
Diffstat (limited to 'python2-numpydoc/watch')
-rwxr-xr-xpython2-numpydoc/watch17
1 files changed, 17 insertions, 0 deletions
diff --git a/python2-numpydoc/watch b/python2-numpydoc/watch
new file mode 100755
index 0000000..a7dace9
--- /dev/null
+++ b/python2-numpydoc/watch
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+wget http://pypi.python.org/packages/source/n/numpydoc/ >/dev/null 2>/dev/null
+if [ $? = 0 ]; then
+ grep numpydoc- < index.html | md5sum > new-sum
+ touch sum
+ if [ "$(cat sum)" = "$(cat new-sum)" ]; then
+ rm new-sum
+ else
+ mv new-sum sum
+ echo 'python2-numpydoc'
+ fi
+ rm index.html
+else
+ echo 'python2-numpydoc (unfetchable)'
+fi
+