[Pkg-tcltk-commits] r1663 - tcl8.6/trunk/debian
sgolovan at alioth.debian.org
sgolovan at alioth.debian.org
Wed Aug 27 18:55:57 UTC 2014
Author: sgolovan
Date: 2014-08-27 18:55:57 +0000 (Wed, 27 Aug 2014)
New Revision: 1663
Modified:
tcl8.6/trunk/debian/changelog
tcl8.6/trunk/debian/rules
Log:
[tcl8.6]
* Removed the sourceless help file compat/zlib/contrib/dotzlib/DotZLib.chm.
Modified: tcl8.6/trunk/debian/changelog
===================================================================
--- tcl8.6/trunk/debian/changelog 2014-08-27 16:25:53 UTC (rev 1662)
+++ tcl8.6/trunk/debian/changelog 2014-08-27 18:55:57 UTC (rev 1663)
@@ -1,10 +1,11 @@
-tcl8.6 (8.6.2-1) unstable; urgency=low
+tcl8.6 (8.6.2+dfsg-1) unstable; urgency=low
* New upstream release.
* Refreshed patches.
* Added new symbols to the debian/libtcl8.6.symbols file.
+ * Removed the sourceless help file compat/zlib/contrib/dotzlib/DotZLib.chm.
- -- Sergei Golovan <sgolovan at debian.org> Wed, 27 Aug 2014 20:11:59 +0400
+ -- Sergei Golovan <sgolovan at debian.org> Wed, 27 Aug 2014 22:55:32 +0400
tcl8.6 (8.6.1-6) unstable; urgency=low
Modified: tcl8.6/trunk/debian/rules
===================================================================
--- tcl8.6/trunk/debian/rules 2014-08-27 16:25:53 UTC (rev 1662)
+++ tcl8.6/trunk/debian/rules 2014-08-27 18:55:57 UTC (rev 1663)
@@ -124,8 +124,16 @@
dh_shlibdeps -a -ldebian/libtcl$(v)/usr/lib/$(DEB_HOST_MULTIARCH)
get-orig-source:
- wget -O tcl$(v)_$(v).2.orig.tar.gz \
- http://prdownloads.sourceforge.net/tcl/tcl-core$(v).2-src.tar.gz
+ CURDIR=`pwd` && \
+ TMPDIR=`mktemp -d /tmp/tcl8.6.XXXXXX` && \
+ cd $$TMPDIR && \
+ wget -O - \
+ http://prdownloads.sourceforge.net/tcl/tcl-core$(v).2-src.tar.gz | tar -zx && \
+ for f in `find . -name *.chm` ; do \
+ echo "REMOVING NON-FREE DOC $$f" ; rm -f $$f ; \
+ done && \
+ tar -zcf $$CURDIR/tcl$(v)_$(v).2+dfsg.orig.tar.gz tcl$(v).2 && \
+ rm -rf $$TMPDIR
.PHONY: override_dh_auto_clean override_dh_auto_configure override_dh_auto_install \
override_dh_strip override_dh_makeshlibs override_dh_shlibdeps get-orig-source
More information about the Pkg-tcltk-commits
mailing list