Commit Graph

10 Commits

Author SHA1 Message Date
Rosen Penev dff178a393 fuse3: update to 3.16.2
Add PKG_BUILD_DEPENDS to fix potential problems.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-11-16 17:48:17 -08:00
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
Rosen Penev df5d7245b9 treewide: remove PKG_INSTALL for meson projects
It doesn't seem to be used by meson.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-06-15 18:07:46 -07:00
Rosen Penev a976658b8c fuse3: update to 3.10.5
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 01:19:12 -07:00
Rosen Penev 5ccd4d1c25 treewide: compile with tools/meson
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-17 22:06:52 -07:00
Rosen Penev e07a7928e4 fuse3: update to 3.10.4
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:29:05 -07:00
Rosen Penev d75d71bde2 fuse3: update to 3.10.1
Remove upstreamed patches. Meaningless as uClibc-ng is gone now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-17 15:09:52 -08:00
Rosen Penev 5dcd919ca5
fuse3: update to 3.10.0
Backport two uClibc-ng patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-11-05 20:59:36 -08:00
Rosen Penev 3dd3e22735
fuse3: update to 3.9.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-08-27 17:29:03 -07:00
Rosen Penev 6e65081643 fuse3: update to 3.9.2
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>
2020-07-29 16:40:34 -07:00