From rousseau at users.alioth.debian.org Sat Jan 18 14:49:05 2014 From: rousseau at users.alioth.debian.org (rousseau at users.alioth.debian.org) Date: Sat, 18 Jan 2014 14:49:05 -0000 Subject: [Pkg-coolkey-commits] r62 - in /coolkey/trunk/debian: changelog patches/coolkey-nextSize.patch patches/series Message-ID: Author: rousseau Date: Sat Jan 18 14:49:05 2014 New Revision: 62 URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=62 Log: Fix "uninitialized variable causes firefox to crash when card is inserted into reader" patch in debian/patches/coolkey-nextSize.patch (Closes: #698230) Added: coolkey/trunk/debian/patches/coolkey-nextSize.patch Modified: coolkey/trunk/debian/changelog coolkey/trunk/debian/patches/series Modified: coolkey/trunk/debian/changelog URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/changelog?rev=62&op=diff ============================================================================== --- coolkey/trunk/debian/changelog (original) +++ coolkey/trunk/debian/changelog Sat Jan 18 14:49:05 2014 @@ -1,3 +1,11 @@ +coolkey (1.1.0-13) UNRELEASED; urgency=medium + + * Fix "uninitialized variable causes firefox to crash when card is + inserted into reader" patch in debian/patches/coolkey-nextSize.patch + (Closes: #698230) + + -- Ludovic Rousseau Sat, 18 Jan 2014 15:32:29 +0100 + coolkey (1.1.0-12) unstable; urgency=low * The coolkey device driver has been updated to follow the new Card Added: coolkey/trunk/debian/patches/coolkey-nextSize.patch URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/patches/coolkey-nextSize.patch?rev=62&op=file ============================================================================== --- coolkey/trunk/debian/patches/coolkey-nextSize.patch (added) +++ coolkey/trunk/debian/patches/coolkey-nextSize.patch Sat Jan 18 14:49:05 2014 @@ -0,0 +1,15 @@ +Description: Fix Firefox crash due to "Assertion `mOldCAC' failed" error +Author: Eric Reischer +Origin: http://www.spinics.net/linux/fedora/coolkey/msg00368.html +Bug-Debian: http://bugs.debian.org/698230 +--- a/src/coolkey/slot.cpp ++++ b/src/coolkey/slot.cpp +@@ -2215,6 +2215,8 @@ + CKYBuffer_InitEmpty(&vBuf); + CKYBuffer_Resize(cert, 0); + ++ *nextSize = 0; ++ + /* handle the new CAC card read */ + /* read the TLV */ + status = CACApplet_ReadFile(conn, CAC_TAG_FILE, &tBuf, NULL); Modified: coolkey/trunk/debian/patches/series URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/patches/series?rev=62&op=diff ============================================================================== --- coolkey/trunk/debian/patches/series (original) +++ coolkey/trunk/debian/patches/series Sat Jan 18 14:49:05 2014 @@ -8,3 +8,4 @@ coolkey-cac-rhl5.patch 0001-Fix-working-with-empty-certificates-in-not-zero-slot.patch Handle-pcscd-restarting +coolkey-nextSize.patch From rousseau at users.alioth.debian.org Sat Jan 18 14:58:43 2014 From: rousseau at users.alioth.debian.org (rousseau at users.alioth.debian.org) Date: Sat, 18 Jan 2014 14:58:43 -0000 Subject: [Pkg-coolkey-commits] r63 - in /coolkey/trunk/debian: changelog control libckyapplet1-dev.install Message-ID: Author: rousseau Date: Sat Jan 18 14:58:43 2014 New Revision: 63 URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=63 Log: Install the libckyapplet.pc in the correct multi-arch directory Modified: coolkey/trunk/debian/changelog coolkey/trunk/debian/control coolkey/trunk/debian/libckyapplet1-dev.install (contents, props changed) Modified: coolkey/trunk/debian/changelog URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/changelog?rev=63&op=diff ============================================================================== --- coolkey/trunk/debian/changelog (original) +++ coolkey/trunk/debian/changelog Sat Jan 18 14:58:43 2014 @@ -3,6 +3,7 @@ * Fix "uninitialized variable causes firefox to crash when card is inserted into reader" patch in debian/patches/coolkey-nextSize.patch (Closes: #698230) + * Install the libckyapplet.pc in the correct multi-arch directory -- Ludovic Rousseau Sat, 18 Jan 2014 15:32:29 +0100 Modified: coolkey/trunk/debian/control URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/control?rev=63&op=diff ============================================================================== --- coolkey/trunk/debian/control (original) +++ coolkey/trunk/debian/control Sat Jan 18 14:58:43 2014 @@ -3,7 +3,7 @@ Priority: optional Maintainer: A. Maitland Bottoms Uploaders: Ludovic Rousseau -Build-Depends: debhelper (>= 9~), autoconf, autotools-dev, pkg-config, zlib1g-dev, libpcsclite-dev, libnss3-dev, libnspr4-dev +Build-Depends: debhelper (>= 9~), autoconf, autotools-dev, pkg-config, zlib1g-dev, libpcsclite-dev, libnss3-dev, libnspr4-dev, dh-exec (>=0.3) Standards-Version: 3.9.3 Homepage: http://directory.fedoraproject.org/wiki/CoolKey Vcs-Browser: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/ Modified: coolkey/trunk/debian/libckyapplet1-dev.install URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/libckyapplet1-dev.install?rev=63&op=diff ============================================================================== --- coolkey/trunk/debian/libckyapplet1-dev.install (original) +++ coolkey/trunk/debian/libckyapplet1-dev.install Sat Jan 18 14:58:43 2014 @@ -1,6 +1,7 @@ +#! /usr/bin/dh-exec src/libckyapplet/.libs/libckyapplet.so usr/lib/ src/libckyapplet/.libs/libckyapplet.a usr/lib/ -src/libckyapplet/libckyapplet.pc usr/lib/pkgconfig/ +src/libckyapplet/libckyapplet.pc usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig/ src/libckyapplet/cky_applet.h usr/include/ src/libckyapplet/cky_card.h usr/include/ src/libckyapplet/cky_base.h usr/include/ Propchange: coolkey/trunk/debian/libckyapplet1-dev.install ------------------------------------------------------------------------------ svn:executable = * From rousseau at users.alioth.debian.org Sat Jan 18 15:00:57 2014 From: rousseau at users.alioth.debian.org (rousseau at users.alioth.debian.org) Date: Sat, 18 Jan 2014 15:00:57 -0000 Subject: [Pkg-coolkey-commits] r64 - in /coolkey/trunk/debian: changelog control Message-ID: Author: rousseau Date: Sat Jan 18 15:00:57 2014 New Revision: 64 URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=64 Log: debian/control: use canonical Vcs-* fields Modified: coolkey/trunk/debian/changelog coolkey/trunk/debian/control Modified: coolkey/trunk/debian/changelog URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/changelog?rev=64&op=diff ============================================================================== --- coolkey/trunk/debian/changelog (original) +++ coolkey/trunk/debian/changelog Sat Jan 18 15:00:57 2014 @@ -4,6 +4,7 @@ inserted into reader" patch in debian/patches/coolkey-nextSize.patch (Closes: #698230) * Install the libckyapplet.pc in the correct multi-arch directory + * debian/control: use canonical Vcs-* fields -- Ludovic Rousseau Sat, 18 Jan 2014 15:32:29 +0100 Modified: coolkey/trunk/debian/control URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/control?rev=64&op=diff ============================================================================== --- coolkey/trunk/debian/control (original) +++ coolkey/trunk/debian/control Sat Jan 18 15:00:57 2014 @@ -6,8 +6,8 @@ Build-Depends: debhelper (>= 9~), autoconf, autotools-dev, pkg-config, zlib1g-dev, libpcsclite-dev, libnss3-dev, libnspr4-dev, dh-exec (>=0.3) Standards-Version: 3.9.3 Homepage: http://directory.fedoraproject.org/wiki/CoolKey -Vcs-Browser: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/ -Vcs-Svn: svn://svn.debian.org/svn/pkg-coolkey/coolkey/trunk +Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-coolkey/coolkey/trunk/ +Vcs-Svn: svn://anonscm.debian.org/pkg-coolkey/coolkey/trunk Package: coolkey Architecture: any From rousseau at users.alioth.debian.org Sat Jan 18 15:02:00 2014 From: rousseau at users.alioth.debian.org (rousseau at users.alioth.debian.org) Date: Sat, 18 Jan 2014 15:02:00 -0000 Subject: [Pkg-coolkey-commits] r65 - /coolkey/trunk/debian/libckyapplet1-dev.dirs Message-ID: Author: rousseau Date: Sat Jan 18 15:01:59 2014 New Revision: 65 URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=65 Log: Remove useless directory Modified: coolkey/trunk/debian/libckyapplet1-dev.dirs Modified: coolkey/trunk/debian/libckyapplet1-dev.dirs URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/libckyapplet1-dev.dirs?rev=65&op=diff ============================================================================== --- coolkey/trunk/debian/libckyapplet1-dev.dirs (original) +++ coolkey/trunk/debian/libckyapplet1-dev.dirs Sat Jan 18 15:01:59 2014 @@ -1,2 +1 @@ -usr/lib/pkgconfig usr/include From rousseau at users.alioth.debian.org Sat Jan 18 15:07:06 2014 From: rousseau at users.alioth.debian.org (rousseau at users.alioth.debian.org) Date: Sat, 18 Jan 2014 15:07:06 -0000 Subject: [Pkg-coolkey-commits] r66 - /coolkey/trunk/debian/changelog Message-ID: Author: rousseau Date: Sat Jan 18 15:07:06 2014 New Revision: 66 URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=66 Log: released Modified: coolkey/trunk/debian/changelog Modified: coolkey/trunk/debian/changelog URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/changelog?rev=66&op=diff ============================================================================== --- coolkey/trunk/debian/changelog (original) +++ coolkey/trunk/debian/changelog Sat Jan 18 15:07:06 2014 @@ -1,4 +1,4 @@ -coolkey (1.1.0-13) UNRELEASED; urgency=medium +coolkey (1.1.0-13) unstable; urgency=medium * Fix "uninitialized variable causes firefox to crash when card is inserted into reader" patch in debian/patches/coolkey-nextSize.patch @@ -6,7 +6,7 @@ * Install the libckyapplet.pc in the correct multi-arch directory * debian/control: use canonical Vcs-* fields - -- Ludovic Rousseau Sat, 18 Jan 2014 15:32:29 +0100 + -- Ludovic Rousseau Sat, 18 Jan 2014 15:06:42 +0000 coolkey (1.1.0-12) unstable; urgency=low From rousseau at users.alioth.debian.org Sat Jan 18 15:11:13 2014 From: rousseau at users.alioth.debian.org (rousseau at users.alioth.debian.org) Date: Sat, 18 Jan 2014 15:11:13 -0000 Subject: [Pkg-coolkey-commits] r67 - in /coolkey/tags/1.1.0-13: ./ debian/changelog debian/control debian/libckyapplet1-dev.dirs debian/libckyapplet1-dev.install debian/patches/coolkey-nextSize.patch debian/patches/series Message-ID: Author: rousseau Date: Sat Jan 18 15:11:13 2014 New Revision: 67 URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=67 Log: [svn-buildpackage] Tagging coolkey 1.1.0-13 Added: coolkey/tags/1.1.0-13/ - copied from r61, coolkey/trunk/ coolkey/tags/1.1.0-13/debian/changelog - copied unchanged from r66, coolkey/trunk/debian/changelog coolkey/tags/1.1.0-13/debian/control - copied unchanged from r64, coolkey/trunk/debian/control coolkey/tags/1.1.0-13/debian/libckyapplet1-dev.dirs - copied unchanged from r65, coolkey/trunk/debian/libckyapplet1-dev.dirs coolkey/tags/1.1.0-13/debian/libckyapplet1-dev.install - copied unchanged from r63, coolkey/trunk/debian/libckyapplet1-dev.install coolkey/tags/1.1.0-13/debian/patches/coolkey-nextSize.patch - copied unchanged from r62, coolkey/trunk/debian/patches/coolkey-nextSize.patch coolkey/tags/1.1.0-13/debian/patches/series - copied unchanged from r62, coolkey/trunk/debian/patches/series