summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* grpc: Add dep on libnslKhem Raj2019-11-071-1/+1
| | | | | | | Some host distros e.g. tumbleweed will need it as well so its better to have own dependency always Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: fix some invalid condition checkingMing Liu2019-11-071-3/+3
| | | | | | | | | | | | - PTEST_ENABLED is a target specific variable, avoid to check that for ostree-native recipe. - one of soup, curl PACKAGECONFIG would satisfy not running into the problem https://github.com/ostreedev/ostree/issues/1897, it should not stick to soup. For instance, the curl is being chosen in meta-updater rather than soup. Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autofs: install sysvinit script manually if systemd is enabledAndreas Oberritter2019-11-071-0/+5
| | | | | | | | | Update-rc.d complains if no sysvinit script is present. This happens in hybrid systemd/sysvinit builds, because autofs does not install the init script if configured with '--with-systemd'. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autofs: set some paths for configure scriptAndreas Oberritter2019-11-071-0/+6
| | | | | | | | The configure script used by autofs tries to detect paths on the build system. Avoid it by presetting fixed values. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* samba: fix installation for minimal buildAndreas Oberritter2019-11-071-7/+9
| | | | | | | | | chmod: cannot access '.../image/etc/sudoers.d': No such file or directory | sed: can't read .../image/usr/bin/samba-tool: No such file or directory Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* haveged: Fix missing initscript when both systemd and sysvinit are enabledAndreas Oberritter2019-11-071-0/+6
| | | | | | | Haveged's makefile installs either one or the other. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sshfs-fuse: upgrade 3.5.2 -> 3.6.0Zheng Ruoqin2019-11-071-1/+1
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: upgrade 3.10.0 -> 3.10.1Zheng Ruoqin2019-11-071-1/+1
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* postgresql: upgrade 11.5 -> 12.0Zheng Ruoqin2019-11-072-7/+11
| | | | | | | Update 0001-Use-pkg-config-for-libxml2-detection.patch for new version. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mce-test: Update to latest git versionZheng Ruoqin2019-11-071-2/+2
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mcelog: upgrade 164 -> 165Zheng Ruoqin2019-11-071-1/+1
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mariadb: upgrade 10.3.16 -> 10.3.18Zheng Ruoqin2019-11-073-2/+2
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: allow use of system nghttp2André Draszik2019-11-071-0/+1
| | | | | | | | | | | We can't enable this by default, though, as nghttp2 is in the meta-networking layer, which might not be enabled. At least this gives people a simple way to do so if they want. Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nghttp2: allow to build a -native packageAndré Draszik2019-11-071-0/+3
| | | | | | | This will e.g. enable us to use it from nodejs-native. Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nghttp2: build more of this & fix packagingAndré Draszik2019-11-072-3/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nghttp2 also provides http client, server, and proxy. Add the necessary DEPENDS and build flags to enable those. They are all packaged into individual packages, with 'nghttp2' being a meta-package now and pulling in all of the above three applications. The shared library itself (the only part that this recipe had been building so far), is also being split into its own package, meaning existing users shouldn't be affected, as nobody should have an RDEPENDS on 'nghttp2' at the moment (due to bitbake's shlibs dependency tracking). The deflatehd and inflatehd binaries have been completely dropped, as they are (header) test applications for HTTP/2. Debian doesn't ship them either. The python script fetch-ocsp-response is (only) needed by the proxy, and itself calls out to openssl. We can easily make this python3 using a simple patch, though. Minor additional fixes: * sort DEPENDS alphabetically * drop python-dir, this is implied by pythonnative * inherit manpages so as to benefit from man-db processing (note that manpages are not generated here, we just want the automatic update of the package index caches) We need to add a PACKAGECONFIG, as manpages.bbclass requires it to be present, even though nghttp2 unconditionally installs them Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nghttp2: update to 1.39.2André Draszik2019-11-071-2/+2
| | | | | Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nghttp2: fix UPSTREAM_CHECK_URIAndré Draszik2019-11-071-1/+1
| | | | | | | | This was added incorrectly in the previous recipe update and doesn't actually work. Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libev: allow to build a -native packageAndré Draszik2019-11-071-0/+2
| | | | | | | This will e.g. enable us to use it from nghttp2-native Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cunit: allow to build a -native packageAndré Draszik2019-11-071-0/+2
| | | | | | | This will e.g. enable us to use it from nghttp2-native Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jansson: allow to build a -native packageAndré Draszik2019-11-071-0/+1
| | | | | | | This will e.g. enable us to use it from nghttp2-native Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-flask-migrate: upgrade 2.2.1 -> 2.5.2Zang Ruochen2019-11-073-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-flask-babel: upgrade 0.11.2 -> 0.12.2Zang Ruochen2019-11-073-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* s-suite: install missing create_config.shAnders Roxell2019-11-071-0/+1
| | | | | | | | | | | | When running s-suite v3.6, it complains that create_config.sh isn't installed. ./config_params.sh: line 1: ../create_config.sh: No such file or directory Rework so that create_config.sh is installed. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-dominate: upgrade 2.3.1 -> 2.4.0Zang Ruochen2019-11-063-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-decorator: upgrade 4.4.0 -> 4.4.1Zang Ruochen2019-11-063-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-cython: upgrade 0.29.13 -> 0.29.14Zang Ruochen2019-11-063-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xorriso: upgrade 1.5.0 -> 1.5.3Zang Ruochen2019-11-061-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openocd: Update to latest git versionAlistair Francis2019-11-062-64/+4
| | | | | | | | | | Update to the latest git version and allow native builds. The 0001-esirisc_flash-Rename-PAGE_SIZE-to-FLASH_PAGE_SIZE.patch has been merged into master, so we can remove it. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-whiskermenu-plugin: upgrade 2.3.3 -> 2.3.4Andreas Müller2019-11-061-2/+2
| | | | | | | | | | | | Release notes for 2.3.4 Acked-by: Kai Kang <kai.kang@windriver.com> ======================= - Fix building against xfce4-panel 4.15.0 - Translation updates: Dutch, Galician, Georgian. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-time-out-plugin: upgrade 1.0.3 -> 1.1.0Andreas Müller2019-11-061-2/+2
| | | | | | | | | | | | | | | Release notes for 1.1.0 ======================= - GTK3 Port - React to panel "mode," not "orientation" (Bug #15840) - Make time out plugin respect panel icon size (Bug #15839) - Allow compilation with panel 4.15 - Make build less verbose - Translation Updates: Croatian, Galician, Italian Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfce4-screenshooter: upgrade 1.9.6 -> 1.9.7Andreas Müller2019-11-061-2/+2
| | | | | | | | | | | | | | | | | | | Release notes for 1.9.7 ======================= - Add warning notice to imgur upload option (Bug #15347) - Fix cursor capture when near screen edge (Bug #9262) - Improve wording (Bug #15429) - Allow compilation with panel 4.15 - Restore libxfce4ui 4.12 compatibility - Translation Updates: Basque, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Danish, Dutch, English (United Kingdom), French, German, Greek, Hungarian, Korean, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Turkish Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libpeas: upgrade 1.22.0 -> 1.24.1Andreas Müller2019-11-062-28/+25
| | | | | | | | | | * move to meson build * remove intltool-native & gnome-common from DEPENDS - they are not needed * with meson build gir is configurable -> gobject-introspection-data is not a required distro feature any more Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libssh2: upgrade 1.8.2 -> 1.9.0Zheng Ruoqin2019-11-061-4/+4
| | | | | | | | | 1) Upgrade libssh2 from 1.8.2 to 1.9.0. 2) Modify PACKAGECONFIG for configure options have been changed in new version. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2/libdevmapper: 2.03.05 -> 2.03.06Zheng Ruoqin2019-11-068-369/+1
| | | | | | | | | | | | 1) Remove five patches for they have been merged in new version. 0001-udev-remove-unsupported-OPTIONS-event_timeout-rule.patch 0001-configure-Fix-setting-of-CLDFLAGS-default.patch 0001-activation-add-synchronization-point.patch 0002-activation-extend-handling-of-pending_delete.patch 0003-snapshot-always-activate.patch Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cryptsetup: upgrade 2.2.1 -> 2.2.2Zheng Ruoqin2019-11-061-2/+2
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dialog: upgrade 1.3-20190728 -> 1.3-20190808Zheng Ruoqin2019-11-061-2/+2
| | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ccid: upgrade 1.4.30 -> 1.4.31Zheng Ruoqin2019-11-062-2/+25
| | | | | | | | 1) Add 0001-Add-build-rule-for-README.patch to fix do_configure error: Makefile.am: required file `./README' not found Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* byacc: upgrade 20190617 -> 20191103Zheng Ruoqin2019-11-062-18/+21
| | | | | | | 1) Update 0001-byacc-do-not-reorder-CC-and-CFLAGS.patch for new version. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-configparser: add python-pkgutil to runtime dependsHongxu Jia2019-11-061-0/+1
| | | | | | | | | | | | | | | | | ... $ python $ >>> import backports Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/site-packages/backports/__init__.py", line 4, in <module> from pkgutil import extend_path ImportError: No module named pkgutil ... Modeule pkgutil comes from python-pkgutil Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-importlib-metadata: add python-compression to runtime dependsHongxu Jia2019-11-061-0/+1
| | | | | | | | | | | | | | | | | | | ... $ python $ >>> import importlib_metadata Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/site-packages/importlib_metadata/__init__.py", line 9, in <module> import zipp File "/usr/lib/python2.7/site-packages/zipp.py", line 8, in <module> import zipfile ImportError: No module named zipfile ... Module zipfile comes from python-compression Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-importlib-metadata: add python3-misc to runtime dependsHongxu Jia2019-11-061-0/+2
| | | | | | | | | | | | | | | | | | | ... $ python3 $ >>> import importlib_metadata Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.7/site-packages/importlib_metadata/__init__.py", line 15, in <module> from ._compat import ( File "/usr/lib/python3.7/site-packages/importlib_metadata/_compat.py", line 28, in <module> import pathlib ModuleNotFoundError: No module named 'pathlib' ... Module pathlib comes from python3-misc Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-contextlib2/python3-contextlib2: add version 0.6.0Hongxu Jia2019-11-063-0/+14
| | | | | | | | The python-contextlib2 is required by python-importlib-metadata, the newly added recipes refers the one in meta-cloud-services Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-scandir: add version 1.10.0Hongxu Jia2019-11-061-0/+12
| | | | | | | | | It is required by python-pathlib2. The recipe refers the duplicated one in meta-iot-cloud Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pathlib2: add python-scandir and python-misc to runtime dependsHongxu Jia2019-11-061-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | ... $ >>> python $ >>> import pathlib2 as pathlib Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.7/site-packages/pathlib2/__init__.py", line 52, in <module> from scandir import scandir as os_scandir ImportError: No module named scandir $ >>> import pathlib2 as pathlib ceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/site-packages/pathlib2/__init__.py", line 9, in <module> import ntpath ImportError: No module named ntpath ... Module scandir comes from python-scandir and ntpath comes from python-misc Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-importlib-metadata: add missing runtime dependsHongxu Jia2019-11-061-0/+4
| | | | | | | | | | | | | | | | >From setup.cfg: ... 20 install_requires = 21 zipp>=0.5 22 pathlib2; python_version=='3.4.*' or python_version < '3' 23 contextlib2; python_version < '3' 24 configparser>=3.5; python_version < '3' ... Add missing runtime depends while python version < '3' Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-more-itertools: downgrade 7.2.0 -> 5.0.0Hongxu Jia2019-11-064-5/+8
| | | | | | | | | | Python 2.7 is no longer supported. The 5.0.0 release will be the last version targeting Python 2.7. [1] [1] https://github.com/erikrose/more-itertools/commit/560b045b430e8292c18cf5283de4fdc3e13e56f7 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: Upgrade 2019.4 -> 2019.5Alex Kiernan2019-11-061-1/+1
| | | | | Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: Add support for ptestAlex Kiernan2019-11-069-115/+271
| | | | | | | | | | Move ostree-trivial-httpd to its own package so we can RDEPEND on it in both the main ostree and ptest packages. Drop the patches to remove ostree-trivial-httpd based on --enable-trivial-httpd-cmdline as they break installed tests (and were reverted upstream). Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zstd: Upgrade 1.4.3 -> 1.4.4Stefan Agner2019-11-061-1/+1
| | | | | Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libowfat: Fix parallel buildKhem Raj2019-11-062-1/+47
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>