Commit Graph

8 Commits

Author SHA1 Message Date
Florian Eckert 19dd1c0f58 zlog: fix PKG_MIRROR_HASH
Due to the change in the version description, the package must be
downloaded again. In addition, the standard compression method has changed
to zst. The checksum must therefore be recalculated.

Fixes: 5d273f0f5f ("zlog: fix version for APK")
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2024-05-10 14:17:37 +02:00
Florian Eckert 5d273f0f5f zlog: fix version for APK
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2024-05-06 12:10:42 +02:00
Robert Marko 272f55e87f treewide: refresh hashes after move to use ZSTD as default
With the recent move to using ZSTD as the default compression format
for packaging git repo clones we must refresh all of the hashes for
the packages feed as well.

Signed-off-by: Robert Marko <robimarko@gmail.com>
2024-04-07 12:06:34 +02:00
Rosen Penev fa69fdc2b0 zlog: update to 1.2.17
Rework to use local tarballs. Smaller and more stable.

Build with cmake. Faster and simpler. Needs a small patch though.

License was updated.

Fixes CVE-2021-43521

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-02-11 17:14:23 -08:00
Fabrice Fontaine 5afe5c9031 treewide: assign PKG_CPE_ID
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2024-02-04 16:16:10 -08:00
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
Marko Ratkaj 2993c358ce zlog: update PKG_SOURCE to avoid dl clashes
Signed-off-by: Marko Ratkaj <markoratkaj@gmail.com>
2022-04-13 20:53:54 -07:00
Marko Ratkaj ac33108c4b zlog: add new package
zlog is a reliable, high-performance, thread safe, flexible,
clear-model, pure C logging library.

Signed-off-by: Marko Ratkaj <markoratkaj@gmail.com>
2022-04-13 20:53:54 -07:00