[Pkg-tcltk-commits] r1740 - in tcllib/trunk/debian: . patches
sgolovan at alioth.debian.org
sgolovan at alioth.debian.org
Sat May 23 06:34:37 UTC 2015
Author: sgolovan
Date: 2015-05-23 06:34:37 +0000 (Sat, 23 May 2015)
New Revision: 1740
Removed:
tcllib/trunk/debian/patches/html-textarea-xss.patch
Modified:
tcllib/trunk/debian/changelog
tcllib/trunk/debian/control
tcllib/trunk/debian/patches/series
tcllib/trunk/debian/rules
Log:
[tcllib]
* New upstream release.
* Added new modules to the long package description.
* Removed a patch which fixes <textarea/> elements in the html module
because it is applied upstream.
Modified: tcllib/trunk/debian/changelog
===================================================================
--- tcllib/trunk/debian/changelog 2015-05-05 11:42:20 UTC (rev 1739)
+++ tcllib/trunk/debian/changelog 2015-05-23 06:34:37 UTC (rev 1740)
@@ -1,8 +1,11 @@
-tcllib (1.16-dfsg-3) UNRELEASED; urgency=medium
+tcllib (1.17-dfsg-1) unstable; urgency=medium
- * NOT RELEASED YET
+ * New upstream release.
+ * Added new modules to the long package description.
+ * Removed a patch which fixes <textarea/> elements in the html module
+ because it is applied upstream.
- -- Sergei Golovan <sgolovan at debian.org> Mon, 09 Mar 2015 15:48:41 +0300
+ -- Sergei Golovan <sgolovan at debian.org> Sat, 23 May 2015 09:10:20 +0300
tcllib (1.16-dfsg-2) unstable; urgency=medium
Modified: tcllib/trunk/debian/control
===================================================================
--- tcllib/trunk/debian/control 2015-05-05 11:42:20 UTC (rev 1739)
+++ tcllib/trunk/debian/control 2015-05-23 06:34:37 UTC (rev 1740)
@@ -36,10 +36,11 @@
* counter: provides a counter facility and can compute statistics
and histograms over the collected data.
* crc: checksum-calculation routines (crc32, cksum, sum)
+ * cron: automating the period callback of commands
* 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
+ * 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
@@ -76,11 +77,14 @@
* md5crypt: md5 based password hashing
* mime: a MIME encoder and decoder
* multiplexer: message multiplexing
+ * namespacex: namespace utility commands
* ncgi: a new CGI processing module
+ * nettool: tools for networked applications
* nmea: NMEA protocol implementation
* nns: name service facility
* nntp: Tcl functions for the NNTP protocol
* ntp: functions for an NTP client
+ * oauth: oauth API base signature
* ooutil: utility commands for TclOO
* otp: RFC 2289 a one-time password system
* page: parser generator
@@ -89,6 +93,7 @@
* png: functions to query and modify PNG images
* pop3: a POP3 protocol implementation
* pop3d: a POP3 server implementation
+ * processman: manage child processes
* profiler: a function level Tcl source code profiler
* pt: parser tools
* rc4: implementation of the RC4 stream cipher
Deleted: tcllib/trunk/debian/patches/html-textarea-xss.patch
===================================================================
--- tcllib/trunk/debian/patches/html-textarea-xss.patch 2015-05-05 11:42:20 UTC (rev 1739)
+++ tcllib/trunk/debian/patches/html-textarea-xss.patch 2015-05-23 06:34:37 UTC (rev 1740)
@@ -1,16 +0,0 @@
-Author: upstream
-Description: Patch fixes an XSS vulnerability in <textarea/> HTML element in
- the html Tcllib module
-Last-Modified: Mon, 09 Mar 2015 15:06:15 +0300
-
---- a/modules/html/html.tcl
-+++ b/modules/html/html.tcl
-@@ -912,7 +912,7 @@
- # The html fragment
-
- proc ::html::textarea {name {param {}} {current {}}} {
-- ::set value [ncgi::value $name $current]
-+ ::set value [quoteFormValue [ncgi::value $name $current]]
- return "<[string trimright \
- "textarea name=\"$name\"\
- [tagParam textarea $param]"]>$value</textarea>\n"
Modified: tcllib/trunk/debian/patches/series
===================================================================
--- tcllib/trunk/debian/patches/series 2015-05-05 11:42:20 UTC (rev 1739)
+++ tcllib/trunk/debian/patches/series 2015-05-23 06:34:37 UTC (rev 1740)
@@ -1 +1 @@
-html-textarea-xss.patch
+#
Modified: tcllib/trunk/debian/rules
===================================================================
--- tcllib/trunk/debian/rules 2015-05-05 11:42:20 UTC (rev 1739)
+++ tcllib/trunk/debian/rules 2015-05-23 06:34:37 UTC (rev 1740)
@@ -120,18 +120,18 @@
tcltk-depends
dh_gencontrol
-v=1.16
+v=1.17
get-orig-source:
CURDIR=`pwd` && \
TMPDIR=`mktemp -d /tmp/tcllib.XXXXXX` && \
cd $$TMPDIR && \
- wget --no-check-certificate -O - \
- https://core.tcl.tk/tcllib/tarball/Tcllib-1.16.tar.gz\?uuid=tcllib-1-16 | tar -zx && \
+ wget -O - \
+ http://downloads.sourceforge.net/project/tcllib/tcllib/$(v)/tcllib-$(v).tar.gz | tar -zx && \
for f in `grep -rl '^Network Working Group' *` ; do \
echo "REMOVING NON-FREE RFC $$f" ; rm -f $$f ; \
done && \
- tar -Jcf $$CURDIR/tcllib_$(v)-dfsg.orig.tar.xz 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