[Pkg-tcltk-commits] r501 - in tk8.4/trunk/debian: . patches
sgolovan-guest at alioth.debian.org
sgolovan-guest at alioth.debian.org
Fri Feb 8 19:18:18 UTC 2008
Author: sgolovan-guest
Date: 2008-02-08 19:18:18 +0000 (Fri, 08 Feb 2008)
New Revision: 501
Added:
tk8.4/trunk/debian/tk8.4.lintian-override
Removed:
tk8.4/trunk/debian/patches/CVE-2006-4484.diff
Modified:
tk8.4/trunk/debian/changelog
tk8.4/trunk/debian/patches/series
tk8.4/trunk/debian/rules
tk8.4/trunk/debian/tk8.4.dirs
Log:
[tk8.4]
* New upstream release.
* Overridden lintian warning package-name-doesnt-match-sonames since tk8.4
package contains not only a library, and it's unreasonable to split it
into smaller parts
Modified: tk8.4/trunk/debian/changelog
===================================================================
--- tk8.4/trunk/debian/changelog 2008-02-08 19:03:50 UTC (rev 500)
+++ tk8.4/trunk/debian/changelog 2008-02-08 19:18:18 UTC (rev 501)
@@ -1,8 +1,11 @@
-tk8.4 (8.4.17-3) UNRELEASED; urgency=low
+tk8.4 (8.4.18-1) unstable; urgency=low
- * NOT RELEASED YET
+ * New upstream release.
+ * Overridden lintian warning package-name-doesnt-match-sonames since tk8.4
+ package contains not only a library, and it's unreasonable to split it
+ into smaller parts
- -- Sergei Golovan <sgolovan at debian.org> Mon, 4 Feb 2008 23:33:34 +0300
+ -- Sergei Golovan <sgolovan at debian.org> Fri, 08 Feb 2008 22:09:13 +0300
tk8.4 (8.4.17-2) unstable; urgency=high
Deleted: tk8.4/trunk/debian/patches/CVE-2006-4484.diff
===================================================================
--- tk8.4/trunk/debian/patches/CVE-2006-4484.diff 2008-02-08 19:03:50 UTC (rev 500)
+++ tk8.4/trunk/debian/patches/CVE-2006-4484.diff 2008-02-08 19:18:18 UTC (rev 501)
@@ -1,22 +0,0 @@
-Patch by upstream fixes vulnerability similar to
-CVE-2006-4484 an unknown impact via a GIF file with input_code_size greater
-than MAX_LWZ_BITS, which triggers an overflow when initializing the table
-array.
-
-Index: tk8.4-8.4.17/generic/tkImgGIF.c
-===================================================================
---- tk8.4-8.4.17.orig/generic/tkImgGIF.c
-+++ tk8.4-8.4.17/generic/tkImgGIF.c
-@@ -826,6 +826,12 @@
- Tcl_PosixError(interp), (char *) NULL);
- return TCL_ERROR;
- }
-+
-+ if (initialCodeSize > MAX_LWZ_BITS) {
-+ Tcl_SetResult(interp, "malformed image", TCL_STATIC);
-+ return TCL_ERROR;
-+ }
-+
- if (transparent != -1) {
- cmap[transparent][CM_RED] = 0;
- cmap[transparent][CM_GREEN] = 0;
Modified: tk8.4/trunk/debian/patches/series
===================================================================
--- tk8.4/trunk/debian/patches/series 2008-02-08 19:03:50 UTC (rev 500)
+++ tk8.4/trunk/debian/patches/series 2008-02-08 19:18:18 UTC (rev 501)
@@ -1,4 +1,3 @@
-CVE-2006-4484.diff
scalable-fonts.diff
tklibrary.diff
tkinc.diff
Modified: tk8.4/trunk/debian/rules
===================================================================
--- tk8.4/trunk/debian/rules 2008-02-08 19:03:50 UTC (rev 500)
+++ tk8.4/trunk/debian/rules 2008-02-08 19:18:18 UTC (rev 501)
@@ -151,6 +151,8 @@
rm -f debian/tk$(v)/usr/share/doc/tk$(v)/examples/license.terms
dh_installmenu -a
dh_installchangelogs -a ChangeLog
+ install -m 644 debian/tk$(v).lintian-override \
+ debian/tk$(v)/usr/share/lintian/overrides/tk$(v)
dh_fixperms -a
dh_strip -a
dh_compress -a -Xusr/share/doc/tk$(v)/examples/
@@ -167,8 +169,8 @@
binary: binary-indep binary-arch
get-orig-source:
- wget -O tk8.4_8.4.17.orig.tar.gz \
- http://prdownloads.sourceforge.net/tcl/tk8.4.17-src.tar.gz
+ wget -O tk8.4_8.4.18.orig.tar.gz \
+ http://prdownloads.sourceforge.net/tcl/tk8.4.18-src.tar.gz
.PHONY: patch unpatch clean-patched build clean binary-indep binary-arch binary install get-orig-source
Modified: tk8.4/trunk/debian/tk8.4.dirs
===================================================================
--- tk8.4/trunk/debian/tk8.4.dirs 2008-02-08 19:03:50 UTC (rev 500)
+++ tk8.4/trunk/debian/tk8.4.dirs 2008-02-08 19:18:18 UTC (rev 501)
@@ -1 +1 @@
-usr/share/tcltk/tk8.4
+usr/share/lintian/overrides
Added: tk8.4/trunk/debian/tk8.4.lintian-override
===================================================================
--- tk8.4/trunk/debian/tk8.4.lintian-override (rev 0)
+++ tk8.4/trunk/debian/tk8.4.lintian-override 2008-02-08 19:18:18 UTC (rev 501)
@@ -0,0 +1 @@
+tk8.4: package-name-doesnt-match-sonames
More information about the Pkg-tcltk-commits
mailing list