summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/cli11
Commit message (Collapse)AuthorAgeFilesLines
* cli11: Upgrade 2.3.2 -> 2.5.0 to allow CMake 4+ compatibilityAlper Ak2025-07-083-66/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Drop 0001-Do-not-download-the-catch-framework-during-configure.patch The cli11 recipe previously included a patch to disable downloading of the Catch2 test framework during the build, and manually copied the catch.hpp file into the source tree. With the new change, we now declare a dependency on the catch2 recipe, allowing the build system to use the system provided Catch2 headers instead of downloading or copying them. The patch to remove the download logic is no longer needed and has been dropped for a cleaner and more maintainable recipe. Also, If Catch2 is already found, it doesn't enter the block of the download step accordingly to CMakeLists.txt. - The LICENSE file has changed so updated LIC_FILES_CHKSUM to match the new md5sum. Changelog: https://github.com/CLIUtils/CLI11/blob/v2.5.0/CHANGELOG.md Fix: | CMake Error at CMakeLists.txt:1 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-openembedded/all: adapt to UNPACKDIR changesAlexander Kanavin2025-06-251-1/+0
| | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: drop ${SRCPV} usageMartin Jansa2024-02-091-1/+1
| | | | | | | | | | * Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* cli11: do not inherit ptestTim Orling2023-04-021-2/+1
| | | | | | | This recipe provides no run-ptest script. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: enable native/nativesdk buildsAndreas Helbech Kleist2023-03-021-0/+2
| | | | | Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: upgrade 2.3.1 -> 2.3.2Wang Mingyu2023-01-111-2/+2
| | | | | | | | | | | | | | | | | | | | Changelog: =========== - Bugfix: Consistently use ADL for 'lexical_cast', making it easier to extend for custom template types [#820][] - Bugfix: Tweak the parsing of files for flags with 'disable_flag_override' [#800][] - Bugfix: Handle out of bounds long long [#807][] - Bugfix: Spacing of 'make_description' min option output [#808][] - Bugfix: Print last parsed subcommand's help message [#822][] - Bugfix: Avoid floating point warning in GCC 12 [#803][] - Bugfix: Fix a few gcc warnings [#813][] - Backend: Max CMake tested 3.22 -> 3.24 [#823][] License-Update: Copyright updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: upgrade 2.3.0 -> 2.3.1Wang Mingyu2022-11-071-1/+1
| | | | | | | | | | | Changelog: ========== Bugfix: App::get_option_group implementation missing #793 Bugfix: Fix spacing when setting an empty footer #796 Bugfix: Address Klocwork static analysis checking issues #785 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: upgrade 2.2.0 -> 2.3.0Wang Mingyu2022-10-181-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ========== Add CLI11_PRECOMPILED as an option. #762 Bugfix: Include <functional> in FormatterFwd #727 Bugfix: Add missing Macros.hpp to Error.hpp #755 Bugfix: Fix subcommand callback trigger #733 Bugfix: Variable rename to avoid warning #734 Bugfix: split_program_name single file name error #740 Bugfix: Better support for min/max overrides on MSVC #741 Bugfix: Support MSVC 2022 #748 Bugfix: Support negated flag in config file #775 Bugfix: Better errors for some confusing config file situations #781 Backend: Restore coverage testing (lost with Travis CI) #747 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: upgrade 1.9.1 -> 2.2.0Wang Mingyu2022-09-073-17/+66
| | | | | | | | | | License-Update: Copyright year updated to 2022. 0001-Do-not-download-the-catch-framework-during-configure.patch added to download the catch framework before configure. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Update SRC_URI branch and protocolsRichard Purdie2021-11-031-1/+1
| | | | | | | | | This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Convert to new override syntaxMartin Jansa2021-08-031-1/+1
| | | | | | | | | | This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* cli11: 1.9.0 -> 1.9.1William A. Kennington III2020-07-281-2/+2
| | | | | Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: upgrade 1.8.0 -> 1.9.0William A. Kennington III2020-05-133-71/+1
| | | | | | | | Variants of the patches are now included upstream so the local patching can be removed. Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: Fix multilib buildKhem Raj2019-12-202-0/+40
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: Remove dev pkg dep to main pkgBrad Bishop2019-08-171-0/+3
| | | | | | | | | cli11 is header-only and the main package is empty. Remove the dependency to cli11 from cli11-dev so cli11-dev can be included in an SDK via IMAGE_INSTALL, RDEPENDS, and the like. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: Refresh patch to fix fuzzKhem Raj2019-07-211-7/+5
| | | | | | | Fixes cli11-1.8.0+gitAUTOINC+13becaddb6: Patch log indicates that patches do not apply cleanly. [patch-fuzz] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: 1.7.1 -> 1.8.0William A. Kennington III via Openembedded-devel2019-07-101-2/+2
| | | | | Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: 1.6.2 -> 1.7.1William A. Kennington III via Openembedded-devel2019-05-291-2/+2
| | | | | | | | LICENSE checksum updated to reflect a new copyright date being updated there. Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: Add knob to Enable/Disable clang-tidy explicityKhem Raj2019-02-132-1/+31
| | | | | | | | | | | | | | When building with clang otherwise this gets enabled and we have problems with headers especially due to OEs multilibbing effort on arm where headers like bits/wordsize.h are hijacked and some wrappers are translanted, these transplants have additional requirements/constraints e.g. compiler internal arch defines e.g. __arm__ etc. which may not be passed by tools like clang-tidy which are arch independent. Ideally we should not require to disable clang-tidy here but we make a compromise, since OEs headers are the way as explained above Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cli11: Add recipeWilliam A. Kennington III via Openembedded-devel2019-01-151-0/+16
cli11 is a c++ command line parser library that provides a simple user interface with modern c++ semantics. Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>