New upstream version
- Add a sensor-set-options command to the colormgr tool - Add the concept of 'options' on each color sensor device - Enable gtk-doc in the default distro build
This commit is contained in:
parent
c96a2eac7a
commit
42cc41aca3
1
.gitignore
vendored
1
.gitignore
vendored
@ -17,3 +17,4 @@
|
|||||||
/colord-0.1.17.tar.xz
|
/colord-0.1.17.tar.xz
|
||||||
/colord-0.1.18.tar.xz
|
/colord-0.1.18.tar.xz
|
||||||
/colord-0.1.19.tar.xz
|
/colord-0.1.19.tar.xz
|
||||||
|
/colord-0.1.20.tar.xz
|
||||||
|
44
colord.spec
44
colord.spec
@ -1,6 +1,6 @@
|
|||||||
Summary: Color daemon
|
Summary: Color daemon
|
||||||
Name: colord
|
Name: colord
|
||||||
Version: 0.1.19
|
Version: 0.1.20
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+ and LGPLv2+
|
License: GPLv2+ and LGPLv2+
|
||||||
URL: http://www.freedesktop.org/software/colord/
|
URL: http://www.freedesktop.org/software/colord/
|
||||||
@ -19,6 +19,8 @@ BuildRequires: sqlite-devel
|
|||||||
BuildRequires: gobject-introspection-devel
|
BuildRequires: gobject-introspection-devel
|
||||||
BuildRequires: vala-tools
|
BuildRequires: vala-tools
|
||||||
BuildRequires: libgusb-devel
|
BuildRequires: libgusb-devel
|
||||||
|
BuildRequires: gtk3-devel
|
||||||
|
BuildRequires: gtk-doc
|
||||||
|
|
||||||
Requires: shared-color-profiles
|
Requires: shared-color-profiles
|
||||||
Requires: color-filesystem
|
Requires: color-filesystem
|
||||||
@ -36,12 +38,28 @@ Requires: %{name} = %{version}-%{release}
|
|||||||
%description devel
|
%description devel
|
||||||
Files for development with %{name}.
|
Files for development with %{name}.
|
||||||
|
|
||||||
|
%package gtk-devel
|
||||||
|
Summary: GTK development package for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description gtk-devel
|
||||||
|
Files for development with %{name} using GTK.
|
||||||
|
|
||||||
|
%package gtk
|
||||||
|
Summary: GTK helper library for %{name}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description gtk
|
||||||
|
This package contains extra functionality for %{name} that can be used
|
||||||
|
when running GTK applications.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
--with-daemon-user=colord \
|
--with-daemon-user=colord \
|
||||||
|
--enable-gtk-doc \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
--disable-examples \
|
--disable-examples \
|
||||||
@ -96,6 +114,8 @@ exit 0
|
|||||||
|
|
||||||
# TODO: split this out into a subpackage?
|
# TODO: split this out into a subpackage?
|
||||||
/usr/lib/systemd/system/colord.service
|
/usr/lib/systemd/system/colord.service
|
||||||
|
%{_sysconfdir}/bash_completion.d/*-completion.bash
|
||||||
|
|
||||||
%{_datadir}/dbus-1/interfaces/org.freedesktop.colord.sane.xml
|
%{_datadir}/dbus-1/interfaces/org.freedesktop.colord.sane.xml
|
||||||
%{_datadir}/dbus-1/system-services/org.freedesktop.colord-sane.service
|
%{_datadir}/dbus-1/system-services/org.freedesktop.colord-sane.service
|
||||||
/usr/lib/systemd/system/colord-sane.service
|
/usr/lib/systemd/system/colord-sane.service
|
||||||
@ -107,10 +127,28 @@ exit 0
|
|||||||
%{_includedir}/colord-1
|
%{_includedir}/colord-1
|
||||||
%{_libdir}/libcolord.so
|
%{_libdir}/libcolord.so
|
||||||
%{_libdir}/pkgconfig/colord.pc
|
%{_libdir}/pkgconfig/colord.pc
|
||||||
%{_datadir}/gir-1.0/*.gir
|
%{_datadir}/gir-1.0/Colord-1.0.gir
|
||||||
%{_datadir}/vala/vapi/*.vapi
|
%{_datadir}/vala/vapi/colord.vapi
|
||||||
|
%dir %{_datadir}/gtk-doc/html/colord
|
||||||
|
%{_datadir}/gtk-doc/html/colord/*
|
||||||
|
|
||||||
|
%files gtk-devel
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_libdir}/libcolord-gtk.so
|
||||||
|
%{_libdir}/pkgconfig/colord-gtk.pc
|
||||||
|
%{_datadir}/gir-1.0/ColordGtk-1.0.gir
|
||||||
|
|
||||||
|
%files gtk
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_libdir}/libcolord-gtk.so.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed May 09 2012 Richard Hughes <richard@hughsie.com> 0.1.20-1
|
||||||
|
- New upstream version
|
||||||
|
- Add a sensor-set-options command to the colormgr tool
|
||||||
|
- Add the concept of 'options' on each color sensor device
|
||||||
|
- Enable gtk-doc in the default distro build
|
||||||
|
|
||||||
* Tue Apr 17 2012 Richard Hughes <richard@hughsie.com> 0.1.19-1
|
* Tue Apr 17 2012 Richard Hughes <richard@hughsie.com> 0.1.19-1
|
||||||
- New upstream version
|
- New upstream version
|
||||||
- Add a user suffix to the object path of user-created devices and profiles
|
- Add a user suffix to the object path of user-created devices and profiles
|
||||||
|
Loading…
Reference in New Issue
Block a user