[Python-apps-commits] r2487 - in packages/phatch/trunk/debian (2 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Tue Feb 24 22:49:22 UTC 2009


    Date: Tuesday, February 24, 2009 @ 22:49:21
  Author: piotr
Revision: 2487

add_path_to_private_directory.patch added

Added:
  packages/phatch/trunk/debian/patches/add_path_to_private_directory.patch
Modified:
  packages/phatch/trunk/debian/changelog

Modified: packages/phatch/trunk/debian/changelog
===================================================================
--- packages/phatch/trunk/debian/changelog	2009-02-24 22:26:53 UTC (rev 2486)
+++ packages/phatch/trunk/debian/changelog	2009-02-24 22:49:21 UTC (rev 2487)
@@ -1,5 +1,6 @@
-phatch (0.1.6-2) unstable; urgency=low
+phatch (0.1.6-2) UNRELEASED; urgency=low
 
+  [ Emilio Pozuelo Monfort ]
   * debian/patches/phatch_use_correct_lang.patch:
     - Use LANG instead of LC_CTYPE for the language. Closes: 507774.
   * debian/rules:
@@ -16,6 +17,10 @@
     - move python-nautilus and pkg-config to Build-Depends-Indep.
     - Wrap depends.
 
+  [ Piotr Ożarowski ]
+  * debian/patches/add_path_to_private_directory.patch:
+    - needed since we're using private directory for Phatch now
+
  -- Emilio Pozuelo Monfort <pochu at ubuntu.com>  Fri, 05 Dec 2008 11:17:43 +0100
 
 phatch (0.1.6-1) unstable; urgency=low

Added: packages/phatch/trunk/debian/patches/add_path_to_private_directory.patch
===================================================================
--- packages/phatch/trunk/debian/patches/add_path_to_private_directory.patch	                        (rev 0)
+++ packages/phatch/trunk/debian/patches/add_path_to_private_directory.patch	2009-02-24 22:49:21 UTC (rev 2487)
@@ -0,0 +1,18 @@
+# Phatch is installed in private directory, this patch adds this directory to
+# the sys.path so that Nautilus can find it
+--- linux/phatch_image_inspector.py.orig	2009-02-24 23:32:27.210088547 +0100
++++ linux/phatch_image_inspector.py	2009-02-24 23:34:51.573088214 +0100
+@@ -1,3 +1,5 @@
++import sys
++sys.path.insert(0, '/usr/share/phatch/')
+ 
+ from urllib import unquote
+ from subprocess import call
+--- linux/phatch_recent.py.orig	2009-02-24 23:32:38.847088664 +0100
++++ linux/phatch_recent.py	2009-02-24 23:34:38.639088194 +0100
+@@ -1,3 +1,5 @@
++import sys
++sys.path.insert(0, '/usr/share/phatch/')
+ 
+ from urllib import unquote
+ from subprocess import call




More information about the Python-apps-commits mailing list