1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-23 16:17:36 +02:00
Commit Graph

14 Commits

Author SHA1 Message Date
krant
838acc26db minizip: update to 4.0.4
- Don't set default cmake option
- Switch URL to the official one

Signed-off-by: krant <aleksey.vasilenko@gmail.com>
2024-02-07 13:54:20 -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
Andre Heider
e7d9c86503 treewide: refactor to use PKG_BUILD_FLAGS:=lto
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS"
on the main repository.

Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This
fixes it and properly enables LTO.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2023-04-08 08:38:54 +02:00
Rosen Penev
54c13e9b90 minizip: update to 3.0.4
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-12-21 17:37:18 -08:00
Rosen Penev
35fabec128 minizip: update to 3.0.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:31:07 -07:00
Rosen Penev
953e23b0e6 minizip: update to 3.0.2
Add back compat header as domoticz really wants it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-15 20:04:50 -07:00
Rosen Penev
2e654b19f3 treewide: back to cmake.mk
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:05:01 -07:00
Rosen Penev
0ac671880d minizip: update to 3.0.1
Switch to AUTORELEASE for simplicity.

Switch to building with Ninja for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-20 17:27:22 -07:00
Rosen Penev
3b812f93d6
minizip: update to 3.0.0
Switch to new upstream and switch package name.

Further disable features to avoid extra dependencies.

Build with PIC to avoid build failures with mips16.

Remove no longer needed patch. Upstream fixed it differently.

Use AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-02-20 22:02:28 -08:00
Ilya Lipnitskiy
5d8d4fbbcb
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:

  find -L package/feeds/packages/ -name patches | \
  sed 's/patches$/refresh/' | sort | xargs make

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-02-20 16:02:15 -08:00
David Woodhouse
bcaf610a29 minizip: fix $(PKG_SOURCE) to include $(PKG_NAME) to avoid conflicts
Just as Rosen did for cereal in #12477.

Likewise, clean up the CMAKE_OPTIONS onto separate lines for readability.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
2020-06-11 09:27:31 +01:00
David Woodhouse
f2bfc7ca98 minizip: explicitly disable libbsd
Fixes #12471

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
2020-06-10 11:40:50 +01:00
David Woodhouse
201c0162ce minizip: new package
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
2020-06-06 19:39:09 +01:00