[Pkg-jed-commit] r683 - in jed-extra/trunk/debian: . examples patches

milde-guest at alioth.debian.org milde-guest at alioth.debian.org
Mon May 14 10:42:06 UTC 2007


Author: milde-guest
Date: 2007-05-14 10:42:05 +0000 (Mon, 14 May 2007)
New Revision: 683

Removed:
   jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch
Modified:
   jed-extra/trunk/debian/changelog
   jed-extra/trunk/debian/contents.txt
   jed-extra/trunk/debian/control
   jed-extra/trunk/debian/examples/50jed-extra.sl
   jed-extra/trunk/debian/patches/00list
Log:
control: SLang -> S-Lang
changelog: new upstream release 2.3.2 (remove the trailer before releasing)
           new ruby mode, (closes: #372231)
           write my name encoding-independent (Günter -> Guenter)
patches/gdbmrecent-clean-stack.dpatch: applied upstream
patches/00list: no active patches
contents.txt: new modes newsflash, pylit, and ruby
              pymode now drop-in instead of extra (works reliable here and
              passes unit-tests).
examples/50jed-extra.sl: removed autoloads now in gdbmrecent.sl
                         add ruby mode for extension "rb"



Modified: jed-extra/trunk/debian/changelog
===================================================================
--- jed-extra/trunk/debian/changelog	2007-05-13 10:21:18 UTC (rev 682)
+++ jed-extra/trunk/debian/changelog	2007-05-14 10:42:05 UTC (rev 683)
@@ -1,13 +1,14 @@
-jed-extra (2.3.1) experimental; urgency=low
-  DO NOT RELEASE YET, WAIT FOR NEW UPSTREAM RELEASE
+jed-extra (2.3.2) experimental; urgency=low
+  <New upstream release finally out: Please check and release>
 
   * New upstream release: fixes and improvements including
       datutils.sl   removed array_reverse(): it is not used anywhere and
                     conflicts with the internal SLang function of the same
                     name (activated by default in Jed >= 0.99.19-51)
       gdbmrecent.sl applied dpatch upstream
+      ruby.sl       new ruby mode, (closes: #372231)
 
- -- Günter Milde   <some date in the future>
+ -- Guenter Milde   2007-05-14
 
 jed-extra (2.2.1-6) unstable; urgency=low
 
@@ -32,8 +33,6 @@
 jed-extra (2.2.1-4) unstable; urgency=low
 
   * Uploaded to lenny [RL]
-  * debian/examples/50jed-extra.sl: (Re)Added the required autoloads for
-    gdbmrecent to fix this independently of the jedstates package [RL, GM]
   * debian/control: Added XS-Vcs-Svn and XS-Vcs-Browser fields
 
  -- Rafael Laboissiere <rafael at debian.org>  Sun, 15 Apr 2007 13:00:52 +0200

Modified: jed-extra/trunk/debian/contents.txt
===================================================================
--- jed-extra/trunk/debian/contents.txt	2007-05-13 10:21:18 UTC (rev 682)
+++ jed-extra/trunk/debian/contents.txt	2007-05-14 10:42:05 UTC (rev 683)
@@ -85,17 +85,20 @@
 A   mtools         Interface to mtools for easy floppy read/write under UNIX
 A   mupad          Mode for Mupad (computer algebra system) files.
 E   navigate       "History feature" known from many browsers
+X   newsflash      RSS+Atom reader
 E   numbuf         Number the buffers and bind Alt-[n] to go to buffer n
 X   occur          occur with context
 #X   outline        outline mode
 X   pcre           Perl-compatible searching functions
 A   po_mode        Mode for editing PO-files
 A   print          printer interface
-X   pymode         Python mode with integrated help and "workbook mode"
+D   pymode         Python mode with integrated help and "workbook mode"
+X   pylit          Helper functions for literal programming with PyLit
 D   recent         Provide easy access to recently opened/saved files.
 X   rfcview        RFC viewer
 #O   rmail          MUA suite
 A   rst            Mode for reStructured Text
+A   ruby           Mode for the ruby programming language
 O   scrnhelp       Show little help buffers
 X   services       uri_hooks for some common URI schemes
 U   sl_utils       Basic SLang programming utils

Modified: jed-extra/trunk/debian/control
===================================================================
--- jed-extra/trunk/debian/control	2007-05-13 10:21:18 UTC (rev 682)
+++ jed-extra/trunk/debian/control	2007-05-14 10:42:05 UTC (rev 683)
@@ -17,7 +17,7 @@
 Provides: dict-client, info-browser, man-browser
 Conflicts: dictionaries-common (<< 0.14.0)
 Description: collection of useful Jed modes and utilities
- The Jed text editor can be easily extended using the SLang scripting
+ The Jed text editor can be easily extended using the S-Lang scripting
  language.
  .
  This package contains add-on packages for the Jed editor, mainly from the

Modified: jed-extra/trunk/debian/examples/50jed-extra.sl
===================================================================
--- jed-extra/trunk/debian/examples/50jed-extra.sl	2007-05-13 10:21:18 UTC (rev 682)
+++ jed-extra/trunk/debian/examples/50jed-extra.sl	2007-05-14 10:42:05 UTC (rev 683)
@@ -44,8 +44,6 @@
 autoload("push_defaults", "sl_utils");    % needed by ispell_init.sl, complete, occur, ...
 autoload("string_nth_match", "strutils"); % needed by hyperman.sl
 autoload("get_keystring", "strutils");    % needed by snake.sl
-autoload("what_line_if_wide", "sl_utils");% needed by gdbmrecent.sl
-autoload("buffer_dirname", "bufutils");   % needed by gdbmrecent.sl
 % alternatively evaluate the utils/ini.sl file (or set the "initialize"
 % argument to 1 in append_libdir($1 + "utils/", 1) above)
 % () = evalfile("utils/ini.sl");          % autoloads for all utilit functions
@@ -60,6 +58,7 @@
   $2 = ();
   add_mode_for_extension ("manedit", $2);
 }
+add_mode_for_extension ("ruby", "rb");
 add_mode_for_extension ("sql", "sql");
 
 % Globally activate extensions

Modified: jed-extra/trunk/debian/patches/00list
===================================================================
--- jed-extra/trunk/debian/patches/00list	2007-05-13 10:21:18 UTC (rev 682)
+++ jed-extra/trunk/debian/patches/00list	2007-05-14 10:42:05 UTC (rev 683)
@@ -1,4 +1,3 @@
-gdbmrecent-clean-stack
 #missing_autoload
 #apsmode
 #ding

Deleted: jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch
===================================================================
--- jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch	2007-05-13 10:21:18 UTC (rev 682)
+++ jed-extra/trunk/debian/patches/gdbmrecent-clean-stack.dpatch	2007-05-14 10:42:05 UTC (rev 683)
@@ -1,19 +0,0 @@
-#! /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);
-      }
- }
- 




More information about the Pkg-jed-commit mailing list