aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/obex
AgeCommit message (Collapse)Author
2018-05-29openobex: variable cleanupTrevor Woerner
Reorder recipe variables according to: https://www.openembedded.org/wiki/Styleguide Originally-conceived-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-05-29openobex: rely on cmake.bbclass to put cmake package files in dev packageTrevor Woerner
The cmake.bbclass in oe-core now ensures that ${libdir}/cmake and ${datadir}/cmake end up in the dev package, so recipes no longer need to provide custom packaging rules to handles these files. http://git.openembedded.org/openembedded-core/commit/?id=d91dc4666683a96e9d03cbbd21b8a546f9069c93 Originally-conceived-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-05-17openobex: explicitly set ASNEEDED from openobex recipeAndre McCurdy
Up to now, an openobex specific over-ride for ASNEEDED has been provided by oe-core (from as-needed.inc). If ASNEEDED does need to be over-ridden in order to build openobex it's not ideal that the over-ride comes from a different layer so define it directly in the meta-oe recipe. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2018-03-12obex-data-server: only include when x11 in DISTRO_FEATURESArmin Kuster
Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-08-28openobex: disable building documentationChen Qi
When building openobex on a host without any connection to outside, the configure fails as it tries to get some url from outside to build the documentation. Fix this problem by disabling building documentation. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-03-16recipes: delete obsolete patchesOleksandr Kravchuk
Deleted bunch of patches which are not used anymore by any recipe. Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02obex-data-server: Fix build with new openobex versionKhem Raj
Add missing dependency on dbus-glib-native, this is needed for getting DBUS_BINDING_TOOL Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-12-02openobex,obexftp: Update recipesKhem Raj
Update obexftp to 0.24.2 and openobex to 1.7.2 These packages moved to CMake infra for builds therefore make adjustments to cross compile it Add packageconfig options for fuse and swig Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-05-17obex, gnome-bluetooth: Make bluez{4, 5} dep conditional on DISTRO_FEATUREKhem Raj
bluez4 is removed from oe-core This helps in compiling them when distro features are either set to use bluez4 or bluez5 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-05-11*obex*, navit, libsyncml, foxtrotgps, gypsy, bluez-hcidump, bluez4, ↵Martin Jansa
gst-plugin-bluetooth, gnome-bluetooth: blacklist bluez4 only recipes when bluez5 is in DISTRO_FEATURES foo
2014-12-10obex-data-server: conflict with bluez5Peter Bigot
Although this package builds with bluez5, it was removed from Fedora 20 [1] and is not used in bluez5-based GNOME [2], suggesting the bluez5 obexd is to be used instead. [1] http://pkgs.fedoraproject.org/cgit/obex-data-server.git/log/?h=f20 [2] http://www.hadess.net/2013/11/bluetooth-file-sharing-obexpush-in.html Signed-off-by: Peter A. Bigot <pab@pabigot.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-08-11openobex: remove unrecognized configure optionsMartin Jansa
* fixes following QA warnings: openobex-1.5: openobex: configure was passed unrecognised options: --with-usb --with-bluez [unknown-configure-option] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21recipes: add missing pkgconfig class inheritsRichard Purdie
* These recipes all use pkg-config in some way but were missing dependencies on the tool, this patch adds them. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-10openobex: fix detection of IrDA during configure with B!=SPaul Eggleton
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-05-03bonnie++, lmbench, obex-data-server, samba, sg3-utils: Do not do out-of-tree ↵Khem Raj
builds These recipes are not ready yet Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-15openobex: Remove --enable-dump to disable dumpingLauren Post
This features slows down performance and should only be enabled when debugging openobex. Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15recipes: Unify indentationMartin Jansa
* 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>
2012-12-04obexd: move to meta-gnome due to libical dependencyMarcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
2012-03-29obexd: fix QA warnings by creating empty package obex-pluginsAndreas Müller
fix the following warnings: WARNING: For recipe obexd, the following files/directories were installed but not shipped in any package: WARNING: /usr/lib WARNING: /usr/lib/obex WARNING: /usr/lib/obex/plugins Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-02-01obexd: update to 0.44 and put obex-client into separate package.Peter Tworek
Signed-off-by: Peter Tworek <tworaz666@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-01-16In LICENSE "&&" should be replaced with "&"Andrei Gherzan
In this way meta-oe recipes will be parsed correctly in yocto. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-06-19obex-data-server: import from OE rev 58b79786c6b1ee26340b20e7606d2144f52543edKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-06-19obexd: import from OE rev 58b79786c6b1ee26340b20e7606d2144f52543edKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-06-19openobex 1.5: import from OE rev 58b79786c6b1ee26340b20e7606d2144f52543edKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>