This is the result of automated script (0.9.1) conversion:
oe-core/scripts/contrib/convert-overrides.py .
converting the metadata to use ":" as the override character instead of "_".
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Changes in dconf 0.40.0
=======================
- common: Add missing G_BEGIN/END_DECLS to allow use of headers from C++
code (Philip Withnall, !67)
Changes in dconf 0.39.1
=======================
- build: improve libdconf visible symbols (Inigo Martinez, Daniel Playfair
Cal, !59)
- engine: do not emit optimistic change notifications unless the local value
is different (Daniel Playfair Cal, !2)
- build: minor fixes to bash completion script (Philip Withnall, !64)
- service: add a systemd unit for D-Bus activation (Simon McVittie, !63)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
dconf-editor 3.36.2
=====================
Some fixes for the now HC theme.
Translations updated:
Latvian: Rūdolfs Mazurs
Romanian: Daniel Șerbănescu
Slovak: Peter Mráz
Ukrainian: Yuri Chornoivan
dconf-editor 3.36.0
=====================
New stable release! Contains mainly translations updates. Great!
Translations updated (since 3.35.91):
Danish: Alan Mortensen
Dutch: Nathan Follens
German: Tim Sabsch
Greek: Efstathios Iosifidis
Italian: Milo Casagrande
Japanese: sicklylife
Korean: Changwoo Ryu
Polish: Piotr DrÄ…g
Slovenian: Matej UrbanÄiÄ
dconf-editor 3.35.91
=====================
Just a translations release. Note: the announce for 3.35.90 only
credited one translator, while there is a long list of them; not
sure of why it failed. Check the NEWS file for complete credits!
Translations updated:
Basque: Asier Sarasua Garmendia
Czech: Marek Černocký
Finnish: Jiri Grönroos
French: Claude Paroz
Galician: Fran Dieguez
Hungarian: Balázs Úr
Lithuanian: Aurimas ÄŒernius
Serbian: Марко КоÑтић
Turkish: Sabri Ünal
dconf-editor 3.35.90
=====================
Hey, that is mostly a translations beta release! Feels good, no.
Translations updated:
Catalan: Jordi Mas
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
fix-meson-0.52.patch was applied upstream
Changes in dconf 0.36.0
=======================
- No changes since 0.35.1
Changes in dconf 0.35.1
=======================
- Writer service: avoid writing to disk and emitting changed signals
when write requests do not result in changes to the database (Daniel
Playfair Cal, !3)
- build: Drop redundant `install` key from `configure_file()` (Philip
Withnall, !53)
- build: Update abicheck.sh script to work with GCC 9 (Diego
Escalante Urello, !55)
- build: Update use of link_whole for meson-0.52 (Diego Escalante
Urello, !54)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Instead of patching out docs just tell meson not to build man pages
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
dconf requires gtk+3 only for dconf-editor and is useful
even on systems without gui.
add PACKAGECONFIG for editor, enable it by default if x11
is present in DISTRO_FEATURES
add x11 to REQUIRED_DISTRO_FEATURES only if editor is enabled
Note: editor will be dropped from dconf in version 0.23.1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
configure of dconf requires dbus
| checking for dbus... no
| configure: error: Package requirements (dbus-1) were not met:
|
| No package 'dbus-1' found
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* fixes floating dependency:
dconf-0.18.0: dconf-editor rdepends on libxml2, but it isn't a build dependency? [build-deps]
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Changes:
- rename SUMMARY with length > 80 to DESCRIPTION
- rename DESCRIPTION with length < 80 to (non present tag) SUMMARY
- drop final point character at the end of SUMMARY string
- remove trailing whitespace of SUMMARY line
Note: don't bump PR
Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* This change is only aesthetic (unlike indentation in Python
tasks).
* Some recipes were using tabs.
* Some were using 8 spaces.
* Some were using mix or different number of spaces.
* Make them consistently use 4 spaces everywhere.
* Yocto styleguide advises to use tabs (but the only reason to keep
tabs is the need to update a lot of recipes). Lately this advice
was also merged into the styleguide on the OE wiki.
* Using 4 spaces in both types of tasks is better because it's less
error prone when someone is not sure if e.g.
do_generate_toolchain_file() is Python or shell task and also allows
to highlight every tab used in .bb, .inc, .bbappend, .bbclass as
potentially bad (shouldn't be used for indenting of multiline
variable assignments and cannot be used for Python tasks).
* Don't indent closing quote on multiline variables
we're quite inconsistent wheater it's first character on line
under opening quote or under first non-whitespace character in
previous line.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Koen Kooi <koen@dominion.thruhere.net>