1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# watch control file for uscan
# run the "uscan" command to check for upstream updates and more.
# See uscan(1) for format
# Compulsory line, this is a version 4 file
version=4
# PGP signature mangle, so foo.tar.gz has foo.tar.gz.sig
#opts="pgpsigurlmangle=s%$%.sig%"
# GitHub hosted projects
opts="filenamemangle="s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%django-cas-$1.tar.gz%" \
https://github.com/kstateome/django-cas/tags \
(?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate
# PyPI
# https://pypi.python.org/packages/source/<initial>/django-cas/ \
# django-cas-(.+)\.tar\.gz debian uupdate
# Direct Git
# opts="mode=git" http://git.example.com/django-cas.git \
# refs/tags/v([\d\.]+) debian uupdate
|