1 2 3 4 5 6 7 8 9 10 11 12
|
version=3
# pkg-perl by default tracks versions at metacpan.org
opts=uversionmangle=s/_/./ \
https://metacpan.org/release/Shell .*/Shell-v?(\d[\d._-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
# But metacpan.org doesn't show development versions (but may in the
# future), hence for now we also add search.cpan.org, so we can track
# them, too. (Can be removed if we don't want to track them anymore
# somewhen in the future.)
opts=uversionmangle=s/_/./ \
http://search.cpan.org/dist/Shell/ .*/Shell-v?(\d[\d._-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
|