aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-11-19gitpkgv.bbclass: Support also lightweight tagsniko.mauno@vaisala.com
When checking for commit specific tags during GITPKGVTAG resolution, use additional '--tags' and '--exact-match' options for 'git describe' command. This changes the behaviour so that in case an annotated tag does not exist for the particular commit, then the latest lightweight (non-annotated) tag is used instead, in case that commit has at least one such tag. Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19gitpkgv.bbclass: Use --git-dir optionniko.mauno@vaisala.com
Avoid redundant shell working directory change by resorting to '--git-dir' option for git command instead. Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19gnome-terminal: add gsettings to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19gnome-settings-daemon: add gsettings to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19libgweather: add gsetings & upstream-version-is-even to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19nautilus: add gsettings to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19tracker: add gsettings to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19file-roller: add gsettings to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-19dlm: Drop -fstack-clash-protection for clangKhem Raj
-fstack-clash-protection is gcc-only option Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18upm: Link with libatomic on clang/x86Khem Raj
This is needed for atomic<double> which clang does not use intrinsic function for on 32bit x86 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18grpc: Link with libatomic on clang/x86Khem Raj
clang does delegate the atomic<double> calls to libatomic on x86 where as gcc tries to use intrinsics, its debatable who is right, but it does seem that clang is safe in case pointer is unaligned Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18libkcapi: Move static inline functions where usedKhem Raj
Clang warns about unused functions on some arches e.g. mips unused function '_bswap32' [-Werror,-Wunused-function] Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18libldb: Do not require the "pam" distro feature to be enabledPeter Kjellerstedt
It was only added because samba was a dependency, but was not removed again when the dependency on samba was removed in commit 6207331f. This effectively reverts commit a190c2e3. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18python3-jsonrpcserver: add recipenick83ola
Signed-off-by: Nicola Lunghi <nick83ola@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18python3-apply-defaults: add recipenick83ola
Signed-off-by: Nicola Lunghi <nick83ola@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18libtorrent: Disable instrumentation on ppc/mipsKhem Raj
From https://github.com/rakshasa/rtorrent/issues/156 all atomics (__sync_fetch_and_and_8) are not avaliable on mips/ppc, this patch helps workaround the build error Fixes ld: libtorrent.so: undefined reference to `__sync_add_and_fetch_8' Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18libtorrent: Drop 64bit atomics patch for mips/ppcKhem Raj
These patches are no longer needed with latest gcc/clang Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-18rsyslog: Dont force enable atomic builtins on mipsKhem Raj
This would ensure that checks are performed properly before using them Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17libmad: Define O2 for all arches as default optimizationKhem Raj
Extend mips inline asm fix to build on clang ../libmad-0.15.1b/layer12.c:94:10: error: invalid output constraint '=h' in asm return mad_f_mul(sample, linear_table[nb - 2]); ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17evolution-data-server: add upstream-version-is-even & gsettings to inheritAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17gmime: upgrade 3.2.4 -> 3.2.5Andreas Müller
>From gmime-3.2.5.news [1]: * Modified GMimeParser to prevent stack overflows when parsing deeply nested messages. GMimeParser now has a limit on how deep multipart and/or message/rfc822 MIME part nesting is allowed to go before the parser will take action to prevent a stack overflow. If the max level is reached at a message/rfc822 part, then that part will be consumed by the parser as a generic GMimePart rather than a GMimeMessagePart. Likewise, if the max level is reached at any type of multipart, then the content of said multipart will be packed into the GMimeMultipart's preface and not parsed any further. * g_mime_multipart_foreach has been rewritten to avoid recursion, thereby avoiding potential stack overflows. * The gmime-port-2-6-to-3-0.sh script has been fixed to use proper sed syntax. [1] http://ftp.gnome.org/pub/gnome/sources/gmime/3.2/gmime-3.2.5.news Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17gmime: move to meta-oe/recipes-gnomeAndreas Müller
We cannot (yet) move it to meta-gnome because pidgin-sipe depends on it Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17gmime: cleanup recipeAndreas Müller
* autotools is inherited by gnomebase * --disable-schemas-install is not set in EXTRA_OECONF so no need to remove it. Looks like a leftover from inheriting gconf * gmimeConf.sh is not installed so no need to remove it Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17gnome-terminal: Fix build for muslAndreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17gnome-terminal: re-add 3.34.2Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17fluidsynth: upgrade 2.0.7 -> 2.0.9Andreas Müller
>From announcement 2.0.9: * an implicitly declared function caused a pointer to int truncation in CoreAudio driver (#591) * fix a stack-based overflow in CoreAudio driver (#594, thanks to @fkmclane) >From announcement 2.0.8: * fix incorrect behavior of fluid_sample_set_sound_data() (#576, thanks to @swesterfeld) * fix voices being mixed incorrectly, causing audible crackle esp. at sample-rates >48kHz (#580) * make sure that defining NDEBUG disables assertions Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17surf: Add a simple web browserLeon Anavi
Add a recipe for surf, a simple web browser based on WebKit2/GTK+. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17gperftools: Convert static and libunwind support to packageconfigKhem Raj
Disable libunwind on musl/arm gperftools is not buildable for mips in general so extend to musl as well Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17pidgin-sipe: Fix another case of struct incompatiblility due to 64bit time_tKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17poppler: Extend the c/c++ flags fix to cover clangKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17nginx: fix install pathsGaylord Charles
This patch fixes Nginx install paths. I tried to build the native variant for testing purpose and had errors. - Use path variable instead of /usr - Replace the absolute path symlink with a relative one Signed-off-by: Gaylord CHARLES <gaylord.charles@veo-labs.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17flatbuffers: update to 1.11.0Oleksandr Kravchuk
Add detection logic for strtoull_l function needed for musl builds Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17libgpiod: put gpio utils into an actual separate packageBartosz Golaszewski
Currently tools are built conditionally depending on whether the corresponding PACKAGECONFIG option has been set and, although they live in a separate libgpiod-tools package, the user cannot simply select it - he has to additionally extend PACKAGECONFIG. While this makes sense for python and C++ bindings, the tools don't have any dependencies other the libgpiod. Make libgpiod-tools an actual stand-alone package: always build them but install them only if user selected libgpiod-tools. Disable setting tools in default PACKAGECONFIGS Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> s
2019-11-17evince: Fix build with clangKhem Raj
Enhance the patch for printf format checking to make clang work as well Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
2019-11-17python-jsonschema: add PACKAGECONFIG nongpl optionNicola Lunghi
This is the backport of a patch upstream - 10f8a3e Add format validators as separate modules This will add a PACKAGECONFIG = "nongpl" option to include only dependencies not licensed under the GPL license. Signed-off-by: Nicola Lunghi <nick83ola@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-17python-jsonschema: multiple fixesNicola Lunghi
- add second license file to LIC_FILES_CHKSUM for json module - add missing dependencies: six, datetime - add HOMEPAGE field Also: - add RDEPENDS for PACKAGECONFIG[format] for optional modules that are not always needed. In particular rfc3987 and strict-rfc3339 are GPLv3 modules. - add missing idna and jsonpointer modules for PACKAGECONFIG[format] Signed-off-by: Nicola Lunghi <nick83ola@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-15squid: upgrade 4.6 -> 4.9Martin Balik
Signed-off-by: Martin Balik <martin.balik@siemens.com> Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-15ltrace: Remove RDEPENDS on elfutilsAdrian Bunk
It was added without a rationale and seems unnecessary. A runtime dependency on libelf is already automatically generated. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14gnome-settings-daemon: initial add 3.34.1Andreas Müller
It is a dependency for upcoming mutter Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14libwacom: initial add 0.33Andreas Müller
* it is a dependency for upcoming gnome-settings-daemon * there are later versions of libwacom availabvle but due to genaration of udev-rule at build time these versions open nasty native dependencies: libgudev-native -> udev-native Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14libgweather: initial add 3.34.0Andreas Müller
It is a dependency for upcoming gnome-settings-daemon Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14geocode-glib: initial add 3.26.1Andreas Müller
It is a dependency for upcoming gnome-settings-daemon Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14nautilus: upgrade 3.18.5 -> 3.34.1Andreas Müller
bumping high requires rewrite from scratch almost: * meson-build * remove backported patch Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14tracker: initial add 2.3.1Andreas Müller
This is a dependenccy for upcoming nautilus 3.34 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14gnome-autoar: inital add 0.2.3Andreas Müller
This is a dependency for upcoming nautilus 3.34.0 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14gexiv2: initial add 0.12.0Andreas Müller
This is an optional dependecy for upcoming nautils 3.34.0 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14file-roller: inital add 3.32.2Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14evince: upgrade 3.28.2 -> 3.34.1Andreas Müller
* remove unnecessary or upstreamed patches * add upstream-version-is-even to inherit Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14gnome-font-viewer: initial add 3.34.0Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-11-14evolution-data-server: upgrade 3.26.6 -> 3.34.1 and reworkAndreas Müller
* a native variant had to be introduced for code-generator tools * gobject-introspection builds theoretically :) Unfortunataelly qemu runs with 100% CPU load and never returns -> disable introspection for now * add PACKAGECONFIGs for new dependencies - disabled by default * give up fine grained packaging: It was broken over the years completely and nobody seemed to take care. * ICU-patch does not apply anymore and it seems upstream has fixed issues with ICU * add upstream-version-is-even to inherit * rename folder containing recipe * get rid of gconf dependency Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>