[Pkg-tcltk-commits] r1563 - tcllib/trunk/debian
sgolovan at alioth.debian.org
sgolovan at alioth.debian.org
Wed Feb 12 08:56:21 UTC 2014
Author: sgolovan
Date: 2014-02-12 08:56:21 +0000 (Wed, 12 Feb 2014)
New Revision: 1563
Modified:
tcllib/trunk/debian/changelog
tcllib/trunk/debian/control
tcllib/trunk/debian/rules
Log:
[tcllib]
* New upstream release.
* Added description of new modues to debian/control.
* Changed the upstream package homepage.
* Bumped standards version to 3.9.5.
Modified: tcllib/trunk/debian/changelog
===================================================================
--- tcllib/trunk/debian/changelog 2014-02-08 20:28:02 UTC (rev 1562)
+++ tcllib/trunk/debian/changelog 2014-02-12 08:56:21 UTC (rev 1563)
@@ -1,8 +1,11 @@
-tcllib (1.15-dfsg-3) UNRELEASED; urgency=low
+tcllib (1.16-dfsg-1) unstable; urgency=low
- * NOT RELEASED YET
+ * New upstream release.
+ * Added description of new modues to debian/control.
+ * Changed the upstream package homepage.
+ * Bumped standards version to 3.9.5.
- -- Sergei Golovan <sgolovan at debian.org> Sat, 11 May 2013 18:52:15 +0400
+ -- Sergei Golovan <sgolovan at debian.org> Wed, 12 Feb 2014 12:55:19 +0400
tcllib (1.15-dfsg-2) unstable; urgency=low
Modified: tcllib/trunk/debian/control
===================================================================
--- tcllib/trunk/debian/control 2014-02-08 20:28:02 UTC (rev 1562)
+++ tcllib/trunk/debian/control 2014-02-12 08:56:21 UTC (rev 1563)
@@ -5,8 +5,8 @@
Uploaders: Sergei Golovan <sgolovan at debian.org>
Build-Depends: debhelper (>= 8.9.7)
Build-Depends-Indep: tcl-dev
-Standards-Version: 3.9.4
-Homepage: http://tcl.activestate.com/software/tcllib/
+Standards-Version: 3.9.5
+Homepage: https://core.tcl.tk/tcllib/home
Package: tcllib
Section: interpreters
@@ -37,10 +37,12 @@
and histograms over the collected data.
* crc: checksum-calculation routines (crc32, cksum, sum)
* csv: functions to handle CSV (comma-separated values) data
+ * debug: debug messages infrastructure
* des: DES and 3DES encryption
* dns: dns- and resolver library-related functions
* docstrip: tools for literate programming, often used with (La)TeX
* doctools: documentation tools
+ * dtplite: lightweight doctools markup processor
* fileutil: Tcl implementations of some standard Unix utilities
* ftp: Tcl interface to the FTP protocol
* ftpd: implementation of functions needed for an FTP server
@@ -103,6 +105,7 @@
* soundex: comparison of words based on their phonetic likeness
* stooop: simple Tcl-only object oriented programming scheme -
provides C++/Java-like OOP interfaces
+ * string: tokenize strings
* stringprep: preparation of internationalized strings
* struct: Tcl implementations of common data structures (tree, graph,
etc)
@@ -121,6 +124,7 @@
* uuid: generator of universally unique identifiers (UUID)
* valtype: validation types
* virtchannel: reflected/virtual channel support
+ * websocket: implementation of the websocket protocol
* wip: word interpreter
* yaml: YAML format encoder/decoder
* zip: working with zip archives
Modified: tcllib/trunk/debian/rules
===================================================================
--- tcllib/trunk/debian/rules 2014-02-08 20:28:02 UTC (rev 1562)
+++ tcllib/trunk/debian/rules 2014-02-12 08:56:21 UTC (rev 1563)
@@ -78,14 +78,6 @@
for f in *.n ; do \
sed -e'/\.so man.macros/ d' \
-e's/^\.TH "math::roman" 1\.0/.TH "math::roman" 3tcl 1.0/' \
- -e's/^\.TH "tcl::chan::fifo" [in] /.TH "tcl::chan::fifo" 3tcllib /' \
- -e's/^\.TH "tcl::chan::fifo2" [in] /.TH "tcl::chan::fifo2" 3tcllib /' \
- -e's/^\.TH "tcl::chan::memchan" [in] /.TH "tcl::chan::memchan" 3tcllib /' \
- -e's/^\.TH "tcl::chan::null" [in] /.TH "tcl::chan::null" 3tcllib /' \
- -e's/^\.TH "tcl::chan::random" [in] /.TH "tcl::chan::random" 3tcllib /' \
- -e's/^\.TH "tcl::chan::string" [in] /.TH "tcl::chan::string" 3tcllib /' \
- -e's/^\.TH "tcl::chan::variable" [in] /.TH "tcl::chan::variable" 3tcllib /' \
- -e's/^\.TH "tcl::chan::zero" [in] /.TH "tcl::chan::zero" 3tcllib /' \
-e's/^\.TH "tcl::transform::zlib" [in] /.TH "tcl::transform::zlib" 3tcllib /' \
-e's/^\.TH \(.\+\) [in] /.TH \1 3tcl /' \
-e's/send(n)/send(3tk)/g' \
@@ -127,17 +119,18 @@
tcltk-depends
dh_gencontrol
-v=1.15
+v=1.16
get-orig-source:
CURDIR=`pwd` && \
TMPDIR=`mktemp -d /tmp/tcllib.XXXXXX` && \
cd $$TMPDIR && \
- wget -O - http://prdownloads.sourceforge.net/tcllib/tcllib-$(v).tar.gz | tar -zx && \
+ wget --no-check-certificate -O - \
+ https://core.tcl.tk/tcllib/tarball/Tcllib-1.16.tar.gz\?uuid=tcllib-1-16 | tar -zx && \
for f in `grep -rl '^Network Working Group' *` ; do \
echo "REMOVING NON-FREE RFC $$f" ; rm -f $$f ; \
done && \
- tar -zcf $$CURDIR/tcllib_$(v)-dfsg.orig.tar.gz tcllib-$(v) && \
+ tar -Jcf $$CURDIR/tcllib_$(v)-dfsg.orig.tar.xz Tcllib-$(v) && \
rm -rf $$TMPDIR
.PHONY: override_dh_clean override_dh_auto_build-indep override_dh_auto_install-indep \
More information about the Pkg-tcltk-commits
mailing list