2011-03-22 16:20:48 +00:00
|
|
|
%define glib2_version 2.27.2
|
|
|
|
%define vala_version 0.11.7
|
2010-05-25 04:35:15 +00:00
|
|
|
|
2010-05-20 20:54:48 +00:00
|
|
|
Name: dconf
|
2011-03-22 16:20:48 +00:00
|
|
|
Version: 0.7.3
|
2011-04-06 23:48:34 +00:00
|
|
|
Release: 2
|
2010-05-20 20:54:48 +00:00
|
|
|
Summary: A configuration system
|
|
|
|
|
|
|
|
Group: System Environment/Base
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: http://live.gnome.org/dconf
|
2011-01-17 19:48:35 +00:00
|
|
|
#VCS: git:git://git.gnome.org/dconf
|
2011-01-17 18:44:04 +00:00
|
|
|
Source0: http://download.gnome.org/sources/dconf/0.7/dconf-%{version}.tar.bz2
|
2010-05-20 20:54:48 +00:00
|
|
|
|
2011-04-06 23:48:34 +00:00
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=646220
|
|
|
|
Patch0: dconf-editor-crash.patch
|
|
|
|
|
2010-05-25 04:35:15 +00:00
|
|
|
BuildRequires: glib2-devel >= %{glib2_version}
|
2011-01-17 22:52:44 +00:00
|
|
|
BuildRequires: dbus-devel
|
2010-05-20 20:54:48 +00:00
|
|
|
Requires: dbus
|
|
|
|
|
2011-01-17 23:00:46 +00:00
|
|
|
BuildRequires: gtk3-devel
|
2010-06-26 15:28:33 +00:00
|
|
|
BuildRequires: libxml2-devel
|
2011-03-22 16:20:48 +00:00
|
|
|
BuildRequires: vala-devel >= %{vala_version}
|
2010-06-26 15:28:33 +00:00
|
|
|
BuildRequires: libgee-devel
|
2010-08-04 03:25:06 +00:00
|
|
|
# BuildRequires: gobject-introspection-devel
|
2010-06-30 17:14:22 +00:00
|
|
|
# Bootstrap requirements
|
|
|
|
BuildRequires: autoconf automake libtool
|
|
|
|
BuildRequires: gtk-doc
|
|
|
|
BuildRequires: vala
|
2010-09-21 18:50:48 +00:00
|
|
|
BuildRequires: gobject-introspection-devel >= 0.9.6
|
2010-06-12 20:12:33 +00:00
|
|
|
|
2010-05-20 20:54:48 +00:00
|
|
|
%description
|
|
|
|
dconf is a low-level configuration system. Its main purpose is to provide a
|
|
|
|
backend to the GSettings API in GLib.
|
|
|
|
|
2010-05-25 04:35:15 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Header files and libraries for dconf development
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: glib2-devel >= %{glib2_version}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
dconf development package. Contains files needed for doing software
|
|
|
|
development using dconf.
|
|
|
|
|
2010-06-26 15:28:33 +00:00
|
|
|
%package editor
|
|
|
|
Summary: Configuration editor for dconf
|
|
|
|
Group: Applications/System
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description editor
|
|
|
|
docnf-editor allows you to browse and modify dconf databases.
|
|
|
|
|
|
|
|
|
2010-05-20 20:54:48 +00:00
|
|
|
%prep
|
2010-06-12 20:12:33 +00:00
|
|
|
%setup -q
|
2011-04-06 23:48:34 +00:00
|
|
|
%patch0 -p1 -b .editor-crash
|
2010-05-20 20:54:48 +00:00
|
|
|
|
|
|
|
%build
|
2010-06-30 17:14:22 +00:00
|
|
|
(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
|
|
|
|
%configure $CONFIGFLAGS \
|
|
|
|
--disable-static \
|
|
|
|
)
|
2010-05-20 20:54:48 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
|
|
|
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
|
|
|
|
|
|
|
|
%postun
|
|
|
|
/sbin/ldconfig
|
|
|
|
gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING
|
|
|
|
%{_libdir}/gio/modules/libdconfsettings.so
|
|
|
|
%{_libexecdir}/dconf-service
|
|
|
|
%{_datadir}/dbus-1/services/ca.desrt.dconf.service
|
|
|
|
%{_datadir}/dbus-1/system-services/ca.desrt.dconf.service
|
2010-05-25 04:35:15 +00:00
|
|
|
%{_bindir}/dconf
|
|
|
|
%{_libdir}/libdconf.so.*
|
2011-01-17 19:48:35 +00:00
|
|
|
%{_libdir}/libdconf-dbus-1.so.*
|
|
|
|
#%{_libdir}/girepository-1.0/dconf-1.0.typelib
|
2010-05-25 04:35:15 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_includedir}/dconf
|
|
|
|
%{_libdir}/libdconf.so
|
|
|
|
%{_libdir}/pkgconfig/dconf.pc
|
2011-01-17 19:48:35 +00:00
|
|
|
%{_includedir}/dconf-dbus-1
|
|
|
|
%{_libdir}/libdconf-dbus-1.so
|
|
|
|
%{_libdir}/pkgconfig/dconf-dbus-1.pc
|
2010-08-04 03:25:06 +00:00
|
|
|
# temporarily disable introspection until we have a new-enough goi
|
2011-01-17 19:48:35 +00:00
|
|
|
#%{_datadir}/gir-1.0/dconf-1.0.gir
|
2010-06-12 20:12:33 +00:00
|
|
|
%{_datadir}/gtk-doc/html/dconf
|
2010-08-04 03:39:19 +00:00
|
|
|
%{_datadir}/vala
|
2010-05-20 20:54:48 +00:00
|
|
|
|
2010-06-26 15:28:33 +00:00
|
|
|
%files editor
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/dconf-editor
|
2011-01-17 19:48:35 +00:00
|
|
|
%{_datadir}/applications/dconf-editor.desktop
|
|
|
|
%dir %{_datadir}/dconf-editor
|
|
|
|
%{_datadir}/dconf-editor/dconf-editor.ui
|
2010-06-26 15:28:33 +00:00
|
|
|
|
2010-05-20 20:54:48 +00:00
|
|
|
%changelog
|
2011-04-06 23:48:34 +00:00
|
|
|
* Wed Apr 6 2011 Matthias Clasen <mclasen@redhat.com> - 0.7.3-2
|
|
|
|
- Fix a crash in dconf-editor
|
|
|
|
|
2011-03-22 16:20:48 +00:00
|
|
|
* Tue Mar 22 2011 Tomas Bzatek <tbzatek@redhat.com> - 0.7.3-1
|
|
|
|
- Update to 0.7.3
|
|
|
|
|
2011-02-11 00:28:39 +00:00
|
|
|
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> - 0.7.2-3
|
|
|
|
- Rebuild for newer gtk
|
|
|
|
|
2011-02-08 13:15:50 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-05 22:53:04 +00:00
|
|
|
* Sat Feb 5 2011 Matthias Clasen <mclasen@redhat.com> - 0.7.2-1
|
|
|
|
- Update to 0.7.2
|
|
|
|
|
2011-02-02 07:26:22 +00:00
|
|
|
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> - 0.7.1-1
|
|
|
|
- Update to 0.7.1
|
|
|
|
|
2011-01-17 18:44:04 +00:00
|
|
|
* Mon Jan 17 2011 Matthias Clasen <mclasen@redhat.com> - 0.7-1
|
|
|
|
- Update to 0.7
|
|
|
|
|
2010-09-29 21:05:38 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 0.5.1-2
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-21 22:43:57 +00:00
|
|
|
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.1-1
|
|
|
|
- Update to 0.5.1
|
2010-09-21 18:50:48 +00:00
|
|
|
|
2010-08-06 03:06:00 +00:00
|
|
|
* Thu Aug 5 2010 Matthias Clasen <mclasen@redhat.com> - 0.5-2
|
|
|
|
- Fix up shared library symlinks (#621733)
|
|
|
|
|
2010-08-04 02:40:46 +00:00
|
|
|
* Tue Aug 3 2010 Matthias Clasen <mclasen@redhat.com> - 0.5-1
|
|
|
|
- Update to 0.5
|
|
|
|
|
2010-07-13 00:31:40 +00:00
|
|
|
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.2-1
|
|
|
|
- Update to 0.4.2
|
|
|
|
|
2010-06-30 17:14:22 +00:00
|
|
|
* Wed Jun 30 2010 Colin Walters <walters@verbum.org> - 0.4.1-2
|
|
|
|
- Changes to support snapshot builds
|
|
|
|
|
2010-06-26 15:28:33 +00:00
|
|
|
* Sat Jun 26 2010 Matthias Clasen <mclasen@redhat.com> 0.4.1-1
|
|
|
|
- Update to 0.4.1
|
|
|
|
- Include dconf-editor (in a subpackage)
|
|
|
|
|
2010-06-23 18:33:13 +00:00
|
|
|
* Wed Jun 23 2010 Matthias Clasen <mclasen@redhat.com> 0.4-2
|
|
|
|
- Rebuild against glib 2.25.9
|
|
|
|
|
2010-06-12 19:32:56 +00:00
|
|
|
* Sat Jun 12 2010 Matthias Clasen <mclasen@redhat.com> 0.4-1
|
|
|
|
- Update to 0.4
|
|
|
|
|
2010-06-08 14:32:16 +00:00
|
|
|
* Tue Jun 08 2010 Richard Hughes <rhughes@redhat.com> 0.3.2-0.1.20100608
|
|
|
|
- Update to a git snapshot so that users do not get a segfault in every
|
|
|
|
application using GSettings.
|
|
|
|
|
2010-06-02 15:20:37 +00:00
|
|
|
* Wed Jun 02 2010 Bastien Nocera <bnocera@redhat.com> 0.3.1-2
|
|
|
|
- Rebuild against latest glib2
|
|
|
|
|
2010-05-25 04:06:42 +00:00
|
|
|
* Tue May 24 2010 Matthias Clasen <mclasen@redhat.com> 0.3.1-1
|
|
|
|
- Update to 0.3.1
|
2010-05-25 04:35:15 +00:00
|
|
|
- Add a -devel subpackage
|
2010-05-25 04:06:42 +00:00
|
|
|
|
2010-05-21 22:22:55 +00:00
|
|
|
* Fri May 21 2010 Matthias Clasen <mclasen@redhat.com> 0.3-3
|
|
|
|
- Make batched writes (e.g. with delayed settings) work
|
|
|
|
|
2010-05-20 20:54:48 +00:00
|
|
|
* Thu May 20 2010 Matthias Clasen <mclasen@redhat.com> 0.3-2
|
|
|
|
- Make the registration of the backend work
|
|
|
|
|
|
|
|
* Wed May 19 2010 Matthias Clasen <mclasen@redhat.com> 0.3-1
|
|
|
|
- Initial packaging
|