Commit Graph

11 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
Alif M. Ahmad 849f524c62 mksh: resign as maintainer
Remove myself from maintainer.

Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2022-03-02 18:52:07 -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
Thorsten Glaser a3dc217aca
mksh: update to current version
also
• update description
• drop “-c lto”, this option is gone from Build.sh
• add missing $(TARGET_CPPFLAGS)

Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
2020-11-29 01:31:44 +01:00
Alif M. Ahmad b1d98562a1 mksh: update to R56c
Updated to R56c.

Also add myself as maintainer and move the location from `Base system`
into `Utilities/Shells`.

Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2018-03-09 02:45:09 +00:00
Alif M. Ahmad b5dc2ef39b mksh: update to r56b
Updated to mksh-r56b

Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2018-01-18 11:00:26 +07:00
Alif M. Ahmad 369ff9d1c9 mksh: bump to R55 and use PKG_HASH
Upgrade the package to R55. Patches refreshed.

Added `-DMKSHRC_PATH=\"/etc/mkshrc\"` to `CPPFLAGS` to set the default
startup file during both login and nonlogin sessions, so that there is
no need to source `/etc/mkshrc` file manually.

In addition to the package upgrade, use PKG_HASH instead of
PKG_MD5SUM.

Reviewed-by: Thorsten Glaser <tg@mirbsd.org>
Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2017-07-20 22:07:20 +07:00
Alif M. Ahmad 30d6c47bc7 utils/mksh: update to r54
Update to current latest upstream: r54.
Also add a new download mirror to fetch the source.

Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2017-02-24 23:01:09 +07:00
Alive 4ever 6350361865 utils/mksh: Update to current latest upstream (r52c).
Signed-off-by: Alif M. A. <alive4ever at live.com>
2016-07-19 13:51:38 +02:00
Thorsten Glaser d341cf9dcc mksh: SECURITY update to R50d
- new upstream version
- update my eMail address
- add maintainer and licence tag

Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
2014-10-09 14:15:30 +02:00
Thorsten Glaser a219ffc012 mksh: moved to github
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
2014-10-09 14:15:19 +02:00