[Pkg-jed-commit] r1043 - in jed-extra/trunk: . debian utils

Guenter Milde milde-guest at alioth.debian.org
Tue Jan 22 16:28:16 UTC 2008


tags 451565 pending
thanks

Author: milde-guest
Date: 2008-01-22 16:28:16 +0000 (Tue, 22 Jan 2008)
New Revision: 1043

Removed:
   jed-extra/trunk/tests/
Modified:
   jed-extra/trunk/debian/changelog
   jed-extra/trunk/debian/contents.txt
   jed-extra/trunk/debian/copyright
   jed-extra/trunk/debian/rules
   jed-extra/trunk/utils/do-unittests.sl
Log:
new pre release, all tests passed


Modified: jed-extra/trunk/debian/changelog
===================================================================
--- jed-extra/trunk/debian/changelog	2008-01-12 08:37:11 UTC (rev 1042)
+++ jed-extra/trunk/debian/changelog	2008-01-22 16:28:16 UTC (rev 1043)
@@ -1,18 +1,24 @@
-jed-extra (2.4.2pre4-1) DO-NOT-RELEASE; urgency=low
+jed-extra (2.4.2pre6-1) DO-NOT-RELEASE; urgency=low
 
   * New upstream release:
       * fix activation of optional extensions
         (e.g. navigating in the help browser with "," and "." keys),
       * rst.sl: fix tokenlist interface so that Mode>Navigate works again,
+      		split outlining features to rst-outline.sl
       * help.sl: enable-dfa patch applied upstream,
       * libdir.sl: use add_doc_file() (closes: #446271).
+      * ispell.sl: better error report if spell program is missing 
+        (closes: #451565).
+      * tests: include test scripts for some of the modes
   * Remove generated files at every install or removal
-    (Also removes spurious ini.sl~ files from bug #440262).
+    (Also removes spurious ini.sl~ files from bug #446272).
   * Create the System>Ispell menu popup in 50jed-extra.sl
   * Create autoloads for hyperman.sl
-  * contents.txt: Moved 'tar' and 'ffap' modes from eXtra to Extensions,
-    		  moved 'info' from eXtra to Drop-In
-
+  * contents.txt: Moved 'tar' 'hyperman' and 'ffap' from eXtra to Enhancements,
+    		  moved 'info' from eXtra to Drop-in
+  
+  * debian/rules: install test scripts in JED_ROOT/jed-extra/tests/
+    
   * debian/po/fi.po: Added Finnish translation of the debconf templates,
     thanks to Esko Arajärvi (closes: #456976) [RL]
   * debian/copyright: Converted to UTF-8 [RL]

Modified: jed-extra/trunk/debian/contents.txt
===================================================================
--- jed-extra/trunk/debian/contents.txt	2008-01-12 08:37:11 UTC (rev 1042)
+++ jed-extra/trunk/debian/contents.txt	2008-01-22 16:28:16 UTC (rev 1043)
@@ -8,9 +8,9 @@
 # D: Drop-in       replace equally named standard mode with enhanced usability
 # E: Enhancements  provide an improved look and feel or enhance usability
 # O: Obsoleted     no longer needed but still present in Jedmodes
+# T: Tests         test scripts for use with unittest.sl
 # U: Utils         provide functions used by other modes
-# X: eXperimental 
-#    or eXotic     untested and seldom used modes
+# X: extra	   experimental and seldom used modes
 #
 # Obsolete and outcommented modes are not included in the jed-extra package.
 
@@ -61,7 +61,7 @@
 O   home-lib       Initialize libraries for jed extensions easily
 X   howto          howto-reader
 D   hyperhelp      Hypertext help browser.
-D   hyperman       hypertextish man pager
+E   hyperman       hypertextish man pager
 D   info           Info reader for JED
 A   ishell         Interactive shell ("workbook mode")
 D   ispell         spell checking utilities
@@ -113,6 +113,7 @@
 E   tar            interface to GNU tar
 A   temabbrv       On request replaces the word at cursor with a user-defined template
 X   templates      Open templates and do some replacements
+T   tests          Unit test scripts of (some) Jedmodes modes for use with unittest.sl
 A   tm             TM documentation parser and TM creation tools
 A   tokenlist      Display a list of routines or matching lines in current buffer
 #X   tree           Recursive directory listing utility

Modified: jed-extra/trunk/debian/copyright
===================================================================
--- jed-extra/trunk/debian/copyright	2008-01-12 08:37:11 UTC (rev 1042)
+++ jed-extra/trunk/debian/copyright	2008-01-22 16:28:16 UTC (rev 1043)
@@ -27,7 +27,7 @@
     Olesen,    Mark
     Rocher,    Francesc
     Sangoi,    Dino
-    Sommer,    Jörg
+    Sommer,    Jörg
     Wheeler,   Kyle
 
 The authors email can be found either in the source files or at the Jedmodes

Modified: jed-extra/trunk/debian/rules
===================================================================
--- jed-extra/trunk/debian/rules	2008-01-12 08:37:11 UTC (rev 1042)
+++ jed-extra/trunk/debian/rules	2008-01-22 16:28:16 UTC (rev 1043)
@@ -21,8 +21,9 @@
 COLOR = $(shell awk '/^C/ { print $$2"/*"; }' $(CONTENTS_FILE))
 DROP_IN = $(shell awk '/^D/ { print $$2"/*"; }' $(CONTENTS_FILE))
 ENHANCEMENT = $(shell awk '/^E/ { print $$2"/*"; }' $(CONTENTS_FILE))
+EXPERIMENTAL = $(shell awk '/^X/ { print $$2"/*"; }' $(CONTENTS_FILE))
+TESTS = $(shell awk '/^T/ { print $$2"/*"; }' $(CONTENTS_FILE))
 UTILS = $(shell awk '/^U/ { print $$2"/*"; }' $(CONTENTS_FILE))
-EXPERIMENTAL = $(shell awk '/^X/ { print $$2"/*"; }' $(CONTENTS_FILE))
 
 debroot = $(CURDIR)/debian/jed-extra
 libdir = /usr/share/jed/jed-extra
@@ -97,6 +98,9 @@
 ifneq ($(DROP_IN), )
 	dh_install $(dh_inst_excl) $(DROP_IN) $(libdir)/drop-in
 endif
+ifneq ($(TESTS), )
+	dh_install $(dh_inst_excl) $(TESTS) $(libdir)/tests
+endif
 ifneq ($(UTILS), )
 	dh_install $(dh_inst_excl) $(UTILS) $(libdir)/utils
 endif

Modified: jed-extra/trunk/utils/do-unittests.sl
===================================================================
--- jed-extra/trunk/utils/do-unittests.sl	2008-01-12 08:37:11 UTC (rev 1042)
+++ jed-extra/trunk/utils/do-unittests.sl	2008-01-22 16:28:16 UTC (rev 1043)
@@ -29,4 +29,4 @@
 % ignore interactive tests
 
 % test-run the 
-test_files_and_exit("../tests/*.sl");
+test_files_and_exit("/usr/share/jed/jed-extra/tests/*.sl");




More information about the Pkg-jed-commit mailing list