Author: moeller Date: 2011-07-31 12:40:26 +0000 (Sun, 31 Jul 2011) New Revision: 7353
Added: trunk/packages/vcftools/trunk/debian/README.source Modified: trunk/packages/vcftools/trunk/debian/changelog trunk/packages/vcftools/trunk/debian/control trunk/packages/vcftools/trunk/debian/rules Log: Series of further changes. Added: trunk/packages/vcftools/trunk/debian/README.source =================================================================== --- trunk/packages/vcftools/trunk/debian/README.source (rev 0) +++ trunk/packages/vcftools/trunk/debian/README.source 2011-07-31 12:40:26 UTC (rev 7353) @@ -0,0 +1,20 @@ +vcftools - changes to source tree +================================= + +A series of files and directories needed to be removed - nothing dramatic: + +$ find . -name ".svn" +./website/img/.svn +./website/src/.svn +./website/.svn +./cpp/.svn +./examples/.svn +./perl/.svn +$ find . -name ".svn" | xargs -r rm -r +$ find . -name "*.pdf" +./website/VCF-poster.pdf +$ find . -name "*.pdf" | xargs -r rm + +Also, the source tree has now the version number attached with a hyphen +instead of an underscore. + Modified: trunk/packages/vcftools/trunk/debian/changelog =================================================================== --- trunk/packages/vcftools/trunk/debian/changelog 2011-07-30 09:04:42 UTC (rev 7352) +++ trunk/packages/vcftools/trunk/debian/changelog 2011-07-31 12:40:26 UTC (rev 7353) @@ -1,5 +1,11 @@ vcftools (0.1.6-1) unstable; urgency=low - * Initial release (Closes: #633142 + [ Thorsten ] + * Initial release (Closes: #633142). + [ Steffen as the package's sponsor ] + * Added README.source + * Removed Andreas and myself from uploaders + * Followed FTPmaster's advice to remove the source-less .pdf from source tree + -- Thorsten Alteholz <[email protected]> Sun, 10 Jul 2011 15:18:25 +0200 Modified: trunk/packages/vcftools/trunk/debian/control =================================================================== --- trunk/packages/vcftools/trunk/debian/control 2011-07-30 09:04:42 UTC (rev 7352) +++ trunk/packages/vcftools/trunk/debian/control 2011-07-31 12:40:26 UTC (rev 7353) @@ -6,9 +6,7 @@ Homepage: http://vcftools.sourceforge.net Maintainer: Debian Med Packaging Team <[email protected]> DM-Upload-Allowed: yes -Uploaders: Andreas Tille <[email protected]>, - Steffen Moeller <[email protected]>, - Thorsten Alteholz <[email protected]> +Uploaders: Thorsten Alteholz <[email protected]> Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/vcftools/trunk/ Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/vcftools/trunk Modified: trunk/packages/vcftools/trunk/debian/rules =================================================================== --- trunk/packages/vcftools/trunk/debian/rules 2011-07-30 09:04:42 UTC (rev 7352) +++ trunk/packages/vcftools/trunk/debian/rules 2011-07-31 12:40:26 UTC (rev 7353) @@ -14,8 +14,10 @@ override_dh_clean: dh_clean + # [ -r Makefile ] && make clean ? find . -name '.svn' -a -type d| xargs -r rm -rf - + find . -name "*.pdf" | xargs -r rm + override_dh_auto_install: mkdir -p debian/vcftools/usr/bin cp bin/* debian/vcftools/usr/bin @@ -28,5 +30,9 @@ dh_installchangelogs perl/ChangeLog dh_auto_install -get-orig-source: - uscan --verbose --force-download +# The get-orig-source target needs some furhter work +#get-orig-source: +# uscan --verbose --force-download +# # .svn and *.pdf needs to be removed +# #mv vcftools_0.1.6 vcftools-0.1.6 +# #GZIP="-9 -n" tar czvf vcftools_0.1.6.orig.^Cr.gz vcftools-0.1.6/ _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
