Commit Graph

12 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
Phil Eichinger 1fa10757b9 at: bump to version 3.2.2
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2021-10-14 16:23:26 -07: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
Phil Eichinger 2e297d29c0 at: bump to version 3.2.1
Change upstream to official repository at
https://salsa.debian.org/debian/at

Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2020-10-28 17:49:48 -07:00
Rosen Penev 771d691bcb
at: fix compilation
libselinux is being picked up by at.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-08-18 00:22:04 -07:00
Sven Eckelmann bbb1ea7345 treewide: Change .*GPL.*+ licenses to SPDX compatible identifier
The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL
licenses. But a lot of packages did use a different, non-SPDX style with a
"+" at the end instead of "-or-later".

Signed-off-by: Sven Eckelmann <sven@narfation.org>
2019-09-10 07:45:15 +02:00
Jo-Philipp Wich 2fcb74aaba at: change libelf1 dependency to libelf
The libelf1 source package has been renamed to libelf in OpenWrt base,
adjust the dependency in "at" accordingly.

There are no functional changes and no changes in the resulting binary.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2019-01-24 13:15:38 +01:00
Phil Eichinger 6d9eb0c099 at: bump to version 3.1.23
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2018-09-08 21:04:00 +02:00
Phil Eichinger c9420d6b3b at: bump version
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2017-10-17 16:44:36 +02: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
Phil Eichinger a0c7a0948d at: update init script to use procd
also increase PKG_RELEASE

Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2015-11-18 16:36:23 +01:00
Phil Eichinger 212d602c51 at: bring back package
* import from oldpackages
* version bump, update hash
* add PKG_LICENSE and PKG_LICENSE_FILES
* update patches

Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2015-11-17 17:52:21 +01:00