liboping: bump to version 1.10.0
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sun, 20 May 2018 10:38:20 +0000 (12:38 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 20 May 2018 13:49:31 +0000 (15:49 +0200)
- Rework ncurses dependency to use new --with[out]-ncurses option
- Add hash for license file

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/liboping/liboping.hash
package/liboping/liboping.mk

index 3e796cca62785285941e22a979040731329612fe..926b234f05f38d8f053e25a9c7d4863771be59b2 100644 (file)
@@ -1,2 +1,5 @@
 # From http://noping.cc/#download
-sha256 44bb1d88b56b88fda5533edb3aa005c69b3cd396f20453a157d7e31e536f3530        liboping-1.9.0.tar.bz2
+sha256 eb38aa93f93e8ab282d97e2582fbaea88b3f889a08cbc9dbf20059c3779d5cd8        liboping-1.10.0.tar.bz2
+
+# Hash for license file:
+sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551        COPYING
index 114e0c27e578b7999f500d796370b4afead9b86c..4aa3e30ee8d1e9ba4ed163ddb9a7be76846e0b90 100644 (file)
@@ -4,13 +4,19 @@
 #
 ################################################################################
 
-LIBOPING_VERSION = 1.9.0
+LIBOPING_VERSION = 1.10.0
 LIBOPING_SITE = http://noping.cc/files
 LIBOPING_SOURCE = liboping-$(LIBOPING_VERSION).tar.bz2
 LIBOPING_INSTALL_STAGING = YES
-LIBOPING_DEPENDENCIES = $(if $(BR2_PACKAGE_NCURSES),ncurses)
 LIBOPING_CONF_OPTS = --without-perl-bindings
 LIBOPING_LICENSE = LGPL-2.1+, GPL-2.0
 LIBOPING_LICENSE_FILES = COPYING
 
+ifeq ($(BR2_PACKAGE_NCURSES),y)
+LIBOPING_DEPENDENCIES += ncurses
+LIBOPING_CONF_OPTS += --with-ncurses
+else
+LIBOPING_CONF_OPTS += --without-ncurses
+endif
+
 $(eval $(autotools-package))