1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-14 03:13:54 +02:00
Commit Graph

15 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
Rosen Penev
2fd7ee49a5 cshark: fix compilation with GCC12
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-06-10 14:09:35 -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
301bab659c cshark: update to 2020-07-22
Switch to AUTORELEASE for simplicity.

Switch to building with Ninja for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-24 15:33:03 -07:00
Rosen Penev
61b5f5b16c
cshark: Switch to standard PKG_SOURCE_VERSION/DATE
Several other cleanups.

Added PKG_BUILD_PARALLEL for faster compilation.

Removed PKG_INSTALL as cmake.mk already defines it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-09-21 15:56:58 -07:00
Rob Mosher
e3144f00a3 cshark: update to latest git HEAD
This fixes GCC8 compile due to buffer overrun

Signed-off-by: Rob Mosher <nyt-openwrt@countercultured.net>
2018-08-21 13:39:31 -04: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
danrl
6b2b197327 net/cshark: remove luci-app-cshark
Moved over to the LuCI repository.

Signed-off-by: Dan Luedtke <mail@danrl.com>
2017-02-17 10:55:29 +01:00
Daniel Engberg
18536d8e28 net/cshark: New version layout, use mbed TLS and xz
Move git hash to PKG_VERSION instead of PKG_RELEASE
Use xz git tarball instead of gz
Add dependency to ustream-mbedtls as mbed TLS 1.3 is deprecated.

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-01-01 09:31:38 +01:00
Thomas Peterson
bc5c8fdbee cshark: update to latest git HEAD 2015-11-24 12:39:20 -05:00
Luka Perkov
4ecbe05663 cshark: update to latest git HEAD
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-03-13 09:15:54 +01:00
Luka Perkov
9bb8f15a69 cshark: bump package
Fixes bugs found in Chrome (Mac only).

Signed-off-by: Luka Perkov <luka@openwrt.org>
2014-07-02 15:30:10 +02:00
Luka Perkov
2ef354d343 cshark: bump package
Signed-off-by: Luka Perkov <luka@openwrt.org>
2014-06-23 21:05:14 +02:00
Luka Perkov
b5ea055991 cshark: fix build failure
Signed-off-by: Luka Perkov <luka@openwrt.org>
2014-06-23 20:59:08 +02:00
Luka Perkov
63782c633d cshark: add new package
Signed-off-by: Luka Perkov <luka@openwrt.org>
2014-06-23 11:57:00 +02:00