Commit Graph

7 Commits

Author SHA1 Message Date
Oskari Rauta f142b1e002 mtools: update to version 4.0.43
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
2023-06-11 17:29:45 +03: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
Eneas U de Queiroz d6960886bd mtools: avoid picking libbsd dependency
Even though commit 96ec989ed ("mtools: update to 4.0.39") correctly
dropped libbsd dependency, the package's configure script will still
link to it if the library is found.

Tell configure not to look for it by setting ac_cv_lib_bsd_main=no.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2022-05-02 12:47:44 -07:00
Guilherme Janczak 96ec989edb mtools: update to 4.0.39
This update happens to drop the libbsd dependency.

Signed-off-by: Guilherme Janczak <guilherme.janczak@yandex.com>
2022-04-28 23:06:20 -07:00
Stijn Tintel 61996a000e mtools: bump to 4.0.35
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2021-08-15 01:42:20 +03:00
Stijn Tintel b37da1e6fc mtools: fix host lib leakage
The package does not build due to host lib leakage, as evidenced by
config.log:

X_CFLAGS=' -I/usr/include'
X_LIBS=' -L/usr/lib'

Fix this by disabling X with a configure var.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2021-08-15 01:40:47 +03:00
Oskari Rauta 8ec61eb7a8 mtools: add new package
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
2021-04-21 03:19:14 +03:00