Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | treewide: remove AUTORELEASE | Paul Fertser | 2023-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> | ||
* | treewide: remove PKG_INSTALL for meson projects | Rosen Penev | 2022-06-15 |
| | | | | | | It doesn't seem to be used by meson. Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | fuse3: update to 3.10.5 | Rosen Penev | 2021-09-25 |
| | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | treewide: compile with tools/meson | Rosen Penev | 2021-09-17 |
| | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | fuse3: update to 3.10.4 | Rosen Penev | 2021-07-21 |
| | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | fuse3: update to 3.10.1 | Rosen Penev | 2021-01-17 |
| | | | | | | Remove upstreamed patches. Meaningless as uClibc-ng is gone now. Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | fuse3: update to 3.10.0 | Rosen Penev | 2020-11-05 |
| | | | | | | Backport two uClibc-ng patches. Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | fuse3: update to 3.9.3 | Rosen Penev | 2020-08-27 |
| | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com> | ||
* | fuse3: update to 3.9.2 | Rosen Penev | 2020-07-29 |
Added the mount utilities. It turns out that udev is not a requirement. Renamed package to fuse3 and moved to utils, as with fuse2. Signed-off-by: Rosen Penev <rosenp@gmail.com> |