[Python-modules-commits] r4444 - in packages/ll-xist/trunk/debian (7 files)

bzed at users.alioth.debian.org bzed at users.alioth.debian.org
Sat Jan 26 19:06:36 UTC 2008


    Date: Saturday, January 26, 2008 @ 19:06:36
  Author: bzed
Revision: 4444

  - Updating my email address.
  - bumping Standards-Version - no change needed.
* debian/patches:
  - Removing remove-bogus-shebangs.dpatch, unneccessary she=bangs are
    removed in debian/rules now.
* debian/docs:
  - Ust the rst files as source of the documentation.
* debian/examples:
  - EXAMPLES/EXAMPLES.xml don't exist anymore.

Modified:
  packages/ll-xist/trunk/debian/changelog
  packages/ll-xist/trunk/debian/control
  packages/ll-xist/trunk/debian/docs
  packages/ll-xist/trunk/debian/examples
  packages/ll-xist/trunk/debian/patches/00list
  packages/ll-xist/trunk/debian/rules
Deleted:
  packages/ll-xist/trunk/debian/patches/remove-bogus-shebangs.dpatch

Modified: packages/ll-xist/trunk/debian/changelog
===================================================================
--- packages/ll-xist/trunk/debian/changelog	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/changelog	2008-01-26 19:06:36 UTC (rev 4444)
@@ -6,12 +6,21 @@
     - Adding Homepage field, removing pseudo-field from description
     - Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now)
     - Bumping the required version of ll-core to 1.11.
+    - Updating my email address.
+    - bumping Standards-Version - no change needed.
+  * debian/patches:
+    - Removing remove-bogus-shebangs.dpatch, unneccessary she=bangs are
+      removed in debian/rules now.
+  * debian/docs:
+    - Ust the rst files as source of the documentation.
+  * debian/examples:
+    - EXAMPLES/EXAMPLES.xml don't exist anymore.
 
   [ Sandro Tosi ]
   * debian/control:
     - uniforming Vcs-Browser field
 
- -- Bernd Zeimetz <bzed at debian.org>  Sat, 26 Jan 2008 19:47:21 +0100
+ -- Bernd Zeimetz <bzed at debian.org>  Sat, 26 Jan 2008 20:04:13 +0100
 
 ll-xist (2.15.5-1) unstable; urgency=low
 

Modified: packages/ll-xist/trunk/debian/control
===================================================================
--- packages/ll-xist/trunk/debian/control	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/control	2008-01-26 19:06:36 UTC (rev 4444)
@@ -2,11 +2,11 @@
 Section: python
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Bernd Zeimetz <bernd at bzed.de>
+Uploaders: Bernd Zeimetz <bzed at debian.org>
 Build-Depends: cdbs (>= 0.4.45), debhelper (>= 5), python-all-dev (>= 2.4.4-3),
  python-support (>= 0.6.4), docbook-to-man, dpatch
 Homepage: http://www.livinglogic.de/Python/xist/index.html
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/ll-xist/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/ll-xist/trunk/?op=log
 

Modified: packages/ll-xist/trunk/debian/docs
===================================================================
--- packages/ll-xist/trunk/debian/docs	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/docs	2008-01-26 19:06:36 UTC (rev 4444)
@@ -1,5 +1,4 @@
-README
-HOWTO
-HOWTO.xml
-NEWS
-NEWS.xml
+CREDITS.rst
+NEWS.rst
+MIGRATION.rst
+README.rst

Modified: packages/ll-xist/trunk/debian/examples
===================================================================
--- packages/ll-xist/trunk/debian/examples	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/examples	2008-01-26 19:06:36 UTC (rev 4444)
@@ -1,3 +1 @@
 demos
-EXAMPLES
-EXAMPLES.xml

Modified: packages/ll-xist/trunk/debian/patches/00list
===================================================================
--- packages/ll-xist/trunk/debian/patches/00list	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/patches/00list	2008-01-26 19:06:36 UTC (rev 4444)
@@ -1,2 +1 @@
-remove-bogus-shebangs
 remove-setuptools

