r48852 - in /desktop/unstable/gnome-icon-theme/debian: changelog control control.in postinst

bigon at users.alioth.debian.org bigon at users.alioth.debian.org
Sun May 22 23:19:59 UTC 2016


Author: bigon
Date: Sun May 22 23:19:58 2016
New Revision: 48852

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=48852
Log:
* debian/postinst:
  - Do not hardcode the paths of gtk-update-icon-cache but rely on PATH to
    check if it is installed
* debian/control.in:
  - Drop obsolete Breaks from pre-wheezy.
  - Bump Standards-Version to 3.9.8 (no further changes)
  - Remove duplicate Section field

Modified:
    desktop/unstable/gnome-icon-theme/debian/changelog
    desktop/unstable/gnome-icon-theme/debian/control
    desktop/unstable/gnome-icon-theme/debian/control.in
    desktop/unstable/gnome-icon-theme/debian/postinst

Modified: desktop/unstable/gnome-icon-theme/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-icon-theme/debian/changelog?rev=48852&op=diff
==============================================================================
--- desktop/unstable/gnome-icon-theme/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gnome-icon-theme/debian/changelog	[utf-8] Sun May 22 23:19:58 2016
@@ -7,10 +7,16 @@
   [ Laurent Bigonville ]
   * Drop the libgtk-3-bin and libgtk2.0-bin (build-)dependencies and pull
     gtk-update-icon-cache instead (Closes: #580336)
-  * debian/postinst: Use gtk-update-icon-cache executable instead of
-    gtk-update-icon-cache-3.0
-
- -- Laurent Bigonville <bigon at debian.org>  Sun, 22 May 2016 23:17:52 +0200
+  * debian/postinst:
+    - Use gtk-update-icon-cache executable instead of gtk-update-icon-cache-3.0
+    - Do not hardcode the paths of gtk-update-icon-cache but rely on PATH to
+      check if it is installed
+  * debian/control.in:
+    - Drop obsolete Breaks from pre-wheezy.
+    - Bump Standards-Version to 3.9.8 (no further changes)
+    - Remove duplicate Section field
+
+ -- Laurent Bigonville <bigon at debian.org>  Mon, 23 May 2016 01:19:42 +0200
 
 gnome-icon-theme (3.12.0-1) unstable; urgency=medium
 

Modified: desktop/unstable/gnome-icon-theme/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-icon-theme/debian/control?rev=48852&op=diff
==============================================================================
--- desktop/unstable/gnome-icon-theme/debian/control	[utf-8] (original)
+++ desktop/unstable/gnome-icon-theme/debian/control	[utf-8] Sun May 22 23:19:58 2016
@@ -16,7 +16,7 @@
                      gtk-update-icon-cache,
                      icon-naming-utils (>= 0.8.7),
                      librsvg2-bin
-Standards-Version: 3.9.5
+Standards-Version: 3.9.8
 Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gnome-icon-theme
 Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gnome-icon-theme
 
@@ -28,11 +28,6 @@
          hicolor-icon-theme,
          gtk-update-icon-cache,
          librsvg2-common
-Breaks: netspeed (<< 0.15.2-2),
-        rhythmbox (<< 0.12.8),
-        evolution (<< 2.30),
-        gnome-games (<< 1:2.30.2-1),
-        mail-notification (<< 5.4.dfsg.1-2.2)
 Enhances: nautilus (>= 2.2)
 Description: GNOME Desktop icon theme
  This package contains the default icon theme used by the GNOME desktop.

Modified: desktop/unstable/gnome-icon-theme/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-icon-theme/debian/control.in?rev=48852&op=diff
==============================================================================
--- desktop/unstable/gnome-icon-theme/debian/control.in	[utf-8] (original)
+++ desktop/unstable/gnome-icon-theme/debian/control.in	[utf-8] Sun May 22 23:19:58 2016
@@ -12,23 +12,17 @@
                      gtk-update-icon-cache,
                      icon-naming-utils (>= 0.8.7),
                      librsvg2-bin
-Standards-Version: 3.9.5
+Standards-Version: 3.9.8
 Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gnome-icon-theme
 Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gnome-icon-theme
 
 Package: gnome-icon-theme
 Architecture: all
-Section: gnome
 Multi-arch: foreign
 Depends: ${misc:Depends},
          hicolor-icon-theme,
          gtk-update-icon-cache,
          librsvg2-common
-Breaks: netspeed (<< 0.15.2-2),
-        rhythmbox (<< 0.12.8),
-        evolution (<< 2.30),
-        gnome-games (<< 1:2.30.2-1),
-        mail-notification (<< 5.4.dfsg.1-2.2)
 Enhances: nautilus (>= 2.2)
 Description: GNOME Desktop icon theme
  This package contains the default icon theme used by the GNOME desktop.

Modified: desktop/unstable/gnome-icon-theme/debian/postinst
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-icon-theme/debian/postinst?rev=48852&op=diff
==============================================================================
--- desktop/unstable/gnome-icon-theme/debian/postinst	[utf-8] (original)
+++ desktop/unstable/gnome-icon-theme/debian/postinst	[utf-8] Sun May 22 23:19:58 2016
@@ -3,7 +3,7 @@
 
 write_cache()
 {
-if [ -x /usr/bin/gtk-update-icon-cache ]; then
+if which gtk-update-icon-cache >/dev/null 2>&1 ; then
     if ! gtk-update-icon-cache --force --quiet /usr/share/icons/gnome; then
         echo "WARNING: icon cache generation failed"
     fi




More information about the pkg-gnome-commits mailing list