aboutsummaryrefslogtreecommitdiff
path: root/utils/moreutils
Commit message (Collapse)AuthorAge
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* moreutils: update to 0.65Rosen Penev2021-06-01
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | 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>
* moreutils: update to 0.64Rosen Penev2020-09-03
| | | | | | | | Remove upstreamed patch. Fixed license information. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* moreutils: fix compilation with uClibc-ngRosen Penev2020-08-13
| | | | | | getloadavg is missing not just under cygwin. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* moreutils: Update to 0.63Rosen Penev2019-02-02
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* moreutils: Update to 0.62 and switch to git tarballRosen Penev2018-09-02
| | | | | | | | | It's more generic in addition to being the source for the debian package. PKG_BUILD_PARALLEL was explicitly set to no just in case as I see no handling for it in the Makefile. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* moreutils: Fix build failure due to install strippingNikil Mehta2017-04-01
| | | | Signed-off-by: Nikil Mehta nikil.mehta@gmail.com
* moreutils: Add packageNikil Mehta2017-03-18
Signed-off-by: Nikil Mehta <nikil.mehta@gmail.com>