[Python-apps-commits] r12369 - in packages/frescobaldi/trunk/debian (4 files)

foka at users.alioth.debian.org foka at users.alioth.debian.org
Tue Sep 15 22:11:27 UTC 2015


    Date: Tuesday, September 15, 2015 @ 22:11:26
  Author: foka
Revision: 12369

Update Debian packaging of Frescobaldi 2.18.1+ds1-2

 * Patch /usr/bin/frescobaldi to search in /usr/share/frescobaldi
   for Frescobaldi's private Python modules.
   This fixes the "frescobaldi fails to run" bug which I introduced
   in the Debian packaging of 2.18.1+ds1-1 when I decided to move
   Frescobaldi's Python module directory.

Added:
  packages/frescobaldi/trunk/debian/patches/
  packages/frescobaldi/trunk/debian/patches/private-module-directory.patch
  packages/frescobaldi/trunk/debian/patches/series
Modified:
  packages/frescobaldi/trunk/debian/changelog

Modified: packages/frescobaldi/trunk/debian/changelog
===================================================================
--- packages/frescobaldi/trunk/debian/changelog	2015-09-15 19:53:39 UTC (rev 12368)
+++ packages/frescobaldi/trunk/debian/changelog	2015-09-15 22:11:26 UTC (rev 12369)
@@ -1,3 +1,13 @@
+frescobaldi (2.18.1+ds1-2) unstable; urgency=high
+
+  * Patch /usr/bin/frescobaldi to search in /usr/share/frescobaldi
+    for Frescobaldi's private Python modules.
+    This fixes the "frescobaldi fails to run" bug which I introduced
+    in the Debian packaging of 2.18.1+ds1-1 when I decided to move
+    Frescobaldi's Python module directory.
+
+ -- Anthony Fok <foka at debian.org>  Tue, 15 Sep 2015 16:06:02 -0600
+
 frescobaldi (2.18.1+ds1-1) unstable; urgency=medium
 
   * New upstream release.

Added: packages/frescobaldi/trunk/debian/patches/private-module-directory.patch
===================================================================
--- packages/frescobaldi/trunk/debian/patches/private-module-directory.patch	                        (rev 0)
+++ packages/frescobaldi/trunk/debian/patches/private-module-directory.patch	2015-09-15 22:11:26 UTC (rev 12369)
@@ -0,0 +1,17 @@
+Description: Patch /usr/bin/frescobaldi to search in /usr/share/frescobaldi
+Author: Anthony Fok <foka at debian.org>
+Origin: vendor
+Forwarded: not-needed
+Last-Update: 2015-09-15
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/frescobaldi
++++ b/frescobaldi
+@@ -1,6 +1,7 @@
+ #!/usr/bin/env python
+ import sys
+ 
++sys.path.insert(1, '/usr/share/frescobaldi')
+ from frescobaldi_app import toplevel
+ toplevel.install()
+ 

Added: packages/frescobaldi/trunk/debian/patches/series
===================================================================
--- packages/frescobaldi/trunk/debian/patches/series	                        (rev 0)
+++ packages/frescobaldi/trunk/debian/patches/series	2015-09-15 22:11:26 UTC (rev 12369)
@@ -0,0 +1 @@
+private-module-directory.patch




More information about the Python-apps-commits mailing list