1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
version=3
http://www.tarsnap.com/scrypt.html scrypt/scrypt-(.*)\.tgz
# Signature looks like:
# scrypt/scrypt-sigs-1.1.6.asc
# so should use:
# opts="pgpsigurlmangle=s/\-(.*)\.tgz/-sigs-\\1.asc/"
# but ... that contains a signed armoured message containing an
# SHA256 hash of the tarball, intead of a detached PGP signature,
# so uscan fails to verify it anyway.
# Since roughly 2009 there have been no more release tarballs.
# However maintenance has moved to a publically-accessible
# repository:
# https://code.google.com/p/scrypt/source/browse
# This can be accessed from the debian packaging repository, which
# uses git, via:
# git config svn-remote.svn.url 'http://scrypt.googlecode.com/svn/trunk'
# git config svn-remote.svn.fetch ':refs/remotes/svn/git-svn'
# git svn fetch
# Unfortunately (a) point releases are not tagged, and (b) google code
# no longer supports downloading of tarballs from repo tags, due to
# abuse of that mechanism. However, to date, the svn commits are atomic
# fixes that appear suitable for treatment as point releases. For this
# reason they will be packaged as version+svn.r, where r is the svn
# commit number.
|