[Pkg-jed-commit] r540 - in jed-extra/trunk/debian: . patches po

Rafael Laboissiere rafael at alioth.debian.org
Mon Feb 5 23:07:34 CET 2007


Author: rafael
Date: 2007-02-05 23:07:34 +0100 (Mon, 05 Feb 2007)
New Revision: 540

Added:
   jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch
   jed-extra/trunk/debian/po/
   jed-extra/trunk/debian/po/POTFILES.in
   jed-extra/trunk/debian/po/templates.pot
Modified:
   jed-extra/trunk/debian/changelog
   jed-extra/trunk/debian/patches/00list
   jed-extra/trunk/debian/postinst
Log:
Debian release jed-extra_2.2.1-2

Modified: jed-extra/trunk/debian/changelog
===================================================================
--- jed-extra/trunk/debian/changelog	2007-02-05 21:48:56 UTC (rev 539)
+++ jed-extra/trunk/debian/changelog	2007-02-05 22:07:34 UTC (rev 540)
@@ -1,7 +1,7 @@
-jed-extra (2.2.1-2) unstable; urgency=low
+jed-extra (2.2.1-2) experimental; urgency=low
 
-  NOT YET RELEASED!
-
+  * Released to experimental, letting unstable for updates relating to RC
+    bugs and debconf translations, until etch is released [RL]
   * debian/config, debian/templates: Added debconf question for
     removing old files in /etc/jed-init.d/ which were changed by the
     user [RL]
@@ -10,8 +10,17 @@
   * debian/copyright: Fixed upstream URL [RL]
   * debian/watch: Added file for uscan [RL]
 
- --
+ -- Rafael Laboissiere <rafael at debian.org>  Mon,  5 Feb 2007 22:56:06 +0100
 
+jed-extra (2.2.1-1.etch.1) unstable; urgency=low
+
+  * debian/patches/01_gdbmrecent-clean-stack.dpatch: Added patch to fix a
+    bug in purge_not_so_recent(), which did not popped a value in the
+    stack after the call to gdbm_delete().  This patch is blessed by the
+    usptream author. [RL]
+
+ -- Rafael Laboissiere <rafael at debian.org>  Mon,  5 Feb 2007 22:33:54 +0100
+
 jed-extra (2.2.1-1) unstable; urgency=low
 
   New upstream release [GM]

Modified: jed-extra/trunk/debian/patches/00list
===================================================================
--- jed-extra/trunk/debian/patches/00list	2007-02-05 21:48:56 UTC (rev 539)
+++ jed-extra/trunk/debian/patches/00list	2007-02-05 22:07:34 UTC (rev 540)
@@ -1,4 +1,5 @@
+gdbmrecent-clean-stack
 #missing_autoload
-
 #apsmode
 #ding
+

Added: jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch
===================================================================
--- jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch	2007-02-05 21:48:56 UTC (rev 539)
+++ jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch	2007-02-05 22:07:34 UTC (rev 540)
@@ -0,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## gdbmrecent-clean-stack.dpatch by Rafael Laboissiere <rafael at debian.org>
+##
+## DP: Empty the stack in call to purge_not_so_recent() in function
+## DP: gdbm_delete().  The problem was confirmed by the upstream author.
+
+ at DPATCH@
+
+--- jed-extra-2.2.1.orig/gdbmrecent/gdbmrecent.sl
++++ jed-extra-2.2.1/gdbmrecent/gdbmrecent.sl
+@@ -226,7 +226,7 @@
+    foreach(keys)
+      {
+ 	key=();
+-	gdbm_delete(db, key);
++	() = gdbm_delete(db, key);
+      }
+ }
+ 


Property changes on: jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch
___________________________________________________________________
Name: svn:executable
   + *

Added: jed-extra/trunk/debian/po/POTFILES.in
===================================================================
--- jed-extra/trunk/debian/po/POTFILES.in	2007-02-05 21:48:56 UTC (rev 539)
+++ jed-extra/trunk/debian/po/POTFILES.in	2007-02-05 22:07:34 UTC (rev 540)
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] templates

Added: jed-extra/trunk/debian/po/templates.pot
===================================================================
--- jed-extra/trunk/debian/po/templates.pot	2007-02-05 21:48:56 UTC (rev 539)
+++ jed-extra/trunk/debian/po/templates.pot	2007-02-05 22:07:34 UTC (rev 540)
@@ -0,0 +1,40 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: pkg-jed-devel at lists.alioth.debian.org\n"
+"POT-Creation-Date: 2007-02-05 23:02+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Remove old files in /etc/jed-init.d/?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"In the past, the jed-extra package put configuration files in /etc/jed-init."
+"d/, namely 05home-lib.sl, 50jed-extra.sl, and 55ispell.sl.  These files are "
+"not used anymore and should be deleted from the file system."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It seems you have modified one of these files, because one of their MD5  "
+"sums differ from the original values."
+msgstr ""

Modified: jed-extra/trunk/debian/postinst
===================================================================
--- jed-extra/trunk/debian/postinst	2007-02-05 21:48:56 UTC (rev 539)
+++ jed-extra/trunk/debian/postinst	2007-02-05 22:07:34 UTC (rev 540)
@@ -1,5 +1,7 @@
 #!/bin/sh -e
 
+. /usr/share/debconf/confmodule
+
 case "$1" in
   configure)
 	/usr/share/jed/compile/jed-extra install




More information about the Pkg-jed-commit mailing list