[Pkg-jed-commit] r266 - in trunk/packages/jed/debian: . patches

Jörg Sommer jo-guest at costa.debian.org
Sat Apr 29 16:19:54 UTC 2006


Author: jo-guest
Date: 2006-04-29 16:19:53 +0000 (Sat, 29 Apr 2006)
New Revision: 266

Modified:
   trunk/packages/jed/debian/changelog
   trunk/packages/jed/debian/compile
   trunk/packages/jed/debian/control
   trunk/packages/jed/debian/patches/50_jed-manpage.dpatch
Log:
* jed/debian/control:
  + removed x-dev as build dependency; this is a transition package

  + added the Homepage pseudo header as the developers reference
    suggests it in section 6.2.4

* jed/debian/control, jed/debian/compile:
  + dropped the version from the findutils dependency and replaced the
    -delete option in the compile script in jed-common; we can now
    compile the package as it is under sarge

* jed/debian/patches/50_jed-manpage.dpatch:
  + lintian warned that a simple minus (-) is treated as a hypen by
    groff. To get a real minus it must be escaped: \-


Modified: trunk/packages/jed/debian/changelog
===================================================================
--- trunk/packages/jed/debian/changelog	2006-04-27 09:33:44 UTC (rev 265)
+++ trunk/packages/jed/debian/changelog	2006-04-29 16:19:53 UTC (rev 266)
@@ -13,6 +13,15 @@
 
     + added the Uploaders: field [RL]
 
+    + removed x-dev as build dependency; this is a transition package [JS]
+
+    + added the Homepage pseudo header as the developers reference
+      suggests it in section 6.2.4. [JS]
+
+    + dropped the version from the findutils dependency and replaced the
+      -delete option in the compile script in jed-common; this makes
+      backporting of the package easier. [JS]
+
   * debian/patches/00list:
     + disabled xrender extension and gpm support on hurd-i386 and
       kfreebsd-i386 now uniformly by dpatch [JS]
@@ -45,7 +54,7 @@
   [GM] Guenter Milde
   [RL] Rafael Laboissiere
 
- -- Debian JED Group <pkg-jed-devel at lists.alioth.debian.org>  Sat, 22 Apr 2006 18:43:09 +0200
+ -- Debian JED Group <pkg-jed-devel at lists.alioth.debian.org>  Sat, 29 Apr 2006 18:04:56 +0200
 
 jed (0.99.17.135-1) experimental; urgency=low
 

Modified: trunk/packages/jed/debian/compile
===================================================================
--- trunk/packages/jed/debian/compile	2006-04-27 09:33:44 UTC (rev 265)
+++ trunk/packages/jed/debian/compile	2006-04-29 16:19:53 UTC (rev 266)
@@ -10,7 +10,7 @@
         # again at installation
 	;;
   remove)
-	find $LIBDIR \( -name \*.slc -o -name \*.dfa \) -delete
+	find $LIBDIR \( -name \*.slc -o -name \*.dfa \) -print0 | xargs -0 rm
 	;;
   *)
 	echo "unknown argument --> \"$1"\" >&2

Modified: trunk/packages/jed/debian/control
===================================================================
--- trunk/packages/jed/debian/control	2006-04-27 09:33:44 UTC (rev 265)
+++ trunk/packages/jed/debian/control	2006-04-29 16:19:53 UTC (rev 266)
@@ -4,7 +4,7 @@
 Maintainer: Debian JED Group <pkg-jed-devel at lists.alioth.debian.org>
 Uploaders: Rafael Laboissiere <rafael at debian.org>
 Standards-Version: 3.6.2
-Build-Depends: debhelper, hevea, libgpmg1-dev [!hurd-i386 !kfreebsd-i386], libslang2-dev, libxft-dev, libxt-dev, x-dev, dpatch
+Build-Depends: debhelper, hevea, libgpmg1-dev [!hurd-i386 !kfreebsd-i386], libslang2-dev, libxft-dev, libxt-dev, dpatch
 
 Package: jed
 Architecture: any
@@ -23,6 +23,8 @@
  replace across multiple files; multiple windows; multiple buffers;
  shell modes; directory editor (dired); mail; rmail; ispell; and
  much more.
