Accepting request 239222 from home:dimstar:branches:GNOME:Factory

Update to 1.2.1

OBS-URL: https://build.opensuse.org/request/show/239222
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/colord?expand=0&rev=102
This commit is contained in:
Dominique Leuenberger 2014-07-02 15:48:05 +00:00 committed by Git OBS Bridge
parent c66ed12ded
commit 57cbf66436
5 changed files with 20 additions and 34 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:decbad07f7dbdebabe552f3280582008511f46201b47e0a91ea266d54072155e
size 1155920

3
colord-1.2.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2db8c7002f7c859dce71a988de7c39f8370a6ab99a62b1037488208b43829bea
size 1164544

View File

@ -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

View File

@ -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 \

View File

@ -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 */