Package init
This commit is contained in:
commit
e130dc60bc
BIN
dconf-0.30.0.tar.xz
Normal file
BIN
dconf-0.30.0.tar.xz
Normal file
Binary file not shown.
23
dconf-override.patch
Normal file
23
dconf-override.patch
Normal file
@ -0,0 +1,23 @@
|
||||
diff --git a/engine/dconf-engine-source-user.c b/engine/dconf-engine-source-user.c
|
||||
index 1657875..e4f8786 100644
|
||||
--- a/engine/dconf-engine-source-user.c
|
||||
+++ b/engine/dconf-engine-source-user.c
|
||||
@@ -39,11 +39,17 @@ dconf_engine_source_user_open_gvdb (const gchar *name)
|
||||
{
|
||||
GvdbTable *table;
|
||||
gchar *filename;
|
||||
+ const gchar *override;
|
||||
+
|
||||
+ override = g_getenv ("DCONF_USER_CONFIG_DIR");
|
||||
+ if (override == NULL)
|
||||
+ filename = g_build_filename (g_get_user_config_dir (), "dconf", name, NULL);
|
||||
+ else
|
||||
+ filename = g_build_filename (g_get_home_dir (), override, name, NULL);
|
||||
|
||||
/* This can fail in the normal case of the user not having any
|
||||
* settings. That's OK and it shouldn't be considered as an error.
|
||||
*/
|
||||
- filename = g_build_filename (g_get_user_config_dir (), "dconf", name, NULL);
|
||||
table = gvdb_table_new (filename, FALSE, NULL);
|
||||
g_free (filename);
|
||||
|
||||
93
dconf.spec
Normal file
93
dconf.spec
Normal file
@ -0,0 +1,93 @@
|
||||
Name: dconf
|
||||
Version: 0.30.0
|
||||
Release: 2
|
||||
Summary: Dconf provides a backend to the GSettings API in Glib
|
||||
|
||||
License: LGPLv2+ and GPLv2+ and GPLv3+
|
||||
URL: http://live.gnome.org/%{name}
|
||||
Source0: http://download.gnome.org/sources/%{name}/0.30/%{name}-%{version}.tar.xz
|
||||
|
||||
#this patch comes from fedora/redhat repository
|
||||
Patch0001: dconf-override.patch
|
||||
|
||||
BuildRequires: bash-completion dbus-devel glib2-devel >= 2.44.0 gtk-doc meson vala
|
||||
Requires: dbus glib2%{?_isa} >= 2.44.0
|
||||
|
||||
%description
|
||||
Dconf is a low-level configuration system. Its main purpose is to provide a backend
|
||||
to GSettings on platforms that don't already have configuration storage systems.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for dconf
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
Includes header files, static library and other development files for dconf.
|
||||
|
||||
%package help
|
||||
Summary: Document files for dconf
|
||||
|
||||
%description help
|
||||
This package contains some readme, man and other related files for dconf.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%meson -Dgtk_doc=true
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
|
||||
install -d $RPM_BUILD_ROOT%{_sysconfdir}/dconf/profile
|
||||
install -d $RPM_BUILD_ROOT%{_sysconfdir}/dconf/db/{site,local,distro}.d/locks
|
||||
|
||||
cat << EOF > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/profile/user
|
||||
user-db:user
|
||||
system-db:local
|
||||
system-db:site
|
||||
system-db:distro
|
||||
EOF
|
||||
|
||||
%posttrans
|
||||
dconf update
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%dir %{_sysconfdir}/dconf
|
||||
%dir %{_sysconfdir}/dconf/db
|
||||
%dir %{_sysconfdir}/dconf/db/local.d
|
||||
%dir %{_sysconfdir}/dconf/db/local.d/locks
|
||||
%dir %{_sysconfdir}/dconf/db/site.d
|
||||
%dir %{_sysconfdir}/dconf/db/site.d/locks
|
||||
%dir %{_sysconfdir}/dconf/db/distro.d
|
||||
%dir %{_sysconfdir}/dconf/db/distro.d/locks
|
||||
%dir %{_sysconfdir}/dconf/profile
|
||||
%{_libexecdir}/dconf-service
|
||||
%{_bindir}/dconf
|
||||
%{_libdir}/libdconf.so.1*
|
||||
%{_libdir}/gio/modules/libdconfsettings.so
|
||||
%{_datadir}/bash-completion/completions/dconf
|
||||
%{_datadir}/dbus-1/services/ca.desrt.dconf.service
|
||||
%config(noreplace) %{_sysconfdir}/dconf/profile/user
|
||||
|
||||
%files devel
|
||||
%{_includedir}/dconf
|
||||
%{_libdir}/libdconf.so
|
||||
%{_libdir}/pkgconfig/dconf.pc
|
||||
%{_datadir}/vala
|
||||
%{_datadir}/gtk-doc/html/dconf
|
||||
%dir %{_datadir}/gtk-doc
|
||||
%dir %{_datadir}/gtk-doc/html
|
||||
|
||||
%files help
|
||||
%{_mandir}/man1/dconf-service.1.gz
|
||||
%{_mandir}/man1/dconf.1.gz
|
||||
%{_mandir}/man7/dconf.7.gz
|
||||
|
||||
%changelog
|
||||
* Wed Sep 19 2019 yanzhihua <yanzhihua4@huawei.com> - 0.30.0-2
|
||||
- Package init.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user