summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended
Commit message (Collapse)AuthorAgeFilesLines
* dialog: Update the SRC_URIMingli Yu2023-07-251-1/+1
| | | | | | | Update the SRC_URI to fix the do_fetch error. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* libblockdev: clean up DEPENDSRoss Burton2023-06-171-2/+4
| | | | | | | | | | | | | | If you try to build libblockdev with an empty PACKAGECONFIG then the configure fails. Add autoconf-archive, glib-2.0, and udev; these were implicitly pulled in via other dependencies. Move kmod to DEPENDS as it's a hard requirement. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit f14663746bd519650c8654bbf91971a0a96c109e) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* libgxim: add autoconf-archive-native DEPENDSRoss Burton2023-06-171-1/+1
| | | | | | | | | | This can be satisfied via transitive dependencies, but make it an explicit DEPENDS. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 5fca30d672c291b1af8284d6d5cbfc520c95d4fc) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* redis: use the files path correctlyChen Qi2023-06-1510-2/+0
| | | | | | | | | | | | | | | | | | | | | Recipes are not expected to set FILESPATH directly, they are expected to use FILESEXTRAPATH. I can see the seting of FILESPATH in this recipe only wants to find redis-7 specific patches and files. This could be easily achieved by using redis-7.0.11/ directory to hold all those files. Using FILESPATH in this way removes the possibility of overriding some files (e.g., the redis service file) from other layers via FILESEXTRAPATH:prepend, which is kind of a common practice and is actually working for basically all other recipes. This is because we have: meta/classes-global/base.bbclass:FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${BP}", "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files"], d)}" And FILESEXTRAPATH is handled in base_set_filespath. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* sgpio: Pass CFLAGS to makeKhem Raj2023-05-281-0/+1
| | | | | | | | Ensures all compiler options are passed to build Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit eb0878eccffa9e644c5e5a9563353ab1007b5ecd) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* minifi-cpp: Remove references to buildpaths in generated filesKhem Raj2023-05-281-0/+6
| | | | | | | | | | | | | bison/flex emits line directives which can be safely removed from generated files. agent_version.h is generated by cmake which has build information like compiler and cflags etc. which contains buildpaths too, therefore replace real workdir with <WORKDIR> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 0d2df1e4c404fd93ee0095a15db00d17f2321e18) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* uml-utilities: Fix references to TMPDIRKhem Raj2023-05-283-0/+158
| | | | | | | | | | | Pass CFLAGS from environment Fixes WARNING: uml-utilities-20040406-r1 do_package_qa: QA Issue: File /usr/lib/uml/.debug/port-helper in package uml-utilities-dbg contains reference to TMPDIR Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit a1d047bae79fb2a747b204b941aa5af5ada28d6e) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* redis: upgrade 6.2.11 -> 6.2.12Changqing Li2023-05-161-1/+1
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* ostree: fix build without gobject-introspection-dataMartin Jansa2023-05-161-0/+3
| | | | | | | | | | | | | | | | | * add --disable-introspection to UNKNOWN_CONFIGURE_OPT_IGNORE to fix: http://errors.yoctoproject.org/Errors/Details/702779/ ERROR: QA Issue: ostree: configure was passed unrecognised options: --disable-introspection [unknown-configure-option] * add glib-2.0-native to DEPENDS to fix: http://errors.yoctoproject.org/Errors/Details/702787/ glib-mkenums \ --template ../libostree-2023.2/src/libostree/ostree-enumtypes.h.template \ ../libostree-2023.2/src/libostree/ostree-fetcher.h > src/libostree/ostree-enumtypes.h.tmp && mv src/libostree/ostree-enumtypes.h.tmp src/libostree/ostree-enumtypes.h /bin/bash: line 2: glib-mkenums: command not found make: *** [Makefile:9990: src/libostree/ostree-enumtypes.h] Error 127 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* libreport: add dependency on libarchiveMartin Jansa2023-05-161-1/+1
| | | | | | | | | | | | | * it's often pulled by elfutils when debuginfod is in DISTRO_FEATURES, but when it isn't, it fails with: http://errors.yoctoproject.org/Errors/Details/702773/ checking for libarchive... no configure: error: Package requirements (libarchive) were not met: No package 'libarchive' found Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* nicstat: Use SOURCEFORGE_MIRROR in SRC_URIKhem Raj2023-05-071-1/+1
| | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 256ea730b030ec18871dada8953cf5f40e6fc4e3) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* libx86: Point to working SRC_URIKhem Raj2023-05-071-3/+1
| | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit cef731b6748f3d8cf661d11b35db3dcef2be8b71) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* redis: upgrade 7.0.10 -> 7.0.11Wang Mingyu2023-05-071-1/+1
| | | | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 34153d91b47765eedb3f0010ec7bc367a00c82d6) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* dlt-daemon: fix CVE-2023-26257Yogita Urade2023-05-072-0/+35
| | | | | | | | | | | | | | | An issue was discovered in the Connected Vehicle Systems Alliance (COVESA; formerly GENIVI) dlt-daemon through 2.18.8. Dynamic memory is not released after it is allocated in dlt-control-common.c. References: https://nvd.nist.gov/vuln/detail/CVE-2023-26257 https://github.com/COVESA/dlt-daemon/issues/440 Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit ad73ee286f850c11b79de3bbb4b3d565340c1531) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* polkit: update SRC_URIMarkus Volk2023-05-071-1/+1
| | | | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 0804e61bd7f3882b07d4d9b25c90ea37d7b96e11) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* p7zip: Fix for CVE-2016-9296Virendra Thakur2023-05-072-0/+28
| | | | | | | | | | | Add patch to fix CVE-2016-9296 Signed-off-by: Virendra Thakur <virendra.thakur@kpit.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 102abb1c33bfa248ac1b1bb57fefa6bb7a44fe95) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* p7zip: fix for CVE-2018-5996Virendra Thakur2023-05-072-0/+228
| | | | | | | | | | | Add patch to fix CVE-2018-5996 Signed-off-by: Virendra Thakur <virendra.thakur@kpit.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit db57123c490e3800d7e0383eb459e78749bcd683) Signed-off-by: Armin Kuster <akuster808@gmail.com>
* meta-oe: recipes-extended: bitwise: Add ptestEver ATILANO2023-04-063-1/+33
| | | | | | | Signed-off-by: Ever ATILANO <ever.atilano@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Frank WOLFF <frank.wolff@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minifi-cpp: Always use stat on 64bit linuxKhem Raj2023-04-062-0/+36
| | | | | | | stat64 is an alias to stat on 64bit linux moreover this makes it work with musl where LFS64 functions are deprecated Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Remove double protocol= from SRC_URIsPeter Kjellerstedt2023-04-055-5/+5
| | | | | | | | | | With the exception of paho-mqtt-cpp, the double protocol= attributes were added to the SRC_URIs when protocol=https was added to all SRC_URIs fetching from github.com in commit b402a3076f (recipes: Update SRC_URI branch and protocols). Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ostree: upgrade 2023.1 -> 2023.2Wang Mingyu2023-04-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Add 'sysroot.bootprefix' option deploy: Use 'semodule --refresh' if available configure: post-release version bump Release rust/ bindings 0.17.1 rust-bindings: Regenerate for 2023.1 rust-bindings: 'Sysroot' is 'Send' itest-pull-space: Use mkfs.ext4, align to at least 512b tests: Set size on fileinfo Enable 'trust_return_value_nullability' Add docs and fix annotations for ostree-repo-file.c rust: Bump semver lib: Fix two nullable annotations repo: Fix nullability for remote options rust: Renerate bindings Revert "repo: Fix nullability for remote options" rust-bindings: Regenerate configure: post-release version bump build: Do not include private headers in the introspection libostree: Ignore new_and_connect in the introspection libostree: Enhance the annotation coverage core: Ensure glib standard::size attribute is always set ci: update for new kolaTestIso() lib/fetcher-util: Wake up main context when a request is complete Increase buffer size for create_regular_tmpfile_linkable_with_content tests: Ensure non-root users have access to libcap tools ostree_raw_file_to_content_stream: Make size default to 0 _ostree_zlib_file_header_new: Default size to 0 write_content_object: Don't assume file info has standard::size Use g_steal_fd() in preference to glnx_steal_fd() docs: Use upstream theme & update to 0.4.1 build(deps): bump libglnx from '4e44fd9' to '07e3e49' Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdeflate: upgrade 1.17 -> 1.18Wang Mingyu2023-04-041-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ========== * Fixed a bug where the build type didn't default to "Release" when using CMake 3.10 or earlier. * Fixed a bug where some optimized code wasn't used when building with Clang 15 or later (x86), or with Clang 16 or later (aarch64). * Fixed build errors with some architecture and compiler combos: * aarch64 with Clang 16 * armv6kz or armv7e-m with gcc * armhf with gcc (on Debian only) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libidn: Update largefile m4 macrosKhem Raj2023-04-022-0/+391
| | | | | | | This is a backport from gnulib, its needed for configure to work with latest autoconf 2.72 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatpak: update 1.15.3 -> 1.15.4Markus Volk2023-04-011-1/+1
| | | | | Signed-off-by: Markus Volk <f_L_K@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hplip: Fix installation and QAZoltán Böszörményi2023-03-303-2/+58
| | | | | | | | | | | | | | | | With version 3.22.11 it's not enough avoid linking to the closed source ImageProcessor library, it must not be installed either. This library is pre-stripped so package QA fails. Add a new patch to fix installing HPLIP.conf into /usr/share/ipp-usb/quirks. The upstream Makefile.am fails to take DESTDIR into account and do_install fails because of this. Also, instead of detecting the presence of the target directory which is invalid for a source build, create it and install the quirk file. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* can-utils: upgrade 2021.08.0 -> 2023.03Wang Mingyu2023-03-231-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support of new kernel features: ----------------------------------- j1939: make use of new RX UAPI isotp: rework FRAME_TXTIME handling and buffer size (Linux v5.18+) isotp: add support for transmission without flow control (Linux v5.19+) mcp251xfd-dump: add support for dumps created with Linux kernel >= v5.18 can-calc-bit-timing: import bit timing calculation algorithm from v5.19 cangen: add support for SO_TXTIME includes: update to Linux 6.2 upstream (with CAN XL data structures) Improvements and features: -------------------------------- canfdtest: Add extended frame format / message length / FD / BRS support can-calc-bit-timing: add support for calculation of CAN-FD bit timings cangen: add option for absolute timeouts cangen: new generation mode - partially randomized payload (-D) slcan: increase BTR char limit to 8 for 32bit BTR log asc converter: support len8_dlc for Classical CAN frames candump: handle individual logfile name for stdout cansniffer: add CAN FD support cansniffer: make ASCII output switchable in CAN FD mode canplayer: introduce option to limit the number of processed frames Fixes: ----------------------- candump: print number of dropped frames as unsigned values candump: reserve enough space for ctrlmsg candump: fix accidentally disabled traffic timeout feature lib: fix seperator in snprintf_error_data Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fluentbit: Disable upstart scriptsKhem Raj2023-03-232-0/+47
| | | | | | | | | | | They are not cross compile friendly as they poke into build host directories to determine if system is upstart based and it can fail build on such hosts e.g. ubuntu If someone is still using upstart with OE then please fix it and send a better fix upstream to re-enable it here. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libyang: upgrade 2.1.30 -> 2.1.55Yi Zhao2023-03-223-59/+34
| | | | | | | | | | | ChangeLog: https://github.com/CESNET/libyang/releases/tag/v2.1.55 * Generate cases list dynamically in run-ptest. * Add a patch to fix ptest. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: upgrade 7.0.9 -> 7.0.10Changqing Li2023-03-221-1/+1
| | | | | | | | | | | | | | | | | | Upgrade urgency: SECURITY, contains fixes to security issues. Security Fixes: * (CVE-2023-28425) Specially crafted MSETNX command can lead to assertion and denial-of-service Bug Fixes ========= * Large blocks of replica client output buffer may lead to psync loops and unnecessary memory usage (#11666) * Fix CLIENT REPLY OFF|SKIP to not silence push notifications (#11875) * Trim excessive memory usage in stream nodes when exceeding `stream-node-max-bytes` (#11885) * Fix module RM_Call commands failing with OOM when maxmemory is changed to zero (#11319) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: fix service redis-server restart not working under sysvinitStefan Ghinea2023-03-182-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Under sysvinit when trying to restart redis-server using service redis-server restart two calls are made to start-stop-daemon, first with the --stop argument and then with --start argument consecutively. Because the process doesn't immediately terminate when start-stop-daemon --stop is called, the next call to start-stop-daemon --start finds the process still running and does not attempt to start another one. This leads to only a stop of the redis-server process when a restart is requested. This behavior affects all redis versions using sysvinit only. This can be fixed by using the --retry <timeout/schedule> argument with start-stop-daemon --stop in order for the call to block until the process terminates so that start-stop-daemon --start will attempt to start a new process. Unfortunately the --retry argument works only in the implementation of start-stop-daemon provided by dpkg package and is ignored in the implementation provided by busybox package. A repeated check if the process is still running and another try with another signal after a timeout will effectively simulate a stop with --retry=TERM/5/KILL/5 schedule. Signed-off-by: Stefan Ghinea <stefan.ghinea@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libreport: update to version 2.17.8Joe Slater2023-03-145-30/+49
| | | | | | | | | | | Update SRC_REV and change recipe name. Modify patches to apply and remove unrecognized configure option --without-python2. Retain --with-python3 even though it is the default. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* liblockfile: upgrade 1.14 -> 1.17Changqing Li2023-03-097-51/+88
| | | | | | | | | | | | Updated patches: configure.patch 0001-Makefile.in-redefine-LOCKPROG.patch Rename and update patch: 0001-Makefile.in-Don-t-try-to-run-ldconfig.patch Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hplip: add runtime dependency on ghostscriptTrevor Woerner2023-03-091-1/+1
| | | | | | | | | | | | | The fax/filters/pstotiff program invokes /usr/bin/gs and therefore has a runtime dependency on ghostscript: fax/filters/pstotiff 24 gs_command = "/usr/bin/gs" + " " + font + " " + device 25 26 exit_code = os.system(gs_command) Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libidn: update to 1.41Joe Slater2023-03-093-199/+21
| | | | | | | | | | Adjust dont-depend-on-help2man patch to apply. Remove unneeded format warnings patch. Cosmetic changes to license files require new checksums. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* logwatch: upgrade 7.7 -> 7.8Wang Mingyu2023-03-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libyang: upgrade 2.0.194 -> 2.1.30Yi Zhao2023-03-083-42/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Drop local patch that has been merged upstream. * Update ptest cases list. Ptest Result: $ ptest-runner libyang START: ptest-runner 2023-03-08T08:25 BEGIN: /usr/lib/libyang/ptest PASS: utest_binary PASS: utest_bits PASS: utest_boolean PASS: utest_common PASS: utest_decimal64 PASS: utest_diff PASS: utest_empty PASS: utest_enumeration PASS: utest_hash_table PASS: utest_identityref PASS: utest_inet_types PASS: utest_inout PASS: utest_instanceid PASS: utest_instanceid_keys PASS: utest_int16 PASS: utest_int32 PASS: utest_int64 PASS: utest_int8 PASS: utest_json PASS: utest_leafref PASS: utest_list PASS: utest_lyb PASS: utest_merge PASS: utest_metadata PASS: utest_nacm PASS: utest_new PASS: utest_parser_json PASS: utest_parser_xml PASS: utest_pattern PASS: utest_printer_tree PASS: utest_printer_xml PASS: utest_plugins PASS: utest_range PASS: utest_schema PASS: utest_schema_mount PASS: utest_set PASS: utest_string PASS: utest_structure PASS: utest_tree_data PASS: utest_tree_schema_compile PASS: utest_uint16 PASS: utest_uint32 PASS: utest_uint64 PASS: utest_uint8 PASS: utest_union PASS: utest_validation PASS: utest_xml PASS: utest_xpath PASS: utest_yang PASS: utest_yangdata PASS: utest_yang_types PASS: utest_yanglib PASS: utest_yin DURATION: 11 END: /usr/lib/libyang/ptest 2023-03-08T08:26 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libyang: fix ptestYi Zhao2023-03-082-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Disable valgrind tests to get rid of valgrind runtime dependency. Then libyang can support more arches. * Only copy test cases to ptest directory, not the entire build directory. * Fix buildpaths issue for test cases. * Update ptest cases list Result: $ ptest-runner libyang START: ptest-runner 2023-03-08T07:10 BEGIN: /usr/lib/libyang/ptest PASS: utest_binary PASS: utest_bits PASS: utest_boolean PASS: utest_common PASS: utest_decimal64 PASS: utest_diff PASS: utest_empty PASS: utest_enumeration PASS: utest_hash_table PASS: utest_identityref PASS: utest_inet_types PASS: utest_inout PASS: utest_instanceid PASS: utest_int16 PASS: utest_int32 PASS: utest_int64 PASS: utest_int8 PASS: utest_json PASS: utest_leafref PASS: utest_list PASS: utest_lyb PASS: utest_merge PASS: utest_metadata PASS: utest_nacm PASS: utest_new PASS: utest_parser_json PASS: utest_parser_xml PASS: utest_parser_yang PASS: utest_parser_yin PASS: utest_pattern PASS: utest_printer_tree PASS: utest_printer_xml PASS: utest_printer_yang PASS: utest_printer_yin PASS: utest_plugins PASS: utest_range PASS: utest_schema PASS: utest_schema_mount PASS: utest_set PASS: utest_string PASS: utest_tree_data PASS: utest_tree_schema_compile PASS: utest_uint16 PASS: utest_uint32 PASS: utest_uint64 PASS: utest_uint8 PASS: utest_union PASS: utest_validation PASS: utest_xml PASS: utest_xpath PASS: utest_yangdata PASS: utest_yang_types PASS: utest_yanglib DURATION: 12 END: /usr/lib/libyang/ptest 2023-03-08T07:10 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fluentbit: change of download namePeter Johennecken2023-03-061-1/+1
| | | | | | | | | To prevent naming collisions when BB_GENERATE_MIRROR_TARBALLS is used, the packagename is used for the downloaded file. Otherwise it would just be source-${PV}.tar.gz Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: Upgrade 7.x to 7.0.9Khem Raj2023-03-051-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: Upgrade 6.x recipe to 6.2.11Khem Raj2023-03-051-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libx86-1: Fix build on 32bit x86Khem Raj2023-03-051-6/+14
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* byacc: upgrade 20230201 -> 20230219Wang Mingyu2023-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== * test/yacc/ok_syntax1.tab.h, test/yacc/ok_syntax1.tab.c, test/btyacc/ok_syntax1.tab.h, test/btyacc/ok_syntax1.tab.c: regen * test/ok_syntax1.y: modify test for %union to add tag for testing reader.c * reader.c: provide for a named union, e.g., "%union foo" by detecting the name and deferring the typedef in that case until the end of copying the union definition * VERSION, package/byacc.spec, package/debian/changelog, package/mingw-byacc.spec, package/pkgsrc/Makefile: bump Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libx86-1: Fix build with clang16Khem Raj2023-03-042-0/+35
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pndk: Add missing dependency on native cmakeKhem Raj2023-03-041-1/+1
| | | | | | | 3rd party dependency miniasync needs cmake to build, its invoked by top level make. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pmdk: Upgrade to 1.12.1Khem Raj2023-03-023-72/+46
| | | | | | Add a patch to fix build with clang16 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librelp: make inline errors be warnings in debug buildRandy MacLeod2023-03-011-0/+4
| | | | | | | | | | | | | | | With DEBUG_BUILD = "1", the following error occurs: src/relpsess.c:95:1: error: inlining failed in call to 'relpSessFreePermittedPeers': function not considered for inlining [-Werror=inline] so use the compiler flag '-Wno-error=inline' for DEBUG_OPTIMIZATION only. Tracked by upstream bug: https://github.com/rsyslog/librelp/issues/256 but it's looking like a toolchain bug. Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: add disabled PACKAGECONFIG to drop capabilitiesRandy MacLeod2023-03-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Add PACKAGECONFIG to enable dropping capabilities but leave it as disabled to follow upstream and avoid a systemd issue described below. rsyslog-8.2302 added a configure option to drop capabilities from full to: chown, dac_override, setgid, setuid, setpcap, net_bind_service, net_admin, ipc_lock, sys_chroot, sys_admin, sys_resource, lease, syslog, block_suspend This works fine and passes ptests with sysvinit however there is a bug when using systemd that breaks some tests: https://github.com/rsyslog/rsyslog/issues/5091 Therefore only add a non-default PACKAGECONFIG option in keeping with the rsyslog upstream. One can install libcap-ng-bin to run pscap to see the capabilities. Without this option the ptest result with systemd as init is: Version | Passed | Failed | Skipped 8.2302 | 473 | 0 | 3 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: update from 8.2212.0 to 8.2302.0Randy MacLeod2023-03-011-1/+1
| | | | | | | | | | | ptest results for qemux86-64/kvm with extra FS space and 2 GB RAM: Version | Passed | Failed | Skipped 8.2212 | 470 | 0 | 5 8.2302 | 471 | 0 | 5 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* plocate: add recipeCatalin Enache2023-02-242-0/+18
| | | | | | | | plocate, a much faster locate Signed-off-by: Catalin Enache <catalin.enache@windriver.com> Signed-off-by: Dragos-Marian Panait <dragos.panait@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* .patch: fix Upstream-Status formatting issues reported by patchreview tool ↵Martin Jansa2023-02-249-9/+9
| | | | | | | from oe-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>