summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
Commit message (Collapse)AuthorAgeFilesLines
* python3-pefile: Move from meta-python to meta-oeKhem Raj4 days2-0/+31
| | | | | | | | - This recipe is needed by newer versions of fwupd from meta-oe - Add ptest support for python3-pefile - Add python3-pefile to PTESTS_FAST_META_OE since tests take < 30s Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdbd-mysql-perl: update 4.050 -> 5.006Markus Volk5 days1-0/+0
| | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdbd-mysql-perl,rrdtool: Disable gcc option -Wincompatible-pointer-typesKai Kang5 days1-0/+2
| | | | | | | | | | | | | It fails to run do_compile tasks for libdbd-mysql-perl and rrdtool with gcc option -Wincompatible-pointer-types enabled by default. Disable it as workaround. - add workaround for incompatible-pointer-types [https://github.com/perl5-dbi/DBD-mysql/issues/430] Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Markus Volk <f_l_k@t-online.de>
* uw-imap: fix incompatible pointer type errorsKai Kang5 days2-0/+356
| | | | | | | | | | | | | | Fix compile errors when gcc option '-Wincompatible-pointer-types' set: mx.c: In function 'mx_setdate': mx.c:1286:15: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatible-pointer-types] 1286 | utime (file,tp); /* set the times */ | ^~ | | | time_t * {aka long int *} Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poke: upgrade 4.0 -> 4.1Wang Mingyu7 days1-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ============ - Invalid memory access in 'pkl_do_pass_1' has been fixed. - Access to possibly-uninitialized variable in IOS has been fixed. - In error reporting, poke no longer crashes when the input is not seekable. - Use of 'break'/'continue' in EXCOND operator's compound statement has been fixed to not crash the poke. - 'pokefmt' now has a man page. - Execution speed of 'pk-jojopatch' has been improved by disabling auto-remap feature. - Variable 'poke_interactive_p' is now documented in the manual. - Update jitter submodule to incorporate minor documentation update and a workaround for an Automake bug. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mercurial: upgrade 6.5 -> 6.6.3Wang Mingyu7 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* exiftool: upgrade 12.72 -> 12.85Wang Mingyu7 days1-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ - Added GeolocationFeatureType tag - Added read support for Nikon NKA and NXD adjustment files - Added a new Apple:ImageCaptureType value, and changed another one - Decode a few new Pentax tags - Decode a few new Canon tags - Decode some Ricoh Exif metadata from MOV videos - Extract ID3 UserDefinedText and UserDefinedURL tags by name - Make $advFmtSelf available for user-defined helper functions - Documented API GeoDir pseudo option feature - Tolerate pad byte at end of HIF file when writing - Raised priority of FileName, BaseName, Directory and FileType tags so they don't get hidden by other tags in the file which may have these names - Changed decoding of QuickTime Rotation (irot) to correspond with EXIF:Orientation (previously this was oddly reported as degrees of counterclockwise rotation) - Fixed a typo in the print conversion value for a couple of DPX tags - Fixed problem writing some QuickTime tags with very large (> 16 MB) values - Fixed bug in build_geolocation utility that resulted in incorrect population numbers when run under ActivePerl Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* editorconfig-core-c: upgrade 0.12.6 -> 0.12.7Wang Mingyu7 days1-2/+2
| | | | | | | | | | | | | | | Changelog: ========== - Fix pointer overflow in STRING_CAT. - Fix a few more stack buffer overflows. - Add license for FindPcre2 from LuaDist. - Document and CI fixes. License-Update: Add license for FindPcre2 from LuaDist Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20240310.0 -> 6.1.20240602.0Wang Mingyu7 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sexpect: add new recipebaruch@tkos.co.il7 days1-0/+12
| | | | | | | | | sexpect is an expect like utility that is designed in the client/server model. This makes it suitable for use in shell script to control multiple interactive programs from a single script. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: Fix build on riscv32Khem Raj2024-05-301-0/+1
| | | | | | | | Link with libatomic since rv32 does not have 64bit atomics Fixes | riscv32-yoe-linux-musl-ld.lld: error: undefined reference: __atomic_load_8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: fix adb/libssl-1.1 patchDmitry Baryshkov2024-05-291-3/+8
| | | | | | | | | | | | GCC 14.0 being stricter regarding const pointers pointed out the issue in the adb_libssl_11.diff. RSA_get0_key returns pointers to internal data of an RSA key structure. As such, this data should use const pointers, should not be allocated and, more importantly, should not be freed. Update the patch to use const pointers, drop allocation and freeing of the 'n' big number. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cjson: upgrade 1.7.17 -> 1.7.18Wang Mingyu2024-05-281-1/+1
| | | | | | | | | | | | | Changelog: ============ * Add NULL check to cJSON_SetValuestring()(CVE-2024-31755) * Remove non-functional list handling of compiler flags * Fix heap buffer overflow * remove misused optimization flag -01 * Set free'd pointers to NULL whenever they are not reassigned immediately after Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools-configfs: Fix build-time warning about S being non-existentDmitry Baryshkov2024-05-281-0/+3
| | | | | | | | | | | | | | | | android-tools-configfs doesn't have any checked out source files, which results in a warning regarding S not existing. Fix the warning by pointing S to ${WORKDIR}/sources and UNPACKDIR to ${S}. The warning text: WARNING: android-tools-conf-configfs-1.0-r0 do_unpack: android-tools-conf-configfs: the directory ${WORKDIR}/${BP} (<scrubbed>) pointed to by the S variable doesn't exist - please set S within the recipe to point to where the source has been unpacked to Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Switch away from S = WORKDIRKhem Raj2024-05-231-2/+3
| | | | | | Make it dependent on UNPACKDIR instead Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Start WORKDIR -> UNPACKDIR transitionKhem Raj2024-05-236-17/+17
| | | | | | | Replace references of WORKDIR with UNPACKDIR where it makes sense to do so in preparation for changing the default value of UNPACKDIR. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jemalloc: add +git to versionPeter Marko2024-05-231-1/+3
| | | | | | | | | jemalloc was switched from tag to development branch 171 commit ahead. Adapt PV accordingly. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs-oe-cache-native: use UNPACKDIRMartin Jansa2024-05-231-1/+4
| | | | | | | | | | | | | * oe-npm-cache is now in UNPACKDIR not WORKDIR * fixes: http://errors.yoctoproject.org/Errors/Details/771012/ /OE/build/oe-core/tmp-glibc/work/x86_64-linux/nodejs-oe-cache-native/20.13/temp/run.do_configure.1268826: line 142: /OE/build/oe-core/tmp-glibc/work/x86_64-linux/nodejs-oe-cache-native/20.13/oe-npm-cache: No such file or directory * set S and UNPACKDIR to avoid this as well: WARNING: nodejs-oe-cache-native-20.13-r0 do_unpack: nodejs-oe-cache-native: the directory ${WORKDIR}/${BP} (/OE/build/oe-core/tmp-glibc/work/x86_64-linux/nodejs-oe-cache-native/20.13/nodejs-oe-cache-20.13) pointed to by the S variable doesn't exist - please set S within the recipe to point to where the source has been unpacked to Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poke: Upgrade to 4.0Khem Raj2024-05-194-104/+8
| | | | | | | - Drop patches not needed anymore - Package vim and emacs files into package of their own Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uw-imap: Add a patch to support newer than TLSv1.0Zoltán Böszörményi2024-05-122-0/+30
| | | | | | | | | | | | | | | | | | | | | The patch 0001-Support-OpenSSL-1.1.patch enabled building uw-imap against OpenSSL 1.1.0 or later. However, TLSv1_client_method() and TLSv1_server_method() restricts uw-imap to TLSv1.0. These APIs, along with explicitly versioned APIs like TLSv1_1_*_method() and TLSv1_2_*_method() are deprecated in OpenSSL 1.1.0 or later. The replacements are unversioned API functions: TLS_client_method() and TLS_server_method() which support TLS version autonegotiation. This allows the PHP IMAP extension to work with IMAP servers that enforce TLSv1.2 or higher. Fixes: https://bugs.php.net/bug.php?id=76928 Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: Upgrade to 8.2.18Soumya Sambu2024-05-122-10/+13
| | | | | | | | | | | | Includes fixes for CVE-2024-3096, CVE-2024-2756 and other bugs. Changelog: https://www.php.net/ChangeLog-8.php#8.2.18 Rebase 0001-ext-opcache-config.m4-enable-opcache.patch to new version Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: Upgrade to 20.13.0 releaseKhem Raj2024-05-093-2/+2
| | | | | | | | | | | nodejs release notes [1] License-Update: Copyright year changed for Unicode License [2] [1] https://nodejs.org/en/blog/release/v20.13.0 [2] https://github.com/nodejs/node/commit/d5a316f5ea3fade3140c2ae35c144b500fb5d758 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs-oe-cache: fix offline install of dependenciesMartin Hundebøll2024-05-031-1/+1
| | | | | | | | | | | | | | | | | | | Apparently, npm has changed its request accept header, so that cache lookup misses. This causes an ENOTCACHED error when doing the offline install in do_compile() from npm.bbclass. Fix it by updating the fake cache entry to match the newest behaviour from npm. Note that npm doesn't agree with itself, as it still uses the previous header value when doing `npm cache add <pkg>`, but the new value when doing `npm install <pkg>`. Bug submitted upstream: https://github.com/npm/cli/issues/7465 Signed-off-by: Martin Hundebøll <martin@geanix.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftrace: upgrade 0.15.2 -> 0.16Wang Mingyu2024-05-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - build: Add -mno-sse to fix i386 build - build: Fix build failure on RHEL 7 - mcount: Fix a compiler warning on PAGE_SIZE - fix: #1858 by changing the wrong logic in update_dbg_info - ci: Fix ci warning on GitHub Acitons - slide: Add tensorflow and keras tracing example - python: Fix GC isn't working correctly. - replay: Support a new argument format for octal values - build: Fix compiler warnings - Fix Python SyntaxWarning on invalid escape sequence in the tests scripts - utils: Lower the debug level after dwfl_module_getdwarf - wrap: Do not print "dlopen is called for '(null)'" - Support standard deviation(STDDEV) in report output - dwarf: Close file descriptors in setup_dwarf_info() Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: upgrade 20.11.1 -> 20.12.2Archana Polampalli2024-04-293-2/+2
| | | | | | | | | | | | | | | | | | License-Update: Copyright year updated zlib version updated GN files License update https://github.com/nodejs/node/commit/b5bc597871ca701bab750c46d31ed626decd7f89 https://github.com/nodejs/node/commit/c8233912e9fd7464898b549d6762130722bf0bf4 Changelog: https://github.com/nodejs/node/releases/tag/v20.12.2 https://github.com/nodejs/node/releases/tag/v20.12.1 https://github.com/nodejs/node/releases/tag/v20.12.0 Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pycups: upgrade 2.0.1 -> 2.0.4Wang Mingyu2024-04-231-1/+1
| | | | | | | | Changelog: removes install_requires from setup.py, which is used for generating OS requirements. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mpich: upgrade 4.2.0 -> 4.2.1Wang Mingyu2024-04-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changelog: ============= -Disable flat_namespace to build libmpifort on macOS by default -Prefix warning messages with "MPICH" -Add --disable-doc configure option -Fix support for building MPICH Fortran support with Xcode 15 on macOS -Fix bug in MPI_WIN_SHARED_QUERY when window is not shared -Fix bug in ch4/ofi gpu pipelining -Fixes for Intel GPU support -Fix memory leak in ch4/shm collectives -Fix bug in MPI_COMM_SPLIT with intercommunicators and non-zero root -Fix bug in DAOS ROMIO driver -Fix bug in cycling error code array -Return an error if there is failure to create a datatype in mpi_f08 module for noncontiguous user data -Return an error when shared memory segment creation fails Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* yajl: set correct homepageRoss Burton2024-04-191-1/+1
| | | | | Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: upgrade 20240116.1 -> 20240116.2Wang Mingyu2024-04-171-1/+1
| | | | | | | | | | | | | | | Changelog: =========== -Added absl::NoDestructor<T> to simplify defining static types that do not need to be destructed upon program exit. -Added configurable verbose logging (also known as VLOG). -Added absl::Overload(), which returns a functor that provides overloads based on the functors passed to it. Note that this functionality requires C++17 or newer. -Bzlmod is now officially supported (previously it was supported by the community). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autoconf-2.13-native_2.13: replace oldincludedirPeter Marko2024-04-121-1/+1
| | | | | | | | oldincludedir was removed in oe-core by commit 506c91cbc6a604a84e37e53ccff430436369802e Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jemalloc: Update to tip of dev branchKhem Raj2024-04-111-3/+3
| | | | | | | | This fixes bunch of ptest failures Failed ptests: {'jemalloc': ['test_alignment_errors', 'test_oom_errors']} Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: don't always disable io_uringChangqing Li2024-04-112-36/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | The original idea was always disable io_uring to avoid follwing failure even when UV_USE_IO_URING is set to true, refer [1][2]: 0608: try: *** 0609: update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name) 0610: update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name) 0611: except KeyError as e: 0612: msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match " 0613: "any user/group on target. This may be due to host contamination." % Exception: Exception: KeyError: 'getpwuid(): uid not found: 20561' But since 20.11.1, for fix CVE-2024-22017, io_uring is disabled by default, refer [3]. So maybe patch 0001-deps-disable-io_uring-support-in-libuv.patch is not needed. For case UV_USE_IO_URING is set to true, user can fix above failure by "chown root:root -R ${D}" in do_install. [1] https://lists.openembedded.org/g/openembedded-devel/message/105583 [2] https://bugzilla.yoctoproject.org/show_bug.cgi?id=15244 [3] https://github.com/nodejs/node/commit/686da19abbb83b7e01d48be19f832ab081b87084 [4] https://nvd.nist.gov/vuln/detail/CVE-2024-22017 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flatbuffers: upgrade 24.3.7 -> 24.3.25Wang Mingyu2024-04-021-2/+2
| | | | | | | | | | Changelog: ============ -Fix License -Fix handling non null-terminated string_views in LookupByKey Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* microsoft-gsl: Disable disabled-macro-expansion warning as error on clang/muslKhem Raj2024-03-281-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* microsoft-gsl: add new recipe including ptestPeter Marko2024-03-275-0/+295
| | | | | | | | | | The Guidelines Support Library (GSL) contains functions and types that are suggested for use by the C++ Core Guidelines maintained by the Standard C++ Foundation. This repo contains Microsoft's implementation of GSL. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* aer-inject: Replace hardcoded /usr with ${prefix}Khem Raj2024-03-271-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* aer-inject: Fix build with latest muslKhem Raj2024-03-272-1/+34
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* aer-inject:add new recipechenheyun2024-03-271-0/+29
| | | | | | | | | | | | aer-inject allows to inject PCIE AER errors on the software level into a running Linux kernel. This is intended for validation of the PCIE driver error recovery handler and CIE AER core handler. References: https://git.kernel.org/cgit/linux/kernel/git/gong.chen/aer-inject.git/ Signed-off-by: chenheyun <chen_heyun@163.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftrace: Fix build with musl >= 1.2.5Khem Raj2024-03-252-1/+36
| | | | | | The famous basename API fallout Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatbuffers: upgrade 23.5.26 -> 24.3.7Wang Mingyu2024-03-201-2/+2
| | | | | | | | | | Changelog: ========== *Just to fix some of the CI build issues *Fix typescript object API to allow 0 values for null-default scalars Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20240225.0 -> 6.1.20240310.0Wang Mingyu2024-03-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Drop remaining PR values from recipesMartin Jansa2024-03-171-1/+0
| | | | | | | | | | | | * as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unionfs-fuse, dropwatch, postgresql, yasm, multipath-tools, ↵Martin Jansa2024-03-172-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | python3-pybind11: add missing Upstream-Status * add Pending to .patch files where it was accidentally droped with upgrades or modifications in: f88e5b146e postgresql: upgrade 15.5 -> 16.2 c904e169db multipath-tools: upgrade 0.9.3 -> 0.9.8 105be9b3d9 unionfs-fuse: upgrade 2.2 --> 3.4 or new patches where the author didn't notice/care: 2a7f74cdb0 dropwatch: Use header files from sysroot instead of build host f5cc9f272a yasm: improve reproducibility 39028d0d9d python3-pybind11: Restore strip prevention patch authors of these added to CC, please be more careful with removing or not adding these or enable patch-status in ERROR_QA for your builds, see: https://lists.openembedded.org/g/openembedded-core/topic/104922136#197113 * added with: for p in `/OE/layers/openembedded-core/scripts/contrib/patchreview.py -v . | grep Missing.Upstream-Status.tag | sed 's/.*(//g;s/)$//g'`; do grep -q ^Upstream-Status: $p || sed -i "s/^---$/\nUpstream-Status: Pending\n---/g" $p; grep -q ^Upstream-Status: $p || sed -i "1iUpstream-Status: Pending\n" $p; done Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jwt-cpp: fix cmake file install pathPeter Marko2024-03-131-1/+1
| | | | | | | | | | jwt-cpp module cannot be found with default find_package options. Per [1] package name is mandatory on unix build installations. [1] https://cmake.org/cmake/help/latest/command/find_package.html#search-procedure Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnf-plugin-tui: upgrade 1.3 -> 1.4Wang Mingyu2024-03-131-2/+1
| | | | | | | | Changelog: fix the bug of syntax error when poky updated to scarthgap. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: Split so-files into separate packagesOla x Nilsson2024-03-111-0/+23
| | | | | | | | | | | | | Use PACKAGES_DYNAMIC and PACKAGESPLITFUNCS to put each shared object into its own package named libabsl-*. The shared objects depend on each other which means you still get a lot of them if you link against a single one. The main package abseil-cpp RDEPENDS on all of the libabsl-* packages. Signed-off-by: Ola x Nilsson <olani@axis.com> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: A little clean-upPeter Kjellerstedt2024-03-111-7/+2
| | | | | | | | | | * Remove ASNEEDED:class-native and ASNEEDED:class-nativesdk as they make no difference since ${ASNEEDED} is only added to TARGET_LDFLAGS. * Remove additions to FILES:${PN}-dev since the added paths are already added by default. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* editorconfig-core-c: fix reproducibility issueMarkus Volk2024-03-101-0/+3
| | | | | | | remove STAGING_DIR_HOST from the EditorConfigTargets.cmake file Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: Upgrade to 8.2.16Khem Raj2024-03-091-2/+2
| | | | | | | | License-Update: Copyright Year updated to 2024 [1] [1] https://github.com/php/php-src/commit/2575e6b88c3d3bbd53383fb65057c9b7b029e264 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove obsolete PIP_INSTALL_PACKAGE and PIP_INSTALL_DIST_PATHalperak2024-03-091-2/+0
| | | | | | | All downloaded files and sstates for the recipes were cleaned, build was got from stratch and no errors were encoutered. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>