Bug#450485: eog: ABI changes in exempi-1.99.5
Michael Biebl
biebl at debian.org
Wed Nov 7 15:14:37 UTC 2007
Package: eog
Version: 2.20.2-1
Severity: important
Tags: patch
Hi,
exempi-1.99.5 has been released and I plan to upload an updated version
as soon as ries is back.
There are some ABI changes, which required a SONAME bump. Quoting
upstream:
* Change: API xmp_files_close(), xmp_files_put_xmp(), xmp_files_free(),
xmp_free(), xmp_iterator_free(), xmp_iterator_skip() now return bool.
* Change: API xmp_get_property_and_bits() renamed xmp_get_property().
* Change: API xmp_set_property2() renamed xmp_set_property().
Attached is a patch which updates the eog sources accordingly.
As this is not backwards compatible, you have to bump the build
dependencies in debian/control. This also means, that you musn't apply
the patch until 1.99.5 is uploaded.
Please consider to push this patch upstream. configure.ac has to be
updated for this, too: EXEMPI_REQUIRED=1.99.5 line 78.
Cheers
Michael
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.23
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages eog depends on:
ii gconf2 2.20.1-1 GNOME configuration database syste
ii gnome-icon-theme 2.20.0-1 GNOME Desktop icon theme
ii libart-2.0-2 2.3.19-3 Library of functions for 2D graphi
ii libc6 2.6.1-6 GNU C Library: Shared libraries
ii libcairo2 1.4.10-1 The Cairo 2D vector graphics libra
ii libdbus-glib-1-2 0.74-1 simple interprocess messaging syst
ii libexempi3 1.99.5-1 A library to parse XMP metadata (L
ii libexif12 0.6.16-2 library to parse EXIF files
ii libgconf2-4 2.20.1-1 GNOME configuration database syste
ii libglade2-0 1:2.6.2-1 library to load .glade files at ru
ii libglib2.0-0 2.14.2-1 The GLib library of C routines
ii libgnome-desktop-2 2.20.1-1 Utility library for loading .deskt
ii libgnome2-0 2.20.1.1-1 The GNOME 2 library - runtime file
ii libgnomeui-0 2.20.1.1-1 The GNOME 2 libraries (User Interf
ii libgnomevfs2-0 1:2.20.0-3 GNOME Virtual File System (runtime
ii libgtk2.0-0 2.12.1-1 The GTK+ graphical user interface
ii libjpeg62 6b-14 The Independent JPEG Group's JPEG
ii liblcms1 1.16-6 Color management library
ii libx11-6 2:1.0.3-7 X11 client-side library
ii libxml2 2.6.30.dfsg-2 GNOME XML library
ii python2.4 2.4.4-6 An interactive high-level object-o
ii shared-mime-info 0.22-2 FreeDesktop.org shared MIME databa
Versions of packages eog recommends:
ii librsvg2-common 2.18.2-1 SAX-based renderer library for SVG
-- no debconf information
-------------- next part --------------
diff --git a/src/eog-properties-dialog.c b/src/eog-properties-dialog.c
index 8618a24..8b41a32 100644
--- a/src/eog-properties-dialog.c
+++ b/src/eog-properties-dialog.c
@@ -171,7 +171,7 @@ eog_xmp_set_label (XmpPtr xmp,
XmpStringPtr value = xmp_string_new ();
- if (xmp_get_property_and_bits (xmp, ns, propname, value, &options)) {
+ if (xmp_get_property (xmp, ns, propname, value, &options)) {
if (XMP_IS_PROP_SIMPLE (options)) {
gtk_label_set_text (GTK_LABEL (w), xmp_string_cstr (value));
} else if (XMP_IS_PROP_ARRAY (options)) {
More information about the pkg-gnome-maintainers
mailing list