Commit Graph

11 Commits

Author SHA1 Message Date
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
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>
2023-04-21 22:46:58 +02:00
Sergey V. Lobanov 6e9c701050 tcl: fix build on macos
configure script detects Darwin and uses flags incompatible with
Linux target build.

This patch uses fakeuname tool if host OS is MacOS to avoid Darwin
detection on target build.

Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
2022-01-29 08:19:54 -08:00
Rosen Penev 396a06e6f3 tcl: update to 8.6.11
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:08:47 -07:00
Rosen Penev ed15983ff8
tcl: update to 8.6.10
Add *BUILD_PARALLEL for faster compilation.

Rearrange variable for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-01 16:21:39 -08:00
Rosen Penev 1b2e94e537
tcl: Fix pkgconfig file
It's pointing to the host.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-11-27 23:29:54 -08:00
Jan Pavlinec 299e5b0a9b
treewide: add PKG_CPE_ID for better cvescanner coverage
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-09-17 12:40:26 +02:00
Rosen Penev dda7047768 tcl: Update to 8.6.9
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-17 09:14:02 -08:00
Vadim Radovel 7bf98d8af1 lang/tcl: bring back package, update to 8.6.8, add host compile
Signed-off-by: Vadim Radovel <vadim@radovel.ru>
2018-10-18 19:24:21 +03:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
Ted Hess 8f1c32254f tcl: Add BROKEN tag until package build fixed
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-03-08 13:20:51 -05:00
mistachkin 7031109056 lang/tcl: Bring back package, updated to 8.6.4.
Signed-off-by: Joe Mistachkin <joe@mistachkin.com>
2015-11-15 14:04:38 -08:00