From: Marc Fournier Date: Wed, 21 Feb 2018 16:52:50 +0000 (+0100) Subject: Disable the lvm plugin X-Git-Tag: collectd-5.8.0-1~21 X-Git-Url: https://git.tokkee.org/?p=pkg-collectd.git;a=commitdiff_plain;h=5d743f8e686e86eaf108673c422a2224e5b52979 Disable the lvm plugin --- diff --git a/debian/changelog b/debian/changelog index 8800d75..b6943d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ collectd (5.8.0-1) UNRELEASED; urgency=medium * Enable the grpc plugin, libgrpc++ is now available. * Enable the intel_rdt plugin, libpqos is now available. * Re-enable the varnish plugin, support for varnish 5.2 now implemented. + * Disable the lvm plugin, liblvm2app being deprecated. (Closes: #881641) * debian/patches: - Added i2c_detection.patch; needed to build against libi2c-4.0. Thanks to Christian Ehrhardt fo reporting this problem and Andreas Hasenack for diff --git a/debian/collectd.conf b/debian/collectd.conf index 16a9d36..17be92d 100644 --- a/debian/collectd.conf +++ b/debian/collectd.conf @@ -133,7 +133,6 @@ LoadPlugin irq #LoadPlugin java LoadPlugin load #LoadPlugin lua -#LoadPlugin lvm #LoadPlugin madwifi #LoadPlugin mbmon #LoadPlugin md diff --git a/debian/control b/debian/control index cbcda59..2478ba9 100644 --- a/debian/control +++ b/debian/control @@ -28,7 +28,6 @@ Build-Depends: debhelper (>= 9.20160709~), dpkg-dev (>= 1.14.10), po-debconf, dh libkvm-dev [kfreebsd-any], libldap2-dev, liblua5.3-dev, - liblvm2-dev [linux-any], libmemcached-dev, libmicrohttpd-dev, libmodbus-dev, @@ -154,7 +153,6 @@ Description: statistics collection and monitoring daemon (core system) * logging to files, STDOUT and STDERR: logfile * logging in logstash's JSON event format: log_logstash * embedded Lua interpreter: lua - * Logical Volume Manager usage: lvm * Atheros wireless LAN chipset statistics: madwifi * motherboard monitor: mbmon * query and parse data from a memcache daemon: memcachec diff --git a/debian/rules b/debian/rules index 1e06f00..0ec86d4 100755 --- a/debian/rules +++ b/debian/rules @@ -86,6 +86,10 @@ confflags += --disable-xmms # Cf. https://github.com/collectd/collectd/issues/1574 confflags += --disable-sigrok +# liblvm2app is deprecated. +# https://github.com/collectd/collectd/issues/2647 +confflags += --disable-lvm + # These plugins are Linux-specific. ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH))) confflags += \ @@ -99,7 +103,6 @@ ifneq (,$(filter kfreebsd-i386 kfreebsd-amd64, $(DEB_BUILD_ARCH))) --disable-ipc \ --disable-iptables \ --disable-ipvs \ - --disable-lvm \ --disable-madwifi \ --disable-md \ --disable-netlink \