---------- Forwarded message ---------- From: Matthias Clasen mclasen@redhat.com Date: 2010/5/17 Subject: packages using gsettings To: Development discussions related to Fedora Core < fedora-devel-list@redhat.com>
Hey,
GConf is finally on the way out, it is being replaced by GSettings/DConf. From a packaging perspective, the following facts are important to know if your package starts using GSettings:
GSettings uses schemas. These are installed as xml files in /usr/share/glib-2.0/schemas. The schemas need to be compiled into binary form using glib-compile-schemas, so you will have to add the following to your spec:
%postun glib-compile-schemas /usr/share/glib-2.0/schemas ||:
%posttrans glib-compile-schemas /usr/share/glib-2.0/schemas ||:
If the schema is ported 1-1 from a GConf schema and uses key names including _ or other characters outside [a-z0-9-], you need to use the --allow-any-name option when calling glib-compile-schemas
You can look at the rawhide evince package for an example.
Matthias
-- devel mailing list devel@lists.fedoraproject.org https://admin.fedoraproject.org/mailman/listinfo/devel
chinese@lists.fedoraproject.org