All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/collectd: add amqp support
@ 2019-06-09 16:57 Fabrice Fontaine
  2019-06-09 22:40 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2019-06-09 16:57 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/collectd/Config.in   | 7 +++++++
 package/collectd/collectd.mk | 4 +++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/package/collectd/Config.in b/package/collectd/Config.in
index 0cf04b5180..3110363429 100644
--- a/package/collectd/Config.in
+++ b/package/collectd/Config.in
@@ -524,6 +524,13 @@ menu "write plugins"
 
 comment "Select at least one for collectd to be useful"
 
+config BR2_PACKAGE_COLLECTD_AMQP
+	bool "amqp"
+	select BR2_PACKAGE_RABBITMQ_C
+	help
+	  Send/receive values via the Advanced Message Queuing Protocol
+	  (AMQP).
+
 config BR2_PACKAGE_COLLECTD_CSV
 	bool "csv"
 	help
diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk
index 027df8f111..531b824b26 100644
--- a/package/collectd/collectd.mk
+++ b/package/collectd/collectd.mk
@@ -14,7 +14,7 @@ COLLECTD_LICENSE_FILES = COPYING libltdl/COPYING.LIB
 
 # These require unmet dependencies, are fringe, pointless or deprecated
 COLLECTD_PLUGINS_DISABLE = \
-	amqp apple_sensors aquaero ascent barometer dbi dpdkstat email \
+	apple_sensors aquaero ascent barometer dbi dpdkstat email \
 	gmond grpc hddtemp intel_rdt ipmi java libvirt lpar lua lvm \
 	madwifi mbmon mic multimeter netapp notify_desktop numa \
 	nut onewire oracle perl pf pinba powerdns python redis routeros \
@@ -45,6 +45,7 @@ COLLECTD_CONF_OPTS += \
 	--disable-werror \
 	$(foreach p, $(COLLECTD_PLUGINS_DISABLE), --disable-$(p)) \
 	$(if $(BR2_PACKAGE_COLLECTD_AGGREGATION),--enable-aggregation,--disable-aggregation) \
+	$(if $(BR2_PACKAGE_COLLECTD_AMQP),--enable-amqp,--disable-amqp) \
 	$(if $(BR2_PACKAGE_COLLECTD_APACHE),--enable-apache,--disable-apache) \
 	$(if $(BR2_PACKAGE_COLLECTD_APCUPS),--enable-apcups,--disable-apcups) \
 	$(if $(BR2_PACKAGE_COLLECTD_BATTERY),--enable-battery,--disable-battery) \
@@ -141,6 +142,7 @@ COLLECTD_CONF_OPTS += \
 
 COLLECTD_DEPENDENCIES = \
 	host-pkgconf \
+	$(if $(BR2_PACKAGE_COLLECTD_AMQP),rabbitmq-c) \
 	$(if $(BR2_PACKAGE_COLLECTD_APACHE),libcurl) \
 	$(if $(BR2_PACKAGE_COLLECTD_BIND),libcurl libxml2) \
 	$(if $(BR2_PACKAGE_COLLECTD_CEPH),yajl) \
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH 1/1] package/collectd: add amqp support
  2019-06-09 16:57 [Buildroot] [PATCH 1/1] package/collectd: add amqp support Fabrice Fontaine
@ 2019-06-09 22:40 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2019-06-09 22:40 UTC (permalink / raw)
  To: buildroot



On 09/06/2019 18:57, Fabrice Fontaine wrote:
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
>  package/collectd/Config.in   | 7 +++++++
>  package/collectd/collectd.mk | 4 +++-
>  2 files changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/package/collectd/Config.in b/package/collectd/Config.in
> index 0cf04b5180..3110363429 100644
> --- a/package/collectd/Config.in
> +++ b/package/collectd/Config.in
> @@ -524,6 +524,13 @@ menu "write plugins"
>  
>  comment "Select at least one for collectd to be useful"
>  
> +config BR2_PACKAGE_COLLECTD_AMQP
> +	bool "amqp"
> +	select BR2_PACKAGE_RABBITMQ_C
> +	help
> +	  Send/receive values via the Advanced Message Queuing Protocol
> +	  (AMQP).
> +
>  config BR2_PACKAGE_COLLECTD_CSV
>  	bool "csv"
>  	help
> diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk
> index 027df8f111..531b824b26 100644
> --- a/package/collectd/collectd.mk
> +++ b/package/collectd/collectd.mk
> @@ -14,7 +14,7 @@ COLLECTD_LICENSE_FILES = COPYING libltdl/COPYING.LIB
>  
>  # These require unmet dependencies, are fringe, pointless or deprecated
>  COLLECTD_PLUGINS_DISABLE = \
> -	amqp apple_sensors aquaero ascent barometer dbi dpdkstat email \
> +	apple_sensors aquaero ascent barometer dbi dpdkstat email \
>  	gmond grpc hddtemp intel_rdt ipmi java libvirt lpar lua lvm \
>  	madwifi mbmon mic multimeter netapp notify_desktop numa \
>  	nut onewire oracle perl pf pinba powerdns python redis routeros \
> @@ -45,6 +45,7 @@ COLLECTD_CONF_OPTS += \
>  	--disable-werror \
>  	$(foreach p, $(COLLECTD_PLUGINS_DISABLE), --disable-$(p)) \
>  	$(if $(BR2_PACKAGE_COLLECTD_AGGREGATION),--enable-aggregation,--disable-aggregation) \
> +	$(if $(BR2_PACKAGE_COLLECTD_AMQP),--enable-amqp,--disable-amqp) \
>  	$(if $(BR2_PACKAGE_COLLECTD_APACHE),--enable-apache,--disable-apache) \
>  	$(if $(BR2_PACKAGE_COLLECTD_APCUPS),--enable-apcups,--disable-apcups) \
>  	$(if $(BR2_PACKAGE_COLLECTD_BATTERY),--enable-battery,--disable-battery) \
> @@ -141,6 +142,7 @@ COLLECTD_CONF_OPTS += \
>  
>  COLLECTD_DEPENDENCIES = \
>  	host-pkgconf \
> +	$(if $(BR2_PACKAGE_COLLECTD_AMQP),rabbitmq-c) \
>  	$(if $(BR2_PACKAGE_COLLECTD_APACHE),libcurl) \
>  	$(if $(BR2_PACKAGE_COLLECTD_BIND),libcurl libxml2) \
>  	$(if $(BR2_PACKAGE_COLLECTD_CEPH),yajl) \
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-09 22:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-09 16:57 [Buildroot] [PATCH 1/1] package/collectd: add amqp support Fabrice Fontaine
2019-06-09 22:40 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.