Deleted: packages/ll-xist/trunk/debian/patches/remove-bogus-shebangs.dpatch
===================================================================
--- packages/ll-xist/trunk/debian/patches/remove-bogus-shebangs.dpatch	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/patches/remove-bogus-shebangs.dpatch	2008-01-26 19:06:36 UTC (rev 4444)
@@ -1,422 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## remove-bogus-shebangs.dpatch by Bernd Zeimetz <bernd at bzed.de>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: removing bogus shebangs.
-## DP: grep -rL __main__ * | grep -v scripts |xargs grep -l '^#!' | while read i; do sed -i '1 s,^#!.*,,' $i; done; sed -i '1 s,^#!.*,,' scripts/__init__.py
-
- at DPATCH@
-diff -urNad ll-xist~/src/ll/xist/__init__.py ll-xist/src/ll/xist/__init__.py
---- ll-xist~/src/ll/xist/__init__.py	2007-07-16 13:23:43.000000000 +0200
-+++ ll-xist/src/ll/xist/__init__.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/converters.py ll-xist/src/ll/xist/converters.py
---- ll-xist~/src/ll/xist/converters.py	2007-07-16 13:23:44.000000000 +0200
-+++ ll-xist/src/ll/xist/converters.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/cssparsers.py ll-xist/src/ll/xist/cssparsers.py
---- ll-xist~/src/ll/xist/cssparsers.py	2007-07-16 11:41:28.000000000 +0200
-+++ ll-xist/src/ll/xist/cssparsers.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/__init__.py ll-xist/src/ll/xist/ns/__init__.py
---- ll-xist~/src/ll/xist/ns/__init__.py	2007-07-16 13:23:46.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/__init__.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/abbr.py ll-xist/src/ll/xist/ns/abbr.py
---- ll-xist~/src/ll/xist/ns/abbr.py	2007-07-16 13:23:46.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/abbr.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/atom.py ll-xist/src/ll/xist/ns/atom.py
---- ll-xist~/src/ll/xist/ns/atom.py	2007-07-16 11:41:28.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/atom.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/chars.py ll-xist/src/ll/xist/ns/chars.py
---- ll-xist~/src/ll/xist/ns/chars.py	2007-07-16 13:23:46.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/chars.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/code.py ll-xist/src/ll/xist/ns/code.py
---- ll-xist~/src/ll/xist/ns/code.py	2007-07-16 13:23:46.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/code.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/cond.py ll-xist/src/ll/xist/ns/cond.py
---- ll-xist~/src/ll/xist/ns/cond.py	2007-07-16 13:23:46.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/cond.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/detox.py ll-xist/src/ll/xist/ns/detox.py
---- ll-xist~/src/ll/xist/ns/detox.py	2007-07-16 13:23:47.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/detox.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/doc.py ll-xist/src/ll/xist/ns/doc.py
---- ll-xist~/src/ll/xist/ns/doc.py	2007-07-16 13:23:47.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/doc.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/docbook.py ll-xist/src/ll/xist/ns/docbook.py
---- ll-xist~/src/ll/xist/ns/docbook.py	2007-07-16 13:23:47.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/docbook.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/fo.py ll-xist/src/ll/xist/ns/fo.py
---- ll-xist~/src/ll/xist/ns/fo.py	2007-07-16 13:23:47.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/fo.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/form.py ll-xist/src/ll/xist/ns/form.py
---- ll-xist~/src/ll/xist/ns/form.py	2007-07-16 13:23:47.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/form.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/html.py ll-xist/src/ll/xist/ns/html.py
---- ll-xist~/src/ll/xist/ns/html.py	2007-07-16 13:23:47.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/html.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/htmlspecials.py ll-xist/src/ll/xist/ns/htmlspecials.py
---- ll-xist~/src/ll/xist/ns/htmlspecials.py	2007-07-16 13:23:48.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/htmlspecials.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/ihtml.py ll-xist/src/ll/xist/ns/ihtml.py
---- ll-xist~/src/ll/xist/ns/ihtml.py	2007-07-16 13:23:48.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/ihtml.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/jsp.py ll-xist/src/ll/xist/ns/jsp.py
---- ll-xist~/src/ll/xist/ns/jsp.py	2007-07-16 13:23:48.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/jsp.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/kid.py ll-xist/src/ll/xist/ns/kid.py
---- ll-xist~/src/ll/xist/ns/kid.py	2007-07-16 13:23:48.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/kid.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 2005-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/meta.py ll-xist/src/ll/xist/ns/meta.py
---- ll-xist~/src/ll/xist/ns/meta.py	2007-07-16 13:23:48.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/meta.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/metal.py ll-xist/src/ll/xist/ns/metal.py
---- ll-xist~/src/ll/xist/ns/metal.py	2007-07-16 13:23:48.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/metal.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/php.py ll-xist/src/ll/xist/ns/php.py
---- ll-xist~/src/ll/xist/ns/php.py	2007-07-16 13:23:49.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/php.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/rng.py ll-xist/src/ll/xist/ns/rng.py
---- ll-xist~/src/ll/xist/ns/rng.py	2007-07-16 13:23:49.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/rng.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 2005-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/rss091.py ll-xist/src/ll/xist/ns/rss091.py
---- ll-xist~/src/ll/xist/ns/rss091.py	2007-07-16 13:23:49.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/rss091.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/rss20.py ll-xist/src/ll/xist/ns/rss20.py
---- ll-xist~/src/ll/xist/ns/rss20.py	2007-07-16 13:23:49.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/rss20.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/ruby.py ll-xist/src/ll/xist/ns/ruby.py
---- ll-xist~/src/ll/xist/ns/ruby.py	2007-07-16 13:23:49.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/ruby.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/specials.py ll-xist/src/ll/xist/ns/specials.py
---- ll-xist~/src/ll/xist/ns/specials.py	2007-07-16 13:23:49.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/specials.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/struts_config.py ll-xist/src/ll/xist/ns/struts_config.py
---- ll-xist~/src/ll/xist/ns/struts_config.py	2007-07-16 13:23:50.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/struts_config.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/struts_html.py ll-xist/src/ll/xist/ns/struts_html.py
---- ll-xist~/src/ll/xist/ns/struts_html.py	2007-07-16 13:23:50.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/struts_html.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/svg.py ll-xist/src/ll/xist/ns/svg.py
---- ll-xist~/src/ll/xist/ns/svg.py	2007-07-16 13:23:50.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/svg.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- 
-diff -urNad ll-xist~/src/ll/xist/ns/tal.py ll-xist/src/ll/xist/ns/tal.py
---- ll-xist~/src/ll/xist/ns/tal.py	2007-07-16 13:23:50.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/tal.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/text.py ll-xist/src/ll/xist/ns/text.py
---- ll-xist~/src/ll/xist/ns/text.py	2007-07-16 13:23:50.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/text.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/tld.py ll-xist/src/ll/xist/ns/tld.py
---- ll-xist~/src/ll/xist/ns/tld.py	2007-07-16 13:23:51.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/tld.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/wml.py ll-xist/src/ll/xist/ns/wml.py
---- ll-xist~/src/ll/xist/ns/wml.py	2007-07-16 13:23:51.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/wml.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/xlink.py ll-xist/src/ll/xist/ns/xlink.py
---- ll-xist~/src/ll/xist/ns/xlink.py	2007-07-16 13:23:51.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/xlink.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/ns/xml.py ll-xist/src/ll/xist/ns/xml.py
---- ll-xist~/src/ll/xist/ns/xml.py	2007-07-16 13:23:51.000000000 +0200
-+++ ll-xist/src/ll/xist/ns/xml.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/options.py ll-xist/src/ll/xist/options.py
---- ll-xist~/src/ll/xist/options.py	2007-07-16 13:23:44.000000000 +0200
-+++ ll-xist/src/ll/xist/options.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/parsers.py ll-xist/src/ll/xist/parsers.py
---- ll-xist~/src/ll/xist/parsers.py	2007-07-16 11:41:28.000000000 +0200
-+++ ll-xist/src/ll/xist/parsers.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/presenters.py ll-xist/src/ll/xist/presenters.py
---- ll-xist~/src/ll/xist/presenters.py	2007-07-16 13:23:44.000000000 +0200
-+++ ll-xist/src/ll/xist/presenters.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/publishers.py ll-xist/src/ll/xist/publishers.py
---- ll-xist~/src/ll/xist/publishers.py	2007-07-16 13:23:45.000000000 +0200
-+++ ll-xist/src/ll/xist/publishers.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/scripts/__init__.py ll-xist/src/ll/xist/scripts/__init__.py
---- ll-xist~/src/ll/xist/scripts/__init__.py	2007-07-16 13:23:51.000000000 +0200
-+++ ll-xist/src/ll/xist/scripts/__init__.py	2007-07-18 01:18:22.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/sims.py ll-xist/src/ll/xist/sims.py
---- ll-xist~/src/ll/xist/sims.py	2007-07-16 13:23:45.000000000 +0200
-+++ ll-xist/src/ll/xist/sims.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/utils.py ll-xist/src/ll/xist/utils.py
---- ll-xist~/src/ll/xist/utils.py	2007-07-16 13:23:45.000000000 +0200
-+++ ll-xist/src/ll/xist/utils.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/xfind.py ll-xist/src/ll/xist/xfind.py
---- ll-xist~/src/ll/xist/xfind.py	2007-07-16 13:23:45.000000000 +0200
-+++ ll-xist/src/ll/xist/xfind.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/xnd.py ll-xist/src/ll/xist/xnd.py
---- ll-xist~/src/ll/xist/xnd.py	2007-07-16 13:23:45.000000000 +0200
-+++ ll-xist/src/ll/xist/xnd.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.
-diff -urNad ll-xist~/src/ll/xist/xsc.py ll-xist/src/ll/xist/xsc.py
---- ll-xist~/src/ll/xist/xsc.py	2007-07-16 13:23:45.000000000 +0200
-+++ ll-xist/src/ll/xist/xsc.py	2007-07-18 01:18:11.000000000 +0200
-@@ -1,4 +1,4 @@
--#! /usr/bin/env python
-+
- # -*- coding: iso-8859-1 -*-
- 
- ## Copyright 1999-2007 by LivingLogic AG, Bayreuth/Germany.

