treewide: remove AUTORELEASE
authorNick Hainke <vincent@systemli.org>
Wed, 26 Apr 2023 09:40:36 +0000 (11:40 +0200)
committerNick Hainke <vincent@systemli.org>
Thu, 27 Apr 2023 15:14:16 +0000 (17:14 +0200)
commit3e96c851a7871f38c52c7be0e0f693b045fe0758
tree750673be0e0cea9cc423b877329cc8513cb3e9d9
parenta26e3441d8ad7de74c58a181901137b986e2fb21
treewide: remove AUTORELEASE

OpenWrt/packages removed AUTORELEASE treewide. Remove it also in the
routing feed.

This is just copied from [0] with modification to the sed cmd because it
was not working for the routing feed:

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/routing; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's/\/Makefile$//';);
do
  make package/$i/download
done

[0] - https://github.com/openwrt/packages/commit/0c10c224be81f9221dabfab449855ab6718d2a0c

Signed-off-by: Nick Hainke <vincent@systemli.org>
12 files changed:
alfred/Makefile
batctl/Makefile
batman-adv/Makefile
bmx6/Makefile
mcproxy/Makefile
mesh11sd/Makefile
minimalist-pcproxy/Makefile
naywatch/Makefile
olsrd/Makefile
pimbd/Makefile
prince/Makefile
vis/Makefile