aboutsummaryrefslogtreecommitdiff
path: root/libs/check
Commit message (Collapse)AuthorAge
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* treewide: back to cmake.mkRosen Penev2021-06-12
| | | | | | Ninja was merged to base and therefore we can now use normal cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* check: update to 0.15.2Rosen Penev2021-03-14
| | | | | | | | Switch to AUTORELEASE for simplicity. Switch to building with ninja for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* check: bump 0.15.0Eduardo Abinader2020-06-30
| | | | | | | | | | Compiled and run in x86_64. Changes: -Define CK_ATTRIBUTE_FORMAT for GCC >= 2.95.3, to make use of ‘gnu_printf’ format attribute -Refactor tests to fix signed - unsigned conversions -Refactor some Check internals to use proper interger types Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* check: bump 0.14.0Eduardo Abinader2020-02-06
| | | | | | | | | | | | | | | Compiled and run in x86_64. This release adds support for CMake's FetchContent. Changes: -Add support for FetchContent in CMake -Rename CMake project from 'check' to 'Check' -Fix for checking for wrong tool when building docs in Autotools -Fix compiler warning with printf format Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* check: Update to 0.13.0Rosen Penev2019-10-29
| | | | | | | | | | Switch to CMake. Allows to simplify the Makefile. Replaced InstallDev section with CMAKE_INSTALL. Added PKG_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* libs/check: update to 0.12.0Eduardo Abinader2017-10-22
| | | | Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* check: use sha256 checksumEduardo Abinader2017-02-13
| | | | Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* check: changing MaintainerEduardo Abinader2017-02-13
| | | | | | As agreed on https://github.com/openwrt/packages/pull/3238 Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* check: bump to 0.11.0Eduardo Abinader2017-02-13
| | | | | | | updated new package url and solved some issues: https://github.com/libcheck/check/releases/tag/0.11.0 Signed-off-by: Eduardo Abinader <eduardoabinader@gmail.com>
* check: fix fortify source compatibilityJo-Philipp Wich2015-06-30
| | | | | | | | | | Let `./configure` assume C99 compliant `snprintf()` and `vsnprintf()` functions by passing the required cache variables via `CONFIGURE_VARS`. Fixes fortify-source related undeclared function errors when compiling the `tests/` directory. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* check: import from old packages feedNicolas Thill2015-02-07
- update to latest version (v0.9.14) - add license info - add myself as maintainer Signed-off-by: Nicolas Thill <nico@openwrt.org>