Modified: packages/ll-xist/trunk/debian/rules
===================================================================
--- packages/ll-xist/trunk/debian/rules	2008-01-26 18:59:54 UTC (rev 4443)
+++ packages/ll-xist/trunk/debian/rules	2008-01-26 19:06:36 UTC (rev 4444)
@@ -4,6 +4,8 @@
 DEB_PYTHON_SYSTEM=pysupport
 DEB_COMPRESS_EXCLUDE := .py
 
+PACKAGE := python-ll-xist
+
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/python-distutils.mk
 include /usr/share/cdbs/1/rules/dpatch.mk
@@ -14,10 +16,10 @@
 %.1: debian/manpage_source/%.sgml
 	docbook-to-man $< > $@
 
-build/python-ll-xist:: $(MANPAGES)
+build/$(PACKAGE):: $(MANPAGES)
 
-XISTBINDIR = $(CURDIR)/debian/python-ll-xist/usr/bin
-install/python-ll-xist::
+XISTBINDIR = $(CURDIR)/debian/$(PACKAGE)/usr/bin
+install/$(PACKAGE)::
 	## do we really need a py version of doc2txt in /usr/bin?
 	rm -f $(XISTBINDIR)/doc2txt $(XISTBINDIR)/doc2txt.py
 	## clean /usr/bin up - no need for two file which
@@ -27,11 +29,13 @@
 	done
 	## this file is really, really bad. It contains py code
         ## where py seems to expect a path - and we don't need/want it anyway.
-	rm -f debian/python-ll-xist/usr/lib/python*/site-packages/ll_xist-*-py*-nspkg.pth
+	rm -f debian/$(PACKAGE)/usr/lib/python*/site-packages/ll_xist-*-py*-nspkg.pth
 	## ll/__init__.py is provided by ll-core, no need to package it here
-	rm -f debian/python-ll-xist/usr/lib/python*/site-packages/ll/__init__.py
+	rm -f debian/$(PACKAGE)/usr/lib/python*/site-packages/ll/__init__.py
 	## make scripts in the script directory executeable
-	chmod 755 debian/python-ll-xist/usr/lib/python*/site-packages/ll/xist/scripts/[^_]*
+	chmod 755 debian/$(PACKAGE)/usr/lib/python*/site-packages/ll/xist/scripts/[^_]*
+	##remove bogus shebangs
+	sed -i '1s,#!.*,,g' $(CURDIR)/debian/$(PACKAGE)/usr/lib/python*/site-packages/ll/xist/*.py
 
 clean::
 	rm -f $(MANPAGES)




More information about the Python-modules-commits mailing list