summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* python3-test-generator: add recipeAnuj Mittal2019-09-231-0/+15
| | | | | | | | Generator is a helper for generating test methods for nose while still using unittest. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: Fix build on musl/aarch64Khem Raj2019-09-233-31/+32
| | | | | | | one impl of strerror_r is glibc specific, therefore check for __GLIBC__ also before using it Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nmap: Update to 7.80Peiran Hong2019-09-232-36/+31
| | | | | | | | | | | | | | | | Updates nmap to v7.80, this solves the following CVEs: - CVE-2017-18594 - CVE-2018-15173 and addressed numerous bugs as well. The patch '0001-include-time.h-for-time-structure-definition.patch' is modified to be applicable to the new version while serving for the same purpose. The license changed in the commit https://github.com/nmap/nmap/commit/d639a53 and is only a date bump without modification of any content in the license. Signed-off-by: Peiran Hong <peiran.hong@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libstatgrab: add recipe for libstatgrab-0.92Jens Rehsack2019-09-231-0/+27
| | | | | | | | | | | With the recent update at begin of summer, which includes the fix for nxp bsp issues, it's time to bring libstatgrab to more people than the few who use it in datacenter monitoring. Language bindings will follow once base library is settled. Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dtschema: new packageBartosz Golaszewski2019-09-231-0/+15
| | | | | | | | | | | This adds a recipe for dtschema package developed by Rob Herring for easy validation of YAML device-tree files in the linux kernel. The version is current git as the only release so far - v0.1 - is old and doesn't work with kernel's dt_binding_check make target. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sshfs-fuse: upgrade 2.10 -> 3.5.2Bartosz Golaszewski2019-09-231-8/+5
| | | | | | | | Build system has been changed to meson. The webpage has been moved from sourceforge to github. The package also now depends on fuse3 not fuse2. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ruamel-yaml: new packageBartosz Golaszewski2019-09-231-0/+16
| | | | | | | | | Add a pypi recipe for ruamel-yaml parser. Based on the recipe found in meta-homeassistant by Oleksandr Andrushchenko. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* phpmyadmin: upgrade 4.9.0.1 -> 4.9.1Yi Zhao2019-09-231-3/+3
| | | | | | | License-Update: tecnickcom/tcpdf/LICENSE.TXT: copyright years updated. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-urllib3: upgrade 1.25.3 -> 1.25.5Zang Ruochen2019-09-233-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* numactl: fix a error about lib32-numactlHongzhi.Song2019-09-232-0/+101
| | | | | | | | | | | | | | lib32-numactl has a error: root@intel-x86-64:~# numademo -t -e 1M Configured Nodes does not match available memory nodes That's because (long long int) is assigned to (long int). This will cause (long int) overflow on 32bit system. Unify variable types and fix it. Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pytest: upgrade 5.1.2 -> 5.1.3Zang Ruochen2019-09-233-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pysocks: upgrade 1.7.0 -> 1.7.1Zang Ruochen2019-09-233-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-msgpack: upgrade 0.6.1 -> 0.6.2Zang Ruochen2019-09-233-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-alembic: upgrade 1.1.0 -> 1.2.0Zang Ruochen2019-09-233-2/+2
| | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rrdtool: suppress appending of installation to perllocal.podNaveen Saini2019-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | perl modules when gets installed can produce a perllocal.pod file for documenting a list of locally installed perl modules. This can conflict if multiple packages generate the file. Hits the conflict with apparmor & rrdtool packages. Error: Transaction check error: file /usr/lib/perl5/5.30.0/x86_64-linux/perllocal.pod conflicts between attempted installs of rrdtool-1.7.2-r0.corei7_64 and apparmor-2.13.3-r0.corei7_64 perllocal.pod files are for documentation purpose, so disabling does not harm. Generating perllocal.pod for perl module is disabled by passing NO_PERLLOCAL=1 with ExtUtils::MakeMaker utility. https://perldoc.perl.org/5.30.0/ExtUtils/MakeMaker.html#Using-Attributes-and-Parameters [YOCTO #13491] Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jasper: update to 2.0.16Oleksandr Kravchuk2019-09-232-18/+24
| | | | | | | Licence change due to modified copyright years (see @11ef9d44ac9795f4). Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mosquitto: update to 1.6.6Leon Anavi2019-09-221-2/+2
| | | | | | | | Fix security vulnerabilities. For further details, see: https://mosquitto.org/blog/2019/09/version-1-6-6-released/ Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: Add recipeAlex Kiernan2019-09-224-0/+307
| | | | | Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mongodb: bump to version 4.2.0+git18ce5c9Vincent Prince2019-09-2213-131/+196
| | | | | | | | | | | | MongoDB v4.2.0 adds python3 support that is needed by scons upgrade [44f303b scons: inherit python3native]. - mongodb git commit 18ce5c9 was needed to fix https://jira.mongodb.org/browse/SERVER-42787 - Add PREFIX and prefix to scons environment to fix unknown variable check (SConstruct#L1073) - fix musl compilation (strerror_r) - Remove compatibility for clang/x86 due to missing "Hardware interference size" - Previous patches are refreshed Signed-off-by: Vincent Prince <vincent.prince.external@saftbatteries.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: update from 8.1907.0 to 8.1908.0Randy MacLeod2019-09-221-2/+3
| | | | | | | | | | | | | | | | | | | | | Enable imfile-tests even if they take a while. ptest results for qemux86-64 with kvm and a timeout of 1000 seconds to allow stress tests to complete: Recipe | Passed | Failed | Skipped | Time(s) rsyslog-8.1907.0 | 365 | 4 | 2 | 2452 rsyslog-8.1908.0 | 379 | 4 | 2 | 2538 The failed tests for both 8.1907 and 8.1908 are: FAIL: Test ./omfile-read-only-errmsg.sh (took 2 seconds) FAIL: Test ./omfile-read-only.sh (took 2 seconds) FAIL: Test ./privdropuser.sh (took 580 seconds) FAIL: Test ./privdropuserid.sh (took 580 seconds) They are not fixed in this update. Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uim: Update to 1.8.8Khem Raj2019-09-204-103/+22
| | | | | | | | | | | | | | License-Update: Change URI from code.google.com to github.com [1] Drop the patches they seem to be not needed Add dependency on libedit Disable parallel make due to races aarch64 support is upstream so drop the patch [1] https://github.com/uim/uim/commit/a1cf71ec3719389874c42dd4c719a15509983485#diff-7116ef0705885343c9e1b2171a06be0e Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xf86-video-nouveau: update to 1.0.16Oleksandr Kravchuk2019-09-201-3/+2
| | | | | Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-jsonschema: add python-setuptools-scm to RDEPENDSBartosz Golaszewski2019-09-201-0/+1
| | | | | | | | The python-jsonschema package imports pkg_resources. Add setuptools-scm to RDEPENDS to satisfy this dependency. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Remove "werkzeug-test" in RDEPENDScjhasu2019-09-201-1/+1
| | | | | | werkzeug-test is not required for building "python3-flask".Hence it should be removed.And also there is no recipe for building werkzeug-test .Hence it is causing error for while building python3-flask.Please add this change ASAP Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pcsc-lite: update to 1.8.25Oleksandr Kravchuk2019-09-201-5/+8
| | | | | | | | License checksum was changed due to removed license info about remove code (see @0984e0f4a03e5e29bb5725b6f149f56c9e9c73c2). Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wireshark: remove restriction to ARM ISAS. Lockwood-Childs2019-09-191-2/+0
| | | | | | | | | The restriction to ARM instruction set came in the original wireshark recipe, which was 2 major versions ago (and also a few toolchains ago). Wireshark 3.x seems to be building fine allowing thumb instructions, at least on cortexa9t2hf. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cryptsetup: upgrade 2.2.0 -> 2.2.1Yuan Chao2019-09-191-2/+2
| | | | | Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtevent: upgrade 0.10.0 -> 0.10.1Yuan Chao2019-09-191-2/+2
| | | | | Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pytest: fix runtime errorYuan Chao2019-09-191-0/+5
| | | | | | | Fix runtime error: add missing modules. Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-importlib-metadata: new recipeYuan Chao2019-09-193-0/+16
| | | | | | | Add new recipe python-importlib-metadata as it is RDEPEND of python-pytest. Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-packaging: new recipeYuan Chao2019-09-193-0/+14
| | | | | | | Add new recipe python-packaging as it is RDEPEND of python-pytest. Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pathlib2: new recipeYuan Chao2019-09-193-0/+13
| | | | | | | Add new recipe python-pathlib2 as it is RDEPEND of python-pytest. Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-zipp: new recipeYuan Chao2019-09-193-0/+14
| | | | | | | Add new recipe python-zipp as it is RDEPEND of python-importlib-metadata. Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-more-itertools: new recipeYuan Chao2019-09-193-0/+13
| | | | | | | Add new recipe python-more-itertools as it is RDEPEND of python-zipp and python-pytest. Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* kernel-selftest: Exclude from world buildsKhem Raj2019-09-181-0/+4
| | | | | | Avoid need for installing clang on host, or depending on meta-clang Signed-off-by: Khem Raj <raj.khem@gmail.com>
* live555: Switch SRC_URI where archives are kept for longerKhem Raj2019-09-181-1/+1
| | | | | | | Current location only maintains the latest archive and the releases are often enough that we might not update that frequent Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dfu-util-native: Dont build static binaryKhem Raj2019-09-182-70/+5
| | | | | | | | | | | | This did serve a purpose in past, this however is adding additional requirement on build host to require static libc.a. in general it will be good for user to select static linking explicitly, since it does have distribution obligations once static linking is in place. Add packageconfig to enable static builds and keep it off by default Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin JaMa Jansa <Martin.Jansa@gmail.com>
* dhex: Add new recipeDaniel Ammann2019-09-181-0/+24
| | | | | Signed-off-by: Daniel Ammann <daniel.ammann@bytesatwork.ch> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-regex: add recipeVincent Prince2019-09-181-0/+12
| | | | | Signed-off-by: Vincent Prince <vincent.prince.external@saftbatteries.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cheetah: add recipeVincent Prince2019-09-181-0/+15
| | | | | Signed-off-by: Vincent Prince <vincent.prince.external@saftbatteries.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python*-psutil: Add native and nativesdk to BBCLASSEXTENDVincent Prince2019-09-181-0/+2
| | | | | Signed-off-by: Vincent Prince <vincent.prince.external@saftbatteries.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dfu-utils: Switch src_uri to sourceforge.netKhem Raj2019-09-171-6/+4
| | | | | | | dfu-util.gnumonks.org has gone AWOL Re-stylize the recipe while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pychromecast: Initial commit of version 4.0.1Alistair Francis2019-09-171-0/+11
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pulsectl: Initial version of 18.12.5Alistair Francis2019-09-171-0/+11
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-precise-runner: Initial commit of version 0.3.1Alistair Francis2019-09-171-0/+9
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-petact: Initial commit of version 0.1.2Alistair Francis2019-09-171-0/+9
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-padatious: Initial commit of 0.4.7Alistair Francis2019-09-171-0/+9
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-padaos: Initial commit of version 0.1.10Alistair Francis2019-09-171-0/+9
| | | | | Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-jsonschema: rdepends on attrs and pyrsistentRicardo Salveti2019-09-171-0/+2
| | | | | | | Release v3.0.2 requires python attrs and pyrsistent. Signed-off-by: Ricardo Salveti <ricardo@foundries.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pyrsistent: add recipeRicardo Salveti2019-09-173-0/+17
| | | | | | | | Persistent/immutable/functional data structures for python, now required by python-jsonschema. Signed-off-by: Ricardo Salveti <ricardo@foundries.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>