aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorW. Michael Petullo <mike@flyn.org>2019-10-14 13:41:00 -0400
committerW. Michael Petullo <mike@flyn.org>2019-10-14 13:41:00 -0400
commit13f7aa5a5f5709391aaf9bee66b80b57206e1176 (patch)
tree1564c602bb2adb157099626a418bb19d3f0b15ff /net
parent253b3c32d43b39bd0b3cb63af9821853e14ba186 (diff)
dmapd: update to 0.0.83
Signed-off-by: W. Michael Petullo <mike@flyn.org>
Diffstat (limited to 'net')
-rw-r--r--net/dmapd/Makefile4
-rw-r--r--net/dmapd/patches/001-make_unit_test_optional.patch33
2 files changed, 2 insertions, 35 deletions
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 <mike@flyn.org>
@@ -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([