Hello community,

here is the log from the commit of package ristretto for openSUSE:Factory 
checked in at 2012-02-16 10:09:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ristretto (Old)
 and      /work/SRC/openSUSE:Factory/.ristretto.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ristretto", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ristretto/ristretto.changes      2012-01-19 
16:58:01.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ristretto.new/ristretto.changes 2012-02-16 
10:09:36.000000000 +0100
@@ -1,0 +2,15 @@
+Sun Jan 29 10:39:43 UTC 2012 - [email protected]
+
+- added ristretto-0.3.4-fix-gtk-requirements.patch to only depend
+  on GTK+ >= 2.20 (patch from upstream git)
+
+-------------------------------------------------------------------
+Sat Jan 28 09:37:09 UTC 2012 - [email protected]
+
+- update to version 0.3.4
+  - do not use symbols from gtk+ > 2.20
+  - autogenerate Changelog on make dist
+  - update scale information when box-zoom is used
+  - fix --fullscreen and --slideshow CLI options
+
+-------------------------------------------------------------------

Old:
----
  ristretto-0.3.2.tar.bz2

New:
----
  ristretto-0.3.4-fix-gtk-requirements.patch
  ristretto-0.3.4.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ristretto.spec ++++++
--- /var/tmp/diff_new_pack.045Azq/_old  2012-02-16 10:09:37.000000000 +0100
+++ /var/tmp/diff_new_pack.045Azq/_new  2012-02-16 10:09:37.000000000 +0100
@@ -16,7 +16,7 @@
 #
 
 Name:           ristretto
-Version:        0.3.2
+Version:        0.3.4
 Release:        0
 Summary:        Fast and Lightweight Image-viewer for the Xfce desktop 
environment
 License:        GPL-2.0+
@@ -25,13 +25,15 @@
 Source0:        %{name}-%{version}.tar.bz2
 # PATCH-FEATURE-OPENSUSE ristretto-0.0.91-add-more-mime-types.patch 
[email protected] -- Adds support for additional image MIME types supported by 
openSUSE
 Patch0:         ristretto-0.0.91-add-more-mime-types.patch
+# PATCH-FIX-UPSTREAM ristretto-0.3.4-fix-gtk-requirements.patch bxo#8343 
[email protected] -- Only depend on GTK+ >= 2.20 (patch from upstream git)
+Patch1:         ristretto-0.3.4-fix-gtk-requirements.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  pkg-config
 BuildRequires:  thunar-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xfce4-dev-tools
-BuildRequires:  pkgconfig(gtk+-2.0) >= 2.24
+BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(libexif)
 BuildRequires:  pkgconfig(libxfce4ui-1)
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -42,6 +44,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 xdt-autogen
@@ -58,8 +61,6 @@
 %clean
 rm -rf %{buildroot}
 
-%if 0%{?suse_version} >= 1140
-
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -67,11 +68,10 @@
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%endif
 
 %files -f %{name}.lang
 %defattr(-,root,root)
-%doc AUTHORS COPYING ChangeLog NEWS README TODO
+%doc AUTHORS COPYING ChangeLog NEWS TODO
 %dir %{_datadir}/xfce4
 %dir %{_datadir}/xfce4/ristretto
 %doc %{_datadir}/xfce4/ristretto/html/

++++++ ristretto-0.3.4-fix-gtk-requirements.patch ++++++
>From a4005e226864429f027aad86d1a2d1a74c8d28d0 Mon Sep 17 00:00:00 2001
From: Stephan Arts <[email protected]>
Date: Sun, 29 Jan 2012 08:17:47 +0000
Subject: Remove reference to gtk_combo_box_text

---
diff --git a/src/main_window.c b/src/main_window.c
index 9d15fdf..806053f 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -1965,23 +1965,23 @@ cb_rstto_main_window_set_as_wallpaper (GtkWidget 
*widget, RsttoMainWindow *windo
                 0);
 
         choose_desktop_combo_box =
-                gtk_combo_box_text_new();
+                gtk_combo_box_new_text();
         gtk_box_pack_start (
                 GTK_BOX (content_area),
                 choose_desktop_combo_box,
                 FALSE,
                 FALSE,
                 0);
-        gtk_combo_box_text_insert_text(
-                GTK_COMBO_BOX_TEXT (choose_desktop_combo_box),
+        gtk_combo_box_insert_text(
+                GTK_COMBO_BOX (choose_desktop_combo_box),
                 DESKTOP_TYPE_NONE,
                 _("None"));
-        gtk_combo_box_text_insert_text (
-                GTK_COMBO_BOX_TEXT (choose_desktop_combo_box),
+        gtk_combo_box_insert_text (
+                GTK_COMBO_BOX (choose_desktop_combo_box),
                 DESKTOP_TYPE_XFCE,
                 _("Xfce"));
-        gtk_combo_box_text_insert_text (
-                GTK_COMBO_BOX_TEXT (choose_desktop_combo_box),
+        gtk_combo_box_insert_text (
+                GTK_COMBO_BOX (choose_desktop_combo_box),
                 DESKTOP_TYPE_GNOME,
                 _("GNOME"));
 
++++++ ristretto-0.3.2.tar.bz2 -> ristretto-0.3.4.tar.bz2 ++++++
++++ 4668 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to