diff --git a/colord-1.2.0.tar.xz b/colord-1.2.0.tar.xz deleted file mode 100644 index 2435d07..0000000 --- a/colord-1.2.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:decbad07f7dbdebabe552f3280582008511f46201b47e0a91ea266d54072155e -size 1155920 diff --git a/colord-1.2.1.tar.xz b/colord-1.2.1.tar.xz new file mode 100644 index 0000000..fa64a28 --- /dev/null +++ b/colord-1.2.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db8c7002f7c859dce71a988de7c39f8370a6ab99a62b1037488208b43829bea +size 1164544 diff --git a/colord.changes b/colord.changes index abe08b7..97e19b8 100644 --- a/colord.changes +++ b/colord.changes @@ -1,7 +1,22 @@ +------------------------------------------------------------------- +Tue Jul 1 17:47:51 UTC 2014 - dimstar@opensuse.org + +- Update to version 1.2.1: + + New Features: + - Allow users to rename session and system ICC profiles. + + Bugfixes: + - Fix building the CMF spectra on OpenBSD/sparc64. + - Fix the style of two colorimeter figures. + - Make colord polkit policy usable on servers. + - Trim out the CUPS-supplied prefix for the printer serial + number. + + Updated translations. +- Drop type-mismatch.patch: fixed upstream. + ------------------------------------------------------------------- Sun May 18 22:16:01 UTC 2014 - schwab@linux-m68k.org -- type-mismatch.patch: fix type mismatch (fdo#77535) +- type-mismatch.patch: fix type mismatch (fdo#77535). ------------------------------------------------------------------- Mon Apr 7 17:50:42 UTC 2014 - zaitor@opensuse.org diff --git a/colord.spec b/colord.spec index 5e0d3dc..1a56206 100644 --- a/colord.spec +++ b/colord.spec @@ -19,7 +19,7 @@ %define _udevrulesdir %(pkg-config --variable=udevdir udev)/rules.d Name: colord -Version: 1.2.0 +Version: 1.2.1 Release: 0 Summary: System Daemon for Managing Color Devices License: GPL-2.0+ @@ -29,8 +29,6 @@ Source0: http://www.freedesktop.org/software/colord/releases/%{name}-%{ve # Apparmor profile Source1: usr.lib.colord Source99: baselibs.conf -# PATCH-FIX-UPSTREAM type-mismatch.patch fdo#77535 schwab@linux-m68k.org -- Fix type mismatch on build -Patch0: type-mismatch.patch BuildRequires: gobject-introspection-devel BuildRequires: intltool BuildRequires: vala @@ -120,7 +118,6 @@ there are no users logged in. %lang_package %prep %setup -q -%patch0 -p1 %build %configure \ diff --git a/type-mismatch.patch b/type-mismatch.patch deleted file mode 100644 index c66a1eb..0000000 --- a/type-mismatch.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: colord-1.2.0/lib/colord/cd-it8.c -=================================================================== ---- colord-1.2.0.orig/lib/colord/cd-it8.c -+++ colord-1.2.0/lib/colord/cd-it8.c -@@ -1424,7 +1424,7 @@ cd_it8_save_to_data (CdIt8 *it8, - gchar *data_tmp = NULL; - gchar *date_str = NULL; - GDateTime *datetime = NULL; -- gsize size_tmp = 0; -+ cmsUInt32Number size_tmp = 0; - guint i; - - g_return_val_if_fail (CD_IS_IT8 (it8), FALSE); -@@ -1494,10 +1494,10 @@ cd_it8_save_to_data (CdIt8 *it8, - } - - /* write the file */ -- ret = cmsIT8SaveToMem (it8_lcms, NULL, (cmsUInt32Number *) &size_tmp); -+ ret = cmsIT8SaveToMem (it8_lcms, NULL, &size_tmp); - g_assert (ret); - data_tmp = g_malloc (size_tmp); -- ret = cmsIT8SaveToMem (it8_lcms, data_tmp, (cmsUInt32Number *) &size_tmp); -+ ret = cmsIT8SaveToMem (it8_lcms, data_tmp, &size_tmp); - g_assert (ret); - - /* save for caller */