aboutsummaryrefslogtreecommitdiff
path: root/utils/canutils/Makefile
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>
* canutils: update to 2021.08.0Rosen Penev2021-12-17
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: uipdate to 2021.06.0Rosen Penev2021-07-21
| | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@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>
* treewide: build CMake projects with NinjaRosen Penev2021-03-27
| | | | | | | | | | | | | | | | | | | | faster to compile. A small selection of packages was tested going from: Executed in 696.30 secs fish external usr time 82.98 mins 395.00 micros 82.98 mins sys time 9.02 mins 0.00 micros 9.02 mins to: Executed in 592.20 secs fish external usr time 84.84 mins 361.00 micros 84.84 mins sys time 8.85 mins 57.00 micros 8.85 mins Tested by running make -j 12 and wiping staging/build_dir/target_x Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: update to 2020.12.0Rosen Penev2021-02-22
| | | | | | Remove upstreamed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: update to 2020.11.0Rosen Penev2020-11-19
| | | | | | | | | | Renamed j* tools to their new versions. Remove upstreamed patches. Add missing time.h header. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: remove usleep and bzeroRosen Penev2020-10-12
| | | | | | Both removed in POSIX 2008. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: add back install sectionRosen Penev2020-08-14
| | | | | | | 5969273ff40cdf6d90f3442aa6c986226e0a16dc mistakenly got rid of the install section for canutils, causing errors when trying to install. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: switch to CMakeRosen Penev2020-07-04
| | | | | | | | | | Allows simplifying the Makefile. Faster compilation as well. Revert b70cb0ef5ed196247bd4bcce3cb84167420eeb4d That commit was misleading and ended up bloating the Utilities section. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: update to 2020.02.04Rosen Penev2020-02-06
| | | | | | | | Removed upstream patch. Alphabetized tools and added jcat tool. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* canutils: fix canutils makefile dependencyPaulo Machado2020-01-15
| | | | | | PKG_RELEASE bumped Signed-off-by: Paulo Machado <pffmachado@yahoo.com>
* canutils: fix canutils makefile dependencyPaulo Machado2020-01-14
| | | | | | | | DEPENDS attribute makes canutils fail on installation procedure Removing it makes a successful build Signed-off-by: Paulo Machado <pffmachado@yahoo.com>
* canutils: Switch to autotools instead of regular MakefileRosen Penev2020-01-12
| | | | | | | The regular Makefile is totally broken and does not pass CFLAGS. This breaks compilation with PKG_ASLR_PIE and also does not pass -Os. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* can-utils: Update to 2018.02.0Rosen Penev2019-11-06
| | | | | | | | | | | | Switched to codeload for simplicity. Switched to PKG_INSTALL for consistency. Added PKG_BUILD_PARALLEL for faster compilation. Added extra utilities added by the newer version. 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>
* canutils: fix PKG_MIRROR_HASHEtienne Champetier2017-09-22
| | | | Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* canutils: bump version to cb33a55720716cbe01e6025a2bda74a1b7e492d3Yegor Yefremov2017-03-22
| | | | | | | | | | | Rework package recipe: - use PKG_SOURCE_DATE - use xz compression - add hash - get rid of PKG_SOURCE_SUBDIR/PKG_BUILD_DIR Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
* canutils: rework recipeYegor Yefremov2017-03-13
| | | | | | | | | Don't group any utilities but just list them all as they are. Fixes: https://github.com/openwrt/packages/issues/3695 Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
* canutils: add new package (fixes #1785)Anton Glukhov2015-09-21
Signed-off-by: Anton Glukhov <anton.a.glukhov@gmail.com> [Minor fixes] Signed-off-by: Michael Heimpold <mhei@heimpold.de>