Bladeren bron

package/bats-core: new package

A bash-based automated testing system.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Peter Korsgaard 6 jaren geleden
bovenliggende
commit
157a9c431c
5 gewijzigde bestanden met toevoegingen van 34 en 0 verwijderingen
  1. 1 0
      DEVELOPERS
  2. 1 0
      package/Config.in
  3. 11 0
      package/bats-core/Config.in
  4. 5 0
      package/bats-core/bats-core.hash
  5. 16 0
      package/bats-core/bats-core.mk

+ 1 - 0
DEVELOPERS

@@ -1715,6 +1715,7 @@ F:	configs/orangepi_pc_defconfig
 F:	configs/pandaboard_defconfig
 F:	configs/roseapplepi_defconfig
 F:	configs/sheevaplug_defconfig
+F:	package/bats-core/
 F:	package/docker-compose/
 F:	package/dump1090/
 F:	package/flickcurl/

+ 1 - 0
package/Config.in

@@ -138,6 +138,7 @@ menu "Debugging, profiling and benchmark"
 endmenu
 
 menu "Development tools"
+	source "package/bats-core/Config.in"
 	source "package/binutils/Config.in"
 	source "package/bsdiff/Config.in"
 	source "package/bustle/Config.in"

+ 11 - 0
package/bats-core/Config.in

@@ -0,0 +1,11 @@
+config BR2_PACKAGE_BATS_CORE
+	bool "bats"
+	depends on BR2_PACKAGE_BASH # runtime
+	help
+	  Bats: Bash Automated Testing System
+
+	  Bats is a TAP-compliant testing framework for Bash. It
+	  provides a simple way to verify that the UNIX programs you
+	  write behave as expected.
+
+	  https://github.com/bats-core/bats-core

+ 5 - 0
package/bats-core/bats-core.hash

@@ -0,0 +1,5 @@
+# Locally calculated
+sha256 855d8b8bed466bc505e61123d12885500ef6fcdb317ace1b668087364717ea82  bats-core-v1.1.0.tar.gz
+
+# License files
+sha256 55074b2b3b87809105034e1468e59076554d76a80c67bcc592000cc3d929852d  LICENSE.md

+ 16 - 0
package/bats-core/bats-core.mk

@@ -0,0 +1,16 @@
+################################################################################
+#
+# bats-core
+#
+################################################################################
+
+BATS_CORE_VERSION = v1.1.0
+BATS_CORE_SITE = $(call github,bats-core,bats-core,$(BATS_CORE_VERSION))
+BATS_CORE_LICENSE = MIT
+BATS_CORE_LICENSE_FILES = LICENSE.md
+
+define BATS_CORE_INSTALL_TARGET_CMDS
+	$(@D)/install.sh $(TARGET_DIR)/usr
+endef
+
+$(eval $(generic-package))