Accepting request 109587 from home:vuntz:branches:GNOME:Factory
Update to 0.1.18; can't build until bnc#752518 is fixed OBS-URL: https://build.opensuse.org/request/show/109587 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/colord?expand=0&rev=34
This commit is contained in:
parent
d1a17d3c0e
commit
b257e0dd51
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bbd9e2865c7ef7f62e65ba055ca4447d062cc76548328e101d7fd0ed8c22b25d
|
|
||||||
size 452900
|
|
3
colord-0.1.18.tar.xz
Normal file
3
colord-0.1.18.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:87175f9bbc2c59fbe01bb99c4989393f5aaab5077da7cd91f099c6aec49e1099
|
||||||
|
size 475220
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 15 19:29:33 UTC 2012 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.1.18:
|
||||||
|
+ New Features:
|
||||||
|
- Add a Manager.CreateProfileWithFd() method for QtDBus
|
||||||
|
- Add the GAMUT_coverage metadata key to the spec
|
||||||
|
- Add the GAMUT_volume metadata key to the spec
|
||||||
|
- Depend on lcms2 >= 2.2
|
||||||
|
- Make cd-fix-profile add the GAMUT keys to the ICC file
|
||||||
|
- Split out the SANE support into it's own process
|
||||||
|
+ Bugfixes:
|
||||||
|
- Do not delete 'disk' or 'normal' devices when the session
|
||||||
|
exits
|
||||||
|
- Ensure we return NULL for missing device properties
|
||||||
|
- Fix a small leak when creating devices and profiles in
|
||||||
|
clients
|
||||||
|
- Fix cd-fix-profile to add and remove metadata entries
|
||||||
|
- Install per-machine profiles in /var/lib/colord/icc
|
||||||
|
- Show what DBus names have inhibited each device
|
||||||
|
- When doing 'get-devices' show the profile ID and filename
|
||||||
|
- Add new colord-sane.service as argument to calls to
|
||||||
|
%service_{add,del}_* macros.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 27 13:24:10 UTC 2012 - vuntz@opensuse.org
|
Mon Feb 27 13:24:10 UTC 2012 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
17
colord.spec
17
colord.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: colord
|
Name: colord
|
||||||
Version: 0.1.17
|
Version: 0.1.18
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: System Daemon for Managing Color Devices
|
Summary: System Daemon for Managing Color Devices
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
@ -37,7 +37,7 @@ BuildRequires: pkgconfig(gmodule-2.0)
|
|||||||
BuildRequires: pkgconfig(gobject-2.0)
|
BuildRequires: pkgconfig(gobject-2.0)
|
||||||
BuildRequires: pkgconfig(gudev-1.0)
|
BuildRequires: pkgconfig(gudev-1.0)
|
||||||
BuildRequires: pkgconfig(gusb) >= 0.1.1
|
BuildRequires: pkgconfig(gusb) >= 0.1.1
|
||||||
BuildRequires: pkgconfig(lcms2)
|
BuildRequires: pkgconfig(lcms2) >= 2.2
|
||||||
BuildRequires: pkgconfig(polkit-gobject-1) >= 0.103
|
BuildRequires: pkgconfig(polkit-gobject-1) >= 0.103
|
||||||
BuildRequires: pkgconfig(sqlite3)
|
BuildRequires: pkgconfig(sqlite3)
|
||||||
BuildRequires: pkgconfig(systemd)
|
BuildRequires: pkgconfig(systemd)
|
||||||
@ -111,7 +111,7 @@ popd
|
|||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
%service_add_pre colord.service
|
%service_add_pre colord.service colord-sane.service
|
||||||
# Create colord user
|
# Create colord user
|
||||||
getent group colord >/dev/null || groupadd -r colord
|
getent group colord >/dev/null || groupadd -r colord
|
||||||
getent passwd colord >/dev/null || useradd -r -g colord -d %{_localstatedir}/lib/colord -s /sbin/nologin -c "user for colord" colord
|
getent passwd colord >/dev/null || useradd -r -g colord -d %{_localstatedir}/lib/colord -s /sbin/nologin -c "user for colord" colord
|
||||||
@ -120,13 +120,13 @@ test ! -d %{_localstatedir}/lib/colord || chown -R colord:colord %{_localstatedi
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%service_add_post colord.service
|
%service_add_post colord.service colord-sane.service
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
%service_del_preun colord.service
|
%service_del_preun colord.service colord-sane.service
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%service_del_postun colord.service
|
%service_del_postun colord.service colord-sane.service
|
||||||
|
|
||||||
%post -n libcolord1 -p /sbin/ldconfig
|
%post -n libcolord1 -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -136,18 +136,23 @@ exit 0
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS ChangeLog COPYING NEWS README
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||||
%{_unitdir}/colord.service
|
%{_unitdir}/colord.service
|
||||||
|
%{_unitdir}/colord-sane.service
|
||||||
/lib/udev/rules.d/*.rules
|
/lib/udev/rules.d/*.rules
|
||||||
%attr(755,colord,colord) %dir %{_localstatedir}/lib/colord
|
%attr(755,colord,colord) %dir %{_localstatedir}/lib/colord
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}.conf
|
%config(noreplace) %{_sysconfdir}/%{name}.conf
|
||||||
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.ColorManager.conf
|
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.ColorManager.conf
|
||||||
|
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.colord-sane.conf
|
||||||
%{_bindir}/cd-create-profile
|
%{_bindir}/cd-create-profile
|
||||||
%{_bindir}/cd-fix-profile
|
%{_bindir}/cd-fix-profile
|
||||||
%{_bindir}/colormgr
|
%{_bindir}/colormgr
|
||||||
%{_libdir}/colord-sensors/
|
%{_libdir}/colord-sensors/
|
||||||
%{_libexecdir}/%{name}
|
%{_libexecdir}/%{name}
|
||||||
|
%{_libexecdir}/colord-sane
|
||||||
%{_datadir}/color/
|
%{_datadir}/color/
|
||||||
%{_datadir}/dbus-1/interfaces/org.freedesktop.ColorManager.*
|
%{_datadir}/dbus-1/interfaces/org.freedesktop.ColorManager.*
|
||||||
|
%{_datadir}/dbus-1/interfaces/org.freedesktop.colord.sane.xml
|
||||||
%{_datadir}/dbus-1/system-services/org.freedesktop.ColorManager.service
|
%{_datadir}/dbus-1/system-services/org.freedesktop.ColorManager.service
|
||||||
|
%{_datadir}/dbus-1/system-services/org.freedesktop.colord-sane.service
|
||||||
%{_datadir}/polkit-1/actions/org.freedesktop.color.policy
|
%{_datadir}/polkit-1/actions/org.freedesktop.color.policy
|
||||||
%{_mandir}/man1/cd-create-profile.1%{?ext_man}
|
%{_mandir}/man1/cd-create-profile.1%{?ext_man}
|
||||||
%{_mandir}/man1/cd-fix-profile.1%{?ext_man}
|
%{_mandir}/man1/cd-fix-profile.1%{?ext_man}
|
||||||
|
Loading…
Reference in New Issue
Block a user