+ .
+  Homepage: http://www.jedsoft.org/jed/
 
 Package: xjed
 Architecture: any
@@ -45,14 +47,17 @@
  .
  Note: In this version, C-h deletes the previous character instead of
  loading the help menu. Help is now on Esc-?.
+ .
+  Homepage: http://www.jedsoft.org/jed/
 
 Package: jed-common
 Architecture: all
 Replaces: jedslc, jedsl, jedsl-src, jed (<< 0.99.10-2), jed-sl
 Conflicts: jedslc, jedsl, jedsl-src, jed (<< 0.99.10-2), jed-sl, jed-extra (<= 1.0-1)
 Recommends: jed | xjed
-Depends: debconf | debconf-2.0, findutils (>= 4.2.9)
+Depends: debconf | debconf-2.0, findutils
 Description: S-Lang runtime files for jed and xjed
  This package provides the S-Lang runtime files that are needed by both
  jed and xjed.
-
+ .
+  Homepage: http://www.jedsoft.org/jed/

Modified: trunk/packages/jed/debian/patches/50_jed-manpage.dpatch
===================================================================
--- trunk/packages/jed/debian/patches/50_jed-manpage.dpatch	2006-04-27 09:33:44 UTC (rev 265)
+++ trunk/packages/jed/debian/patches/50_jed-manpage.dpatch	2006-04-29 16:19:53 UTC (rev 266)
@@ -2,11 +2,75 @@
 ## 50_jed-manpage.dpatch by Rafael Laboissiere <rafael at debian.org>
 ##
 ## DP: Discribe user config files, if jed-extra is installed (#210274)
+## DP: and use \- (minus) for options than - (which is a hyphen) otherwise
+## DP: you get problems on UTF-8 systems; ask lintian
 
 @DPATCH@
-diff -urNad jed-B0.99-17.135/doc/manual/jed.1 /tmp/dpep.I28qj8/jed-B0.99-17.135/doc/manual/jed.1
---- jed-B0.99-17.135.orig/doc/manual/jed.1	2005-10-24 03:56:54.000000000 +0200
-+++ jed-B0.99-17.135/doc/manual/jed.1	2005-11-04 11:04:59.000000000 +0100
+diff -urNad jed-0.99.18~/doc/manual/jed.1 jed-0.99.18/doc/manual/jed.1
+--- jed-0.99.18~/doc/manual/jed.1	2006-02-13 18:51:58.000000000 +0100
++++ jed-0.99.18/doc/manual/jed.1	2006-04-28 16:49:25.401349000 +0200
+@@ -30,51 +30,51 @@
+ provides brief tutorial.
+ .SH OPTIONS
+ .LP
+-.I -batch
++.I \-batch
+ .RS
+ run Jed in batch mode.
+ This is a non-interactive mode.
+ .RE
+-.I -n             
++.I \-n             
+ .RS
+ do not load 
+ .I .jedrc 
+ file.
+ .RE
+-.I -a 'file'
++.I \-a 'file'
+ .RS
+ load
+ .I file
+ as user configuration file instead of .jedrc.
+ .RE
+-.I -g 'n'
++.I \-g 'n'
+ .RS
+ goto line 
+ .I n 
+ in buffer (notice that in order to this option to take effect, if must
+-appear after the file name in the command line, like 'jed file -g 3')
++appear after the file name in the command line, like 'jed file \-g 3')
+ .RE
+-.I -l 'file'      
++.I \-l 'file'      
+ .RS
+ load 
+ .I file 
+ as S-Lang code.
+ .RE
+-.I -f 'function' 
++.I \-f 'function' 
+ .RS
+ execute S-Lang function named
+ .I function
+ .RE
+-.I -s 'string'
++.I \-s 'string'
+ .RS
+ search forward for 
+ .I string
+ .RE
+-.I -2             
++.I \-2             
+ .RS
+ split window
+ .RE
+-.I -i 'file'
++.I \-i 'file'
+ .RS
+ insert 
+ .I file 
 @@ -402,18 +402,26 @@
  .I JED_ROOT/lib/*.sl
  .RS




More information about the Pkg-jed-commit mailing list