This is an automated email from the git hooks/post-receive script. osamu pushed a commit to branch master in repository devscripts.
commit 552ab1d10edd7d96a7811cdaa9dc2692ac732bbe Author: Osamu Aoki <[email protected]> Date: Mon Aug 21 01:30:57 2017 +0900 test_uscan_mangle: test signature and components --- test/test_uscan_mangle | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/test/test_uscan_mangle b/test/test_uscan_mangle index 972aeb0..101583f 100755 --- a/test/test_uscan_mangle +++ b/test/test_uscan_mangle @@ -38,6 +38,7 @@ DEBUGBASH=":" #COMMAND="$COMMAND --debug" #DEBUGECHO=echo #DEBUGLSLR="ls -laR" +#DEBUGLSLR="ls -la" #DEBUGBASH="bash -i" GPGHOME=$(mktemp -d -p /tmp gpg.XXXXX) @@ -319,13 +320,42 @@ helperWatch() { if grep -q "uupdate" $TMPDIR/${PKG}/debian/watch ; then UUPDATE=uupdate fi + local PGP="" + if grep -q "pgpurlmangle" $TMPDIR/${PKG}/debian/watch ; then + PGP=pgp + fi $XCOMMAND assertEquals "uscan: exit_code!=0 but exit_code=0" "$?" "0" cd $TMPDIR + $DEBUGLSLR UTARBALL=${PKG}-${VERNEW}.tar.gz STARBALL=${PKG}_${PREFIX}${VERNEW}.orig.tar.$GZREPACK assertTrue "$UTARBALL missing: $WATCHLINE" "[ -f $UTARBALL ]" assertTrue "$STARBALL missing: $WATCHLINE" "[ -f $STARBALL ]" + if [ "$PGP" = "pgp" ]; then + UTARSIG=${PKG}-${VERNEW}.tar.gz.sig + if [ -f $UTARSIG ]; then + UTARSIG=${PKG}-${VERNEW}.tar.gz.asc + fi + STARSUG=${PKG}_${PREFIX}${VERNEW}.orig.tar.$GZREPACK.asc + assertTrue "$UTARSIG and *.sig missing: $WATCHLINE" "[ -f $UTARSIG ]" + assertTrue "$STARSIG missing: $WATCHLINE" "[ -f $STARSIG ]" + fi + for cpnt in $COMPONENTS; do + UTARBALL=${cpnt}-${VERNEW}.tar.gz + STARBALL=${PKG}_${PREFIX}${VERNEW}.orig-${cpnt}.tar.$GZREPACK + assertTrue "$UTARBALL missing: $WATCHLINE" "[ -f $UTARBALL ]" + assertTrue "$STARBALL missing: $WATCHLINE" "[ -f $STARBALL ]" + if [ "$PGP" = "pgp" ]; then + UTARSIG=${cpnt}-${VERNEW}.tar.gz.sig + if [ -f $UTARSIG ]; then + UTARSIG=${cpnt}-${VERNEW}.tar.gz.asc + fi + STARSUG=${PKG}_${PREFIX}${VERNEW}.orig-${cpnt}.tar.$GZREPACK.asc + assertTrue "$UTARSIG and *.sig missing: $WATCHLINE" "[ -f $UTARSIG ]" + assertTrue "$STARSIG missing: $WATCHLINE" "[ -f $STARSIG ]" + fi + done # check uupdate if [ "$UUPDATE" = "uupdate" ]; then cd $TMPDIR/${PKG}-${PREFIX}${VERNEW} -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
