2
1
Эх сурвалжийг харах

package/tio: bump to version 1.40

- Switch to meson-package
- Add inih mandatory dependency
- COPYING has been removed because it was redundant with LICENSE file:
  https://github.com/tio/tio/commit/39a9c4bbdaf2f77bda04fdbee506a206eecdb5e9
- Update indentation in hash file (two spaces)

https://github.com/tio/tio/blob/v1.40/ChangeLog

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Fabrice Fontaine 3 жил өмнө
parent
commit
6ef40982fa

+ 1 - 0
package/tio/Config.in

@@ -1,6 +1,7 @@
 config BR2_PACKAGE_TIO
 	bool "tio"
 	depends on !BR2_sparc64 && !BR2_sparc
+	select BR2_PACKAGE_INIH
 	help
 	  "tio" is a simple TTY terminal application which features a
 	  straightforward commandline interface to easily connect to

+ 3 - 3
package/tio/tio.hash

@@ -1,5 +1,5 @@
-# Locally computed:
-sha256 a8f5ed6994cacb96780baa416b19e5a6d7d67e8c162a8ea4fd9eccd64984ae44  tio-1.32.tar.xz
+# From https://github.com/tio/tio/releases/download/v1.40/tio-1.40.tar.xz.sha256sum:
+sha256  beafc4763552ff7cf3a368e8af36258018ef85fac32133c4635051d7615ab527  tio-1.40.tar.xz
 
 # Hash for license files:
-sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
+sha256  9248dee77ee136321f24556a96e07ff8f90461013941884a9defd0ac825ef131  LICENSE

+ 4 - 3
package/tio/tio.mk

@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-TIO_VERSION = 1.32
+TIO_VERSION = 1.40
 TIO_SOURCE = tio-$(TIO_VERSION).tar.xz
 TIO_SITE = https://github.com/tio/tio/releases/download/v$(TIO_VERSION)
 TIO_LICENSE = GPL-2.0+
-TIO_LICENSE_FILES = COPYING
+TIO_LICENSE_FILES = LICENSE
+TIO_DEPENDENCIES = inih
 
-$(eval $(autotools-package))
+$(eval $(meson-package))