]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
lsscsi: add new package
authorAntony Pavlov <antonynpavlov@gmail.com>
Fri, 12 May 2017 12:41:01 +0000 (15:41 +0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 11 Jun 2017 16:37:54 +0000 (18:37 +0200)
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Cc: Yegor Yefremov <yegorslists@googlemail.com>
[Thomas:
 - add entry to DEVELOPERS file
 - use SPDX license code
 - license is GPL-2.0+, not GPL-2.0]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
DEVELOPERS
package/Config.in
package/lsscsi/Config.in [new file with mode: 0644]
package/lsscsi/lsscsi.hash [new file with mode: 0644]
package/lsscsi/lsscsi.mk [new file with mode: 0644]

index 23946ac538865bb9ddb5877d84ee4e6bb8fdcd06..7d8b410a290767503d49f58e165f26f5b3fec8a7 100644 (file)
@@ -98,6 +98,9 @@ F:    package/python-pydal/
 F:     package/python-web2py/
 F:     package/sysdig/
 
+N:     Antony Pavlov <antonynpavlov@gmail.com>
+F:     package/lsscsi/
+
 N:     Anthony Viallard <viallard@syscom-instruments.com>
 F:     package/gnuplot/
 
index 10e51c10e89f4ef9adecdf410047b52ef441b0c2..3a99c86db32184fac8852c88332c4390d6c93b54 100644 (file)
@@ -426,6 +426,7 @@ endmenu
        source "package/lirc-tools/Config.in"
        source "package/lm-sensors/Config.in"
        source "package/lshw/Config.in"
+       source "package/lsscsi/Config.in"
        source "package/lsuio/Config.in"
        source "package/lvm2/Config.in"
        source "package/mali-t76x/Config.in"
diff --git a/package/lsscsi/Config.in b/package/lsscsi/Config.in
new file mode 100644 (file)
index 0000000..1c85686
--- /dev/null
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LSSCSI
+       bool "lsscsi"
+       help
+         lsscsi - list SCSI devices (or hosts) and their attributes
+
+         http://sg.danny.cz/scsi/lsscsi.html
diff --git a/package/lsscsi/lsscsi.hash b/package/lsscsi/lsscsi.hash
new file mode 100644 (file)
index 0000000..d39da9b
--- /dev/null
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 025d009a1af42bc5b2fca664c44c9ecdfd754356e4a44f5c6aced2420afadd50  lsscsi-0.28.tgz
diff --git a/package/lsscsi/lsscsi.mk b/package/lsscsi/lsscsi.mk
new file mode 100644 (file)
index 0000000..649aad9
--- /dev/null
@@ -0,0 +1,13 @@
+################################################################################
+#
+# lsscsi
+#
+################################################################################
+
+LSSCSI_VERSION = 0.28
+LSSCSI_SOURCE = lsscsi-$(LSSCSI_VERSION).tgz
+LSSCSI_SITE = http://sg.danny.cz/scsi
+LSSCSI_LICENSE = GPL-2.0+
+LSSCSI_LICENSE_FILES = COPYING
+
+$(eval $(autotools-package))