From 13f7aa5a5f5709391aaf9bee66b80b57206e1176 Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Mon, 14 Oct 2019 13:41:00 -0400 Subject: [PATCH 1/2] dmapd: update to 0.0.83 Signed-off-by: W. Michael Petullo --- net/dmapd/Makefile | 4 +-- .../patches/001-make_unit_test_optional.patch | 33 ------------------- 2 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 net/dmapd/patches/001-make_unit_test_optional.patch diff --git a/net/dmapd/Makefile b/net/dmapd/Makefile index 59bc90a08..925a115ac 100644 --- a/net/dmapd/Makefile +++ b/net/dmapd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dmapd -PKG_VERSION:=0.0.82 +PKG_VERSION:=0.0.83 PKG_RELEASE:=1 PKG_MAINTAINER:=W. Michael Petullo @@ -18,7 +18,7 @@ PKG_LICENSE_FILES:=COPYING PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.flyn.org/projects/dmapd -PKG_HASH:=7dc1a10d6c1363491492f159f7864d57194384b8007013088ca3b6c220e9e3f6 +PKG_HASH:=ab372ff217d2a74a33d62098fe501da663e5dded0df67e2c2c83d968fa9ac7b9 PKG_FIXUP:=autoreconf PKG_INSTALL:=1 diff --git a/net/dmapd/patches/001-make_unit_test_optional.patch b/net/dmapd/patches/001-make_unit_test_optional.patch deleted file mode 100644 index 0c52f18a3..000000000 --- a/net/dmapd/patches/001-make_unit_test_optional.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff --git a/configure.ac b/configure.ac -index d14e193..645b341 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -192,18 +192,18 @@ AM_CONDITIONAL(USE_GSTREAMER, test x"$HAVE_GSTREAMER" = "xyes") - AC_SUBST(GSTREAMER_CFLAGS) - AC_SUBST(GSTREAMER_LIBS) - --dnl Check for check --PKG_CHECK_MODULES(CHECK, check >= 0.9.4, HAVE_CHECK=yes, HAVE_CHECK=no) -- --if test x"$HAVE_CHECK" = "xyes"; then -- AC_DEFINE(HAVE_CHECK, 1, [Define if check support is enabled]) -+dnl Check for check, which dmapd uses for its unit tests -+AC_ARG_ENABLE(check, [ --disable-check do not build check support], enable_check=$enableval, enable_check=yes) -+if test x$enable_check = xyes; then -+ PKG_CHECK_MODULES([CHECK], [check >= 0.9.4],have_check=yes,have_check=no) -+ AM_CONDITIONAL(USE_CHECK, test x"$have_check" = "xyes") -+ if test "x$have_check" = "xyes"; then -+ AC_DEFINE(HAVE_CHECK, 1, [Define if check support is enabled]) -+ fi -+else -+ AM_CONDITIONAL(USE_CHECK, false) - fi - --AM_CONDITIONAL(USE_CHECK, test x"$HAVE_CHECK" = "xyes") -- --AC_SUBST(CHECK_CFLAGS) --AC_SUBST(CHECK_LIBS) -- - AM_CONDITIONAL(FLYN, test "$FLYN") - - AC_OUTPUT([ From e29a9ffe2ec810a42b22ee32b7139dedefea3e25 Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Mon, 14 Oct 2019 13:41:38 -0400 Subject: [PATCH 2/2] dmapd: update PKG_LICENSE and enable parallel build Signed-off-by: W. Michael Petullo --- net/dmapd/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/dmapd/Makefile b/net/dmapd/Makefile index 925a115ac..2ac58efc2 100644 --- a/net/dmapd/Makefile +++ b/net/dmapd/Makefile @@ -13,7 +13,7 @@ PKG_RELEASE:=1 PKG_MAINTAINER:=W. Michael Petullo -PKG_LICENSE:=GPLv2 +PKG_LICENSE:=GPL-2.0-or-later PKG_LICENSE_FILES:=COPYING PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -22,6 +22,7 @@ PKG_HASH:=ab372ff217d2a74a33d62098fe501da663e5dded0df67e2c2c83d968fa9ac7b9 PKG_FIXUP:=autoreconf PKG_INSTALL:=1 +PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/nls.mk