r65945 - /trunk/libcgi-application-plugin-authentication-perl/debian/update.sh

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Dec 18 00:41:00 UTC 2010


Author: gregoa
Date: Sat Dec 18 00:40:55 2010
New Revision: 65945

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=65945
Log:
update.sh:
- for some interesting reasons svn-buildpackage fails if the main tarball is a symlink; so add "--rename" to the uscan call
- for consistency also mv the sub tarballs instead of symlinking them

Modified:
    trunk/libcgi-application-plugin-authentication-perl/debian/update.sh

Modified: trunk/libcgi-application-plugin-authentication-perl/debian/update.sh
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcgi-application-plugin-authentication-perl/debian/update.sh?rev=65945&op=diff
==============================================================================
--- trunk/libcgi-application-plugin-authentication-perl/debian/update.sh (original)
+++ trunk/libcgi-application-plugin-authentication-perl/debian/update.sh Sat Dec 18 00:40:55 2010
@@ -10,6 +10,7 @@
 CDBI_VERS=0.02
 FD=--force-download
 NS=--no-symlink
+RE=--rename
 DD="--destdir ${DESTDIR}"
 RS=--report-status
 DC=-"-watch debian/components"
@@ -19,14 +20,14 @@
 then
     echo update;
     rm -f ${DESTDIR}/${MODULE}*.tar.gz
-    uscan ${FD} ${DD} && true;
+    uscan ${FD} ${RE} ${DD} && true;
     uscan ${DC}/driver-dbic/watch ${FD} ${NS} ${DD} ${US} ${DBIC_VERS} && true;
     uscan ${DC}/driver-cdbi/watch ${FD} ${NS} ${DD} ${US} ${CDBI_VERS} && true;
     cd ${DESTDIR}
     DBIC=`ls ${MODULE}-Driver-DBIC*.tar.gz`
-    ln -sf ${DBIC} ${PACKAGE}_${VERSION}.orig-driver-dbic.tar.gz
+    mv ${DBIC} ${PACKAGE}_${VERSION}.orig-driver-dbic.tar.gz
     CDBI=`ls ${MODULE}-Driver-CDBI*.tar.gz`
-    ln -sf ${CDBI} ${PACKAGE}_${VERSION}.orig-driver-cdbi.tar.gz
+    mv ${CDBI} ${PACKAGE}_${VERSION}.orig-driver-cdbi.tar.gz
     cd -
 else
     echo report;




More information about the Pkg-perl-cvs-commits mailing list