[Python-apps-commits] r1385 - in packages/pytagsfs/trunk/debian (4 files)

appaji-guest at users.alioth.debian.org appaji-guest at users.alioth.debian.org
Wed Jun 4 18:41:17 UTC 2008


    Date: Wednesday, June 4, 2008 @ 18:41:15
  Author: appaji-guest
Revision: 1385

* New upstream release 0.7.0
* Remove 02_fuse_exceptions.dpatch: integrated upstream

Modified:
  packages/pytagsfs/trunk/debian/changelog
  packages/pytagsfs/trunk/debian/control
  packages/pytagsfs/trunk/debian/patches/00list
Deleted:
  packages/pytagsfs/trunk/debian/patches/02_fuse_exceptions.dpatch

Modified: packages/pytagsfs/trunk/debian/changelog
===================================================================
--- packages/pytagsfs/trunk/debian/changelog	2008-06-04 13:55:33 UTC (rev 1384)
+++ packages/pytagsfs/trunk/debian/changelog	2008-06-04 18:41:15 UTC (rev 1385)
@@ -1,12 +1,11 @@
-pytagsfs (0.6.0-2) unstable; urgency=low
+pytagsfs (0.7.0-1) unstable; urgency=low
 
+  * New upstream release
   * Change Section from python to utils
   * Patch 01_bug_reporting to set the bug reporting location to Debian and not
     upstream.
-  * Patch 02_fuse_exceptions to catch any exception and log an error when fuse
-    initialisation fails (like the user is not in the fuse group).
 
- -- Y Giridhar Appaji Nag <giridhar at appaji.net>  Wed, 30 Apr 2008 17:22:28 +0530
+ -- Y Giridhar Appaji Nag <giridhar at appaji.net>  Thu, 05 Jun 2008 00:10:14 +0530
 
 pytagsfs (0.6.0-1) unstable; urgency=low
 

Modified: packages/pytagsfs/trunk/debian/control
===================================================================
--- packages/pytagsfs/trunk/debian/control	2008-06-04 13:55:33 UTC (rev 1384)
+++ packages/pytagsfs/trunk/debian/control	2008-06-04 18:41:15 UTC (rev 1385)
@@ -13,7 +13,7 @@
 
 Package: pytagsfs
 Architecture: all
-Depends: ${python:Depends}, python-fuse, python-pyinotify, python-mutagen, python-sclapp
+Depends: ${python:Depends}, python-fuse, python-pyinotify, python-mutagen, python-sclapp (>= 0.5.2)
 XB-Python-Version: ${python:Versions}
 Description: maps media files to an arbitrary directory structure
  pytagsfs is a FUSE filesystem that arranges media files in a virtual directory

Modified: packages/pytagsfs/trunk/debian/patches/00list
===================================================================
--- packages/pytagsfs/trunk/debian/patches/00list	2008-06-04 13:55:33 UTC (rev 1384)
+++ packages/pytagsfs/trunk/debian/patches/00list	2008-06-04 18:41:15 UTC (rev 1385)
@@ -1,2 +1 @@
 01_bug_reporting
-02_fuse_exceptions

Deleted: packages/pytagsfs/trunk/debian/patches/02_fuse_exceptions.dpatch
===================================================================
--- packages/pytagsfs/trunk/debian/patches/02_fuse_exceptions.dpatch	2008-06-04 13:55:33 UTC (rev 1384)
+++ packages/pytagsfs/trunk/debian/patches/02_fuse_exceptions.dpatch	2008-06-04 18:41:15 UTC (rev 1385)
@@ -1,34 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 02_dev_fuse_perms.dpatch by Y Giridhar Appaji Nag <giridhar at appaji.net>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: catch exception and log error when the user is not in the fuse group.
-
- at DPATCH@
-diff -urNad pytagsfs-0.6.0~/modules/pytagsfs/fs.py pytagsfs-0.6.0/modules/pytagsfs/fs.py
---- pytagsfs-0.6.0~/modules/pytagsfs/fs.py	2008-05-08 15:01:16.000000000 +0530
-+++ pytagsfs-0.6.0/modules/pytagsfs/fs.py	2008-05-08 15:02:41.000000000 +0530
-@@ -45,6 +45,7 @@
-   log_debug,
-   log_info,
-   log_warning,
-+  log_error,
-   set_log_level,
-   DEBUG,
-   INFO,
-@@ -452,8 +453,13 @@
-         except OptParseError, e:
-             self.parser.error(unicode(e))
- 
--        retval = super(FileSystemMappingToRealFiles, self).main()
--        self.source_tree_rep.stop()
-+        try:
-+            retval = super(FileSystemMappingToRealFiles, self).main()
-+        except fuse.FuseError, e:
-+            retval = 1
-+            log_error(unicode(e))
-+        else:
-+            self.source_tree_rep.stop()
-         return retval
- 
-     def parse(self, *args, **kwargs):




More information about the Python-apps-commits mailing list