[Python-apps-commits] r13309 - in packages/bleachbit/trunk/debian (6 files)

hle at users.alioth.debian.org hle at users.alioth.debian.org
Sat Jun 18 13:51:41 UTC 2016


    Date: Saturday, June 18, 2016 @ 13:51:40
  Author: hle
Revision: 13309

* New upstream release.
* Remove debian/patches/gnomevfs.patch (integrated by upstream).
* debian/control:
  - Update Homepage.
  - Bump Standards-Version to 3.9.8 (no changes needed).
  - Fix unnecessary versioned dependency python in the Build-Depends-Indep
    field.
  - Fix unnecessary versioned dependencies python and python-gtk2 in the 
    Depends field.
* debian/copyright:
  - Update Format field to match DEP5 recommendations.
* debian/patches/local_cleaners_dir.patch:
  - Use HTTPS protocol in the BTS link.

Modified:
  packages/bleachbit/trunk/debian/changelog
  packages/bleachbit/trunk/debian/control
  packages/bleachbit/trunk/debian/copyright
  packages/bleachbit/trunk/debian/patches/local_cleaners_dir.patch
  packages/bleachbit/trunk/debian/patches/series
Deleted:
  packages/bleachbit/trunk/debian/patches/gnomevfs.patch

Modified: packages/bleachbit/trunk/debian/changelog
===================================================================
--- packages/bleachbit/trunk/debian/changelog	2016-06-18 08:57:11 UTC (rev 13308)
+++ packages/bleachbit/trunk/debian/changelog	2016-06-18 13:51:40 UTC (rev 13309)
@@ -1,3 +1,21 @@
+bleachbit (1.11.2-1) experimental; urgency=low
+
+  * New upstream release.
+  * Remove debian/patches/gnomevfs.patch (integrated by upstream).
+  * debian/control:
+    - Update Homepage.
+    - Bump Standards-Version to 3.9.8 (no changes needed).
+    - Fix unnecessary versioned dependency python in the Build-Depends-Indep
+      field.
+    - Fix unnecessary versioned dependencies python and python-gtk2 in the 
+      Depends field.
+  * debian/copyright:
+    - Update Format field to match DEP5 recommendations.
+  * debian/patches/local_cleaners_dir.patch:
+    - Use HTTPS protocol in the BTS link.
+
+ -- Hugo Lefeuvre <hle at debian.org>  Sat, 18 Jun 2016 13:22:14 +0200
+
 bleachbit (1.10-1) unstable; urgency=low
 
   * Upload to unstable.

Modified: packages/bleachbit/trunk/debian/control
===================================================================
--- packages/bleachbit/trunk/debian/control	2016-06-18 08:57:11 UTC (rev 13308)
+++ packages/bleachbit/trunk/debian/control	2016-06-18 13:51:40 UTC (rev 13309)
@@ -5,19 +5,19 @@
 Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
 Build-Depends: debhelper (>= 9),
                dh-python
-Build-Depends-Indep: python (>= 2.6.6-3~),
+Build-Depends-Indep: python,
                      gettext
-Standards-Version: 3.9.7
+Standards-Version: 3.9.8
 X-Python-Version: >= 2.5
 Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/bleachbit/trunk/
 Vcs-Browser: https://anonscm.debian.org/viewsvn/python-apps/packages/bleachbit/trunk/
-Homepage: http://bleachbit.sourceforge.net
+Homepage: https://www.bleachbit.org/
 
 Package: bleachbit
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends},
-         python (>= 2.6) | python-simplejson,
-         python-gtk2 (>= 2.14),
+         python | python-simplejson,
+         python-gtk2,
          menu
 Recommends: python-notify
 Description: delete unnecessary files from the system

Modified: packages/bleachbit/trunk/debian/copyright
===================================================================
--- packages/bleachbit/trunk/debian/copyright	2016-06-18 08:57:11 UTC (rev 13308)
+++ packages/bleachbit/trunk/debian/copyright	2016-06-18 13:51:40 UTC (rev 13309)
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 
 Upstream-Name: bleachbit
 Upstream-Contact: Andrew Ziem <ahz001 at gmail.com>
 Source: http://sourceforge.net/projects/bleachbit/files/

Deleted: packages/bleachbit/trunk/debian/patches/gnomevfs.patch
===================================================================
--- packages/bleachbit/trunk/debian/patches/gnomevfs.patch	2016-06-18 08:57:11 UTC (rev 13308)
+++ packages/bleachbit/trunk/debian/patches/gnomevfs.patch	2016-06-18 13:51:40 UTC (rev 13309)
@@ -1,38 +0,0 @@
-Description: Replace gnomevfs methods, now deprecated.
-Origin: Debian
-Bug-Debian: http://bugs.debian.org/605555
-Forwarded: https://launchpad.net/bugs/708898
----
---- a/bleachbit/Unix.py	2016-03-24 14:27:55.422479170 +0100
-+++ b/bleachbit/Unix.py	2016-03-24 14:28:16.234425493 +0100
-@@ -36,18 +36,11 @@
- import FileUtilities
- import General
- 
--HAVE_GNOME_VFS = True
-+HAVE_GIO = True
- try:
--    import gnomevfs
-+    import gio
- except:
--    try:
--        # this is the deprecated name
--        import gnome.vfs
--    except:
--        HAVE_GNOME_VFS = False
--    else:
--        gnomevfs = gnome.vfs
--
-+    HAVE_GIO = False
- 
- class Locales:
- 
-@@ -466,7 +459,7 @@
-             print "info: is_broken_xdg_menu: missing required option 'MimeType': '%s'" % (pathname)
-             return True
-         mimetype = config.get('Desktop Entry', 'MimeType').strip().lower()
--        if HAVE_GNOME_VFS and 0 == len(gnomevfs.mime_get_all_applications(mimetype)):
-+        if HAVE_GIO and 0 == len(gio.app_info_get_all_for_type(mimetype)):
-             print "info: is_broken_xdg_menu: MimeType '%s' not " \
-                 "registered '%s'" % (mimetype, pathname)
-             return True

Modified: packages/bleachbit/trunk/debian/patches/local_cleaners_dir.patch
===================================================================
--- packages/bleachbit/trunk/debian/patches/local_cleaners_dir.patch	2016-06-18 08:57:11 UTC (rev 13308)
+++ packages/bleachbit/trunk/debian/patches/local_cleaners_dir.patch	2016-06-18 13:51:40 UTC (rev 13309)
@@ -1,6 +1,6 @@
 Description: Point local_cleaners_dir to personal_cleaners_dir
 Origin: Debian
-Bug-Debian: http://bugs.debian.org/565359
+Bug-Debian: https://bugs.debian.org/565359
 Forwarded: not-needed
 ---
 --- a/bleachbit/Common.py	2016-03-24 14:22:10.208676698 +0100

Modified: packages/bleachbit/trunk/debian/patches/series
===================================================================
--- packages/bleachbit/trunk/debian/patches/series	2016-06-18 08:57:11 UTC (rev 13308)
+++ packages/bleachbit/trunk/debian/patches/series	2016-06-18 13:51:40 UTC (rev 13309)
@@ -1,5 +1,4 @@
 desktop_file.patch
 no_update.patch
 local_cleaners_dir.patch
-gnomevfs.patch
 firefox_profiles.patch




More information about the Python-apps-commits mailing list