collectd.spec: avoid accidentally picking an ancient/unsupported java version
[collectd.git] / contrib / redhat / collectd.spec
1 #
2 # q: What is this ?
3 # a: A specfile for building RPM packages of current collectd releases, for
4 #    RHEL/CentOS versions 5, 6 and 7. By default all the plugins which are
5 #    buildable based on the libraries available in the distribution + the
6 #    EPEL repository, will be built. Plugins depending on external libs will
7 #    be packaged in separate RPMs.
8 #
9 # q: And how can I do that ?
10 # a: By following these instructions, using mock:
11 #
12 # - install and configure mock (https://fedoraproject.org/wiki/Projects/Mock)
13 #
14 # - enable the EPEL repository (http://dl.fedoraproject.org/pub/epel/) in the
15 #   configuration files for your target systems (/etc/mock/*.cfg).
16 #
17 # - fetch the desired collectd release file from https://collectd.org/files/
18 #   and save it in your ~/rpmbuild/SOURCES/ directory (or build your own out of
19 #   the git repository: ./build.sh && ./configure && make-dist-bz2)
20 #
21 # - copy this file in your ~/rpmbuild/SPECS/ directory. Make sure the
22 #   "Version:" tag matches the version from the tarball.
23 #
24 # - build the SRPM first:
25 #   mock -r centos-6-x86_64 --buildsrpm --spec ~/rpmbuild/SPECS/collectd.spec \
26 #     --sources ~/rpmbuild/SOURCES/
27 #
28 # - then build the RPMs:
29 #   mock -r centos-6-x86_64 --no-clean --rebuild \
30 #     /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
31 #
32 # - you can also optionally enable/disable plugins which are disabled/enabled
33 #   by default:
34 #   mock -r centos-6-x86_64 --no-clean --without=java --with=oracle --rebuild \
35 #     /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
36 #
37
38 %global _hardened_build 1
39 %{?perl_default_filter}
40
41 # plugins enabled by default
42 %define with_aggregation 0%{!?_without_aggregation:1}
43 %define with_amqp 0%{!?_without_amqp:1}
44 %define with_apache 0%{!?_without_apache:1}
45 %define with_apcups 0%{!?_without_apcups:1}
46 %define with_ascent 0%{!?_without_ascent:1}
47 %define with_battery 0%{!?_without_battery:1}
48 %define with_bind 0%{!?_without_bind:1}
49 %define with_ceph 0%{!?_without_ceph:1}
50 %define with_cgroups 0%{!?_without_cgroups:1}
51 %define with_chrony 0%{!?_without_chrony:1}
52 %define with_conntrack 0%{!?_without_conntrack:1}
53 %define with_contextswitch 0%{!?_without_contextswitch:1}
54 %define with_cpu 0%{!?_without_cpu:1}
55 %define with_cpufreq 0%{!?_without_cpufreq:1}
56 %define with_cpusleep 0%{!?_without_cpusleep:1}
57 %define with_csv 0%{!?_without_csv:1}
58 %define with_curl 0%{!?_without_curl:1}
59 %define with_curl_json 0%{!?_without_curl_json:1}
60 %define with_curl_xml 0%{!?_without_curl_xml:1}
61 %define with_dbi 0%{!?_without_dbi:1}
62 %define with_df 0%{!?_without_df:1}
63 %define with_disk 0%{!?_without_disk:1}
64 %define with_dns 0%{!?_without_dns:1}
65 %define with_drbd 0%{!?_without_drbd:1}
66 %define with_email 0%{!?_without_email:1}
67 %define with_entropy 0%{!?_without_entropy:1}
68 %define with_ethstat 0%{!?_without_ethstat:1}
69 %define with_exec 0%{!?_without_exec:1}
70 %define with_fhcount 0%{!?_without_fhcount:1}
71 %define with_filecount 0%{!?_without_filecount:1}
72 %define with_fscache 0%{!?_without_fscache:1}
73 %define with_gmond 0%{!?_without_gmond:1}
74 %define with_gps 0%{!?_without_gps:1}
75 %define with_hddtemp 0%{!?_without_hddtemp:1}
76 %define with_interface 0%{!?_without_interface:1}
77 %define with_ipc 0%{!?_without_ipc:1}
78 %define with_ipmi 0%{!?_without_ipmi:1}
79 %define with_iptables 0%{!?_without_iptables:1}
80 %define with_ipvs 0%{!?_without_ipvs:1}
81 %define with_irq 0%{!?_without_irq:1}
82 %define with_java 0%{!?_without_java:1}
83 %define with_load 0%{!?_without_load:1}
84 %define with_log_logstash 0%{!?_without_log_logstash:1}
85 %define with_logfile 0%{!?_without_logfile:1}
86 %define with_lua 0%{!?_without_lua:1}
87 %define with_lvm 0%{!?_without_lvm:1}
88 %define with_madwifi 0%{!?_without_madwifi:1}
89 %define with_mbmon 0%{!?_without_mbmon:1}
90 %define with_md 0%{!?_without_md:1}
91 %define with_memcachec 0%{!?_without_memcachec:1}
92 %define with_memcached 0%{!?_without_memcached:1}
93 %define with_memory 0%{!?_without_memory:1}
94 %define with_modbus 0%{!?_without_modbus:1}
95 %define with_mqtt 0%{!?_without_mqtt:1}
96 %define with_multimeter 0%{!?_without_multimeter:1}
97 %define with_mysql 0%{!?_without_mysql:1}
98 %define with_netlink 0%{!?_without_netlink:1}
99 %define with_network 0%{!?_without_network:1}
100 %define with_nfs 0%{!?_without_nfs:1}
101 %define with_nginx 0%{!?_without_nginx:1}
102 %define with_notify_desktop 0%{!?_without_notify_desktop:1}
103 %define with_notify_email 0%{!?_without_notify_email:1}
104 %define with_notify_nagios 0%{!?_without_notify_nagios:1}
105 %define with_ntpd 0%{!?_without_ntpd:1}
106 %define with_numa 0%{!?_without_numa:1}
107 %define with_nut 0%{!?_without_nut:1}
108 %define with_olsrd 0%{!?_without_olsrd:1}
109 %define with_openldap 0%{!?_without_openldap:1}
110 %define with_openvpn 0%{!?_without_openvpn:1}
111 %define with_perl 0%{!?_without_perl:1}
112 %define with_pinba 0%{!?_without_pinba:1}
113 %define with_ping 0%{!?_without_ping:1}
114 %define with_postgresql 0%{!?_without_postgresql:1}
115 %define with_powerdns 0%{!?_without_powerdns:1}
116 %define with_processes 0%{!?_without_processes:1}
117 %define with_protocols 0%{!?_without_protocols:1}
118 %define with_python 0%{!?_without_python:1}
119 %define with_redis 0%{!?_without_redis:1}
120 %define with_rrdcached 0%{!?_without_rrdcached:1}
121 %define with_rrdtool 0%{!?_without_rrdtool:1}
122 %define with_sensors 0%{!?_without_sensors:1}
123 %define with_serial 0%{!?_without_serial:1}
124 %define with_smart 0%{!?_without_smart:1}
125 %define with_snmp 0%{!?_without_snmp:1}
126 %define with_statsd 0%{!?_without_statsd:1}
127 %define with_swap 0%{!?_without_swap:1}
128 %define with_syslog 0%{!?_without_syslog:1}
129 %define with_table 0%{!?_without_table:1}
130 %define with_tail 0%{!?_without_tail:1}
131 %define with_tail_csv 0%{!?_without_tail_csv:1}
132 %define with_tcpconns 0%{!?_without_tcpconns:1}
133 %define with_teamspeak2 0%{!?_without_teamspeak2:1}
134 %define with_ted 0%{!?_without_ted:1}
135 %define with_thermal 0%{!?_without_thermal:1}
136 %define with_threshold 0%{!?_without_threshold:1}
137 %define with_turbostat 0%{!?_without_turbostat:1}
138 %define with_unixsock 0%{!?_without_unixsock:1}
139 %define with_uptime 0%{!?_without_uptime:1}
140 %define with_users 0%{!?_without_users:1}
141 %define with_uuid 0%{!?_without_uuid:1}
142 %define with_varnish 0%{!?_without_varnish:1}
143 %define with_virt 0%{!?_without_virt:1}
144 %define with_vmem 0%{!?_without_vmem:1}
145 %define with_vserver 0%{!?_without_vserver:1}
146 %define with_wireless 0%{!?_without_wireless:1}
147 %define with_write_graphite 0%{!?_without_write_graphite:1}
148 %define with_write_http 0%{!?_without_write_http:1}
149 %define with_write_log 0%{!?_without_write_log:1}
150 %define with_write_redis 0%{!?_without_write_redis:1}
151 %define with_write_riemann 0%{!?_without_write_riemann:1}
152 %define with_write_sensu 0%{!?_without_write_sensu:1}
153 %define with_write_tsdb 0%{!?_without_write_tsdb:1}
154 %define with_xmms 0%{!?_without_xmms:0%{?_has_xmms}}
155 %define with_zfs_arc 0%{!?_without_zfs_arc:1}
156 %define with_zookeeper 0%{!?_without_zookeeper:1}
157
158 # Plugins not built by default because of dependencies on libraries not
159 # available in RHEL or EPEL:
160
161 # plugin apple_sensors disabled, requires a Mac
162 %define with_apple_sensors 0%{!?_without_apple_sensors:0}
163 # plugin aquaero disabled, requires a libaquaero5
164 %define with_aquaero 0%{!?_without_aquaero:0}
165 # plugin barometer disabled, requires a libi2c
166 %define with_barometer 0%{!?_without_barometer:0}
167 # plugin grpc disabled, requires protobuf-compiler >= 3.0
168 %define with_grpc 0%{!?_without_grpc:0}
169 # plugin lpar disabled, requires AIX
170 %define with_lpar 0%{!?_without_lpar:0}
171 # plugin mic disabled, requires Mic
172 %define with_mic 0%{!?_without_mic:0}
173 # plugin netapp disabled, requires libnetapp
174 %define with_netapp 0%{!?_without_netapp:0}
175 # plugin onewire disabled, requires libowfs
176 %define with_onewire 0%{!?_without_onewire:0}
177 # plugin oracle disabled, requires Oracle
178 %define with_oracle 0%{!?_without_oracle:0}
179 # plugin oracle disabled, requires BSD
180 %define with_pf 0%{!?_without_pf:0}
181 # plugin routeros disabled, requires librouteros
182 %define with_routeros 0%{!?_without_routeros:0}
183 # plugin sigrok disabled, requires libsigrok
184 %define with_sigrok 0%{!?_without_sigrok:0}
185 # plugin tape disabled, requires libkstat
186 %define with_tape 0%{!?_without_tape:0}
187 # plugin tokyotyrant disabled, requires tcrdb.h
188 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
189 # plugin write_kafka disabled, requires librdkafka
190 %define with_write_kafka 0%{!?_without_write_kafka:0}
191 # plugin write_mongodb disabled, requires libmongoc
192 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
193 # plugin xencpu disabled, requires xen-devel from non-default repo
194 %define with_xencpu 0%{!?_without_xencpu:0}
195 # plugin zone disabled, requires Solaris
196 %define with_zone 0%{!?_without_zone:0}
197
198 # Plugins not buildable on RHEL < 6
199 %if 0%{?rhel} && 0%{?rhel} < 6
200 %define with_ceph 0
201 %define with_curl_json 0
202 %define with_log_logstash 0
203 %define with_dns 0
204 %define with_ethstat 0
205 %define with_gmond 0
206 %define with_iptables 0
207 %define with_ipvs 0
208 %define with_lvm 0
209 %define with_modbus 0
210 %define with_netlink 0
211 %define with_redis 0
212 %define with_smart 0
213 %define with_turbostat 0
214 %define with_write_redis 0
215 %define with_write_riemann 0
216 %endif
217
218 # Plugins not buildable on RHEL < 7
219 %if 0%{?rhel} && 0%{?rhel} < 7
220 %define with_cpusleep 0
221 %define with_gps 0
222 %define with_mqtt 0
223 %define with_redis 0
224 %define with_rrdcached 0
225 %define with_write_redis 0
226 %define with_write_riemann 0
227 %define with_xmms 0
228 %endif
229
230 Summary:        Statistics collection and monitoring daemon
231 Name:           collectd
232 Version:        5.6.1
233 Release:        4%{?dist}
234 URL:            https://collectd.org
235 Source:         https://collectd.org/files/%{name}-%{version}.tar.bz2
236 License:        GPLv2
237 Group:          System Environment/Daemons
238 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
239 BuildRequires:  libgcrypt-devel, kernel-headers, libtool-ltdl-devel, libcap-devel, which
240 Vendor:         collectd development team <collectd@verplant.org>
241
242 %if 0%{?fedora} || 0%{?rhel} >= 7
243 BuildRequires:          xfsprogs-devel
244 %{?systemd_requires}
245 BuildRequires:          systemd
246 %else
247 Requires(post):         chkconfig
248 Requires(preun):        chkconfig, initscripts
249 Requires(postun):       initscripts
250 %endif
251
252 %description
253 collectd is a small daemon which collects system information periodically and
254 provides mechanisms to monitor and store the values in a variety of ways. It
255 is written in C for performance. Since the daemon doesn't need to start up
256 every time it wants to update the values it's very fast and easy on the
257 system. Also, the statistics are very fine grained since the files are updated
258 every 10 seconds by default.
259
260 %if %{with_amqp}
261 %package amqp
262 Summary:        AMQP plugin for collectd
263 Group:          System Environment/Daemons
264 Requires:       %{name}%{?_isa} = %{version}-%{release}
265 BuildRequires:  librabbitmq-devel
266 %description amqp
267 The AMQP plugin transmits or receives values collected by collectd via the
268 Advanced Message Queuing Protocol (AMQP).
269 %endif
270
271 %if %{with_apache}
272 %package apache
273 Summary:        Apache plugin for collectd
274 Group:          System Environment/Daemons
275 Requires:       %{name}%{?_isa} = %{version}-%{release}
276 BuildRequires:  curl-devel
277 %description apache
278 This plugin collects data provided by Apache's `mod_status'.
279 %endif
280
281 %if %{with_aquaero}
282 %package aquaero
283 Summary:        aquaero plugin for collectd
284 Group:          System Environment/Daemons
285 Requires:       %{name}%{?_isa} = %{version}-%{release}
286 %description aquaero
287 Various sensors in the Aquaero 5 watercooling board made by Aquacomputer.
288 %endif
289
290 %if %{with_ascent}
291 %package ascent
292 Summary:        Ascent plugin for collectd
293 Group:          System Environment/Daemons
294 Requires:       %{name}%{?_isa} = %{version}-%{release}
295 BuildRequires:  libxml2-devel, curl-devel
296 %description ascent
297 The Ascent plugin reads and parses the statistics page of Ascent, a free and
298 open-source server software for the game World of Warcraft by Blizzard
299 Entertainment.
300 %endif
301
302 %if %{with_barometer}
303 %package barometer
304 Summary:       barometer plugin for collectd
305 Group:         System Environment/Daemons
306 Requires:      %{name}%{?_isa} = %{version}-%{release}
307 %description barometer
308 Collects pressure and temperature from digital barometers.
309 %endif
310
311 %if %{with_bind}
312 %package bind
313 Summary:        Bind plugin for collectd
314 Group:          System Environment/Daemons
315 Requires:       %{name}%{?_isa} = %{version}-%{release}
316 BuildRequires:  libxml2-devel, curl-devel
317 %description bind
318 The BIND plugin retrieves this information that's encoded in XML and provided
319 via HTTP and submits the values to collectd.
320 %endif
321
322 %if %{with_ceph}
323 %package ceph
324 Summary:       Ceph plugin for collectd
325 Group:         System Environment/Daemons
326 Requires:      %{name}%{?_isa} = %{version}-%{release}
327 BuildRequires: yajl-devel
328 %description ceph
329 Ceph plugin for collectd
330 %endif
331
332 %if %{with_chrony}
333 %package chrony
334 Summary:       Chrony plugin for collectd
335 Group:         System Environment/Daemons
336 Requires:      %{name}%{?_isa} = %{version}-%{release}
337 %description chrony
338 Chrony plugin for collectd
339 %endif
340
341 %if %{with_curl}
342 %package curl
343 Summary:        Curl plugin for collectd
344 Group:          System Environment/Daemons
345 Requires:       %{name}%{?_isa} = %{version}-%{release}
346 BuildRequires:  curl-devel
347 %description curl
348 The cURL plugin uses libcurl to read files and then parses them according to
349 the configuration.
350 %endif
351
352 %if %{with_curl_json}
353 %package curl_json
354 Summary:        Curl_json plugin for collectd
355 Group:          System Environment/Daemons
356 Requires:       %{name}%{?_isa} = %{version}-%{release}
357 BuildRequires:  curl-devel, yajl-devel
358 %description curl_json
359 The cURL-JSON plugin queries JavaScript Object Notation (JSON) data using the
360 cURL library and parses it according to the user's configuration.
361 %endif
362
363 %if %{with_curl_xml}
364 %package curl_xml
365 Summary:        Curl_xml plugin for collectd
366 Group:          System Environment/Daemons
367 Requires:       %{name}%{?_isa} = %{version}-%{release}
368 BuildRequires:  curl-devel, libxml2-devel
369 %description curl_xml
370 The cURL-XML plugin reads files using libcurl and parses it as Extensible
371 Markup Language (XML).
372 %endif
373
374 %if %{with_dbi}
375 %package dbi
376 Summary:        DBI plugin for collectd
377 Group:          System Environment/Daemons
378 Requires:       %{name}%{?_isa} = %{version}-%{release}
379 BuildRequires:  libdbi-devel
380 %description dbi
381 The DBI plugin uses libdbi, a database abstraction library, to execute SQL
382 statements on a database and read back the result.
383 %endif
384
385 %if %{with_disk}
386 %package disk
387 Summary:        disk plugin for collectd
388 Group:          System Environment/Daemons
389 Requires:       %{name}%{?_isa} = %{version}-%{release}
390 %{?_has_libudev:BuildRequires:  libudev-devel}
391 %description disk
392 The "disk" plugin collects information about the usage of physical disks and
393 logical disks (partitions).
394 %endif
395
396 %if %{with_dns}
397 %package dns
398 Summary:        DNS plugin for collectd
399 Group:          System Environment/Daemons
400 Requires:       %{name}%{?_isa} = %{version}-%{release}, libpcap >= 1.0
401 BuildRequires:  libpcap-devel >= 1.0
402 %description dns
403 The DNS plugin has a similar functionality to dnstop: It uses libpcap to get a
404 copy of all traffic from/to port UDP/53 (that's the DNS port), interprets the
405 packets and collects statistics of your DNS traffic.
406 %endif
407
408 %if %{with_email}
409 %package email
410 Summary:        Email plugin for collectd
411 Group:          System Environment/Daemons
412 Requires:       %{name}%{?_isa} = %{version}-%{release}, spamassassin
413 %description email
414 This plugin collects data provided by spamassassin.
415 %endif
416
417 %if %{with_gmond}
418 %package gmond
419 Summary:        Gmond plugin for collectd
420 Group:          System Environment/Daemons
421 Requires:       %{name}%{?_isa} = %{version}-%{release}
422 BuildRequires:  ganglia-devel
423 %description gmond
424 The gmond plugin subscribes to a Multicast group to receive data from gmond,
425 the client daemon of the Ganglia project.
426 %endif
427
428 %if %{with_gps}
429 %package gps
430 Summary:        GPS plugin for collectd
431 Group:          System Environment/Daemons
432 Requires:       %{name}%{?_isa} = %{version}-%{release}
433 BuildRequires:  gpsd-devel
434 %description gps
435 This plugin monitor gps related data through gpsd.
436 %endif
437
438 %if %{with_grpc}
439 %package grpc
440 Summary:        GRPC plugin for collectd
441 Group:          System Environment/Daemons
442 Requires:       %{name}%{?_isa} = %{version}-%{release}
443 BuildRequires:  protobuf-compiler
444 %description grpc
445 This plugin embeds a gRPC server into Collectd.
446 %endif
447
448 %if %{with_hddtemp}
449 %package hddtemp
450 Summary:        Hddtemp plugin for collectd
451 Group:          System Environment/Daemons
452 Requires:       %{name}%{?_isa} = %{version}-%{release}, hddtemp
453 %description hddtemp
454 The HDDTemp plugin collects the temperature of hard disks. The temperatures are
455 provided via SMART and queried by the external hddtemp daemon.
456 %endif
457
458 %if %{with_ipmi}
459 %package ipmi
460 Summary:        IPMI plugin for collectd
461 Group:          System Environment/Daemons
462 Requires:       %{name}%{?_isa} = %{version}-%{release}
463 BuildRequires:  OpenIPMI-devel
464 %description ipmi
465 The IPMI plugin uses the OpenIPMI library to read hardware sensors from servers
466 using the Intelligent Platform Management Interface (IPMI).
467 %endif
468
469 %if %{with_iptables}
470 %package iptables
471 Summary:        IPtables plugin for collectd
472 Group:          System Environment/Daemons
473 Requires:       %{name}%{?_isa} = %{version}-%{release}
474 BuildRequires:  iptables-devel
475 %description iptables
476 The IPtables plugin can gather statistics from your ip_tables based packet
477 filter (aka. firewall) for both the IPv4 and the IPv6 protocol. It can collect
478 the byte- and packet-counters of selected rules and submit them to collectd.
479 %endif
480
481 %if %{with_java}
482 %package java
483 Summary:        Java plugin for collectd
484 Group:          System Environment/Daemons
485 Requires:       %{name}%{?_isa} = %{version}-%{release}
486 BuildRequires:  java-devel >= 1.6, jpackage-utils >= 1.6
487 Requires:       java >= 1.6, jpackage-utils >= 1.6
488 %description java
489 This plugin for collectd allows plugins to be written in Java and executed
490 in an embedded JVM.
491 %endif
492
493 %if %{with_log_logstash}
494 %package log_logstash
495 Summary:       log_logstash plugin for collectd
496 Group:         System Environment/Daemons
497 Requires:      %{name}%{?_isa} = %{version}-%{release}
498 BuildRequires: yajl-devel
499 %description log_logstash
500 This plugin logs in logstash JSON format
501 %endif
502
503 %if %{with_lua}
504 %package lua
505 Summary:        Lua plugin for collectd
506 Group:          System Environment/Daemons
507 Requires:       %{name}%{?_isa} = %{version}-%{release}
508 BuildRequires:  lua-devel
509 %description lua
510 The Lua plugin embeds a Lua interpreter into collectd and exposes the
511 application programming interface (API) to Lua scripts.
512 %endif
513
514 %if %{with_lvm}
515 %package lvm
516 Summary:        LVM plugin for collectd
517 Group:          System Environment/Daemons
518 Requires:       %{name}%{?_isa} = %{version}-%{release}
519 BuildRequires:  lvm2-devel
520 %description lvm
521 This plugin collects size of “Logical Volumes” (LV) and “Volume Groups” (VG)
522 of Linux' “Logical Volume Manager” (LVM).
523 %endif
524
525 %if %{with_memcachec}
526 %package memcachec
527 Summary:        Memcachec plugin for collectd
528 Group:          System Environment/Daemons
529 Requires:       %{name}%{?_isa} = %{version}-%{release}
530 BuildRequires:  libmemcached-devel
531 %description memcachec
532 The Memcachec plugin uses libmemcached to read statistics from a Memcached
533 instance. Note that another plugin, named `memcached', exists and does a
534 similar job, without requiring the installation of libmemcached.
535 %endif
536
537 %if %{with_mic}
538 %package mic
539 Summary:        mic plugin for collectd
540 Group:          System Environment/Daemons
541 Requires:       %{name}%{?_isa} = %{version}-%{release}
542 %description mic
543 The mic plugin collects CPU usage, memory usage, temperatures and power
544 consumption from Intel Many Integrated Core (MIC) CPUs.
545 %endif
546
547 %if %{with_modbus}
548 %package modbus
549 Summary:       modbus plugin for collectd
550 Group:         System Environment/Daemons
551 Requires:      %{name}%{?_isa} = %{version}-%{release}
552 BuildRequires:  libmodbus-devel
553 %description modbus
554 The modbus plugin collects values from Modbus/TCP enabled devices
555 %endif
556
557 %if %{with_mysql}
558 %package mysql
559 Summary:        MySQL plugin for collectd
560 Group:          System Environment/Daemons
561 Requires:       %{name}%{?_isa} = %{version}-%{release}
562 BuildRequires:  mysql-devel
563 %description mysql
564 MySQL querying plugin. This plugin provides data of issued commands, called
565 handlers and database traffic.
566 %endif
567
568 %if %{with_mqtt}
569 %package mqtt
570 Summary:        mqtt plugin for collectd
571 Group:          System Environment/Daemons
572 Requires:       %{name}%{?_isa} = %{version}-%{release}
573 BuildRequires:  mosquitto-devel
574 %description mqtt
575 The MQTT plugin publishes and subscribes to MQTT topics.
576 %endif
577
578 %if %{with_netlink}
579 %package netlink
580 Summary:        netlink plugin for collectd
581 Group:          System Environment/Daemons
582 Requires:       %{name}%{?_isa} = %{version}-%{release}
583 BuildRequires:  libmnl-devel, iproute-devel
584 %description netlink
585 The netlink plugin collects detailed network interface and routing statistics.
586 %endif
587
588 %if %{with_nginx}
589 %package nginx
590 Summary:        Nginx plugin for collectd
591 Group:          System Environment/Daemons
592 Requires:       %{name}%{?_isa} = %{version}-%{release}
593 BuildRequires:  curl-devel
594 %description nginx
595 This plugin gets data provided by nginx.
596 %endif
597
598 %if %{with_notify_desktop}
599 %package notify_desktop
600 Summary:        Notify_desktop plugin for collectd
601 Group:          System Environment/Daemons
602 Requires:       %{name}%{?_isa} = %{version}-%{release}
603 BuildRequires:  libnotify-devel, gtk2-devel
604 %description notify_desktop
605 The Notify Desktop plugin uses libnotify to display notifications to the user
606 via the desktop notification specification, i. e. on an X display.
607 %endif
608
609 %if %{with_notify_email}
610 %package notify_email
611 Summary:        Notify_email plugin for collectd
612 Group:          System Environment/Daemons
613 Requires:       %{name}%{?_isa} = %{version}-%{release}
614 BuildRequires:  libesmtp-devel
615 %description notify_email
616 The Notify Email plugin uses libESMTP to send notifications to a configured
617 email address.
618 %endif
619
620 %if %{with_nut}
621 %package nut
622 Summary:        Nut plugin for collectd
623 Group:          System Environment/Daemons
624 Requires:       %{name}%{?_isa} = %{version}-%{release}
625 BuildRequires:  nut-devel
626 %description nut
627 This plugin for collectd provides Network UPS Tools support.
628 %endif
629
630 %if %{with_openldap}
631 %package openldap
632 Summary:       Openldap plugin for collectd
633 Group:         System Environment/Daemons
634 Requires:      %{name}%{?_isa} = %{version}-%{release}
635 BuildRequires: openldap-devel
636 %description openldap
637 This plugin reads monitoring information from OpenLDAP's cn=Monitor subtree.
638 %endif
639
640 %if %{with_perl}
641 %package perl
642 Summary:        Perl plugin for collectd
643 Group:          System Environment/Daemons
644 Requires:       %{name}%{?_isa} = %{version}-%{release}
645 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
646         %if 0%{?rhel} && 0%{?rhel} < 6
647 BuildRequires:  perl
648         %else
649 BuildRequires:  perl-ExtUtils-Embed
650         %endif
651 %description perl
652 The Perl plugin embeds a Perl interpreter into collectd and exposes the
653 application programming interface (API) to Perl-scripts.
654 %endif
655
656 %if %{with_pinba}
657 %package pinba
658 Summary:        Pinba plugin for collectd
659 Group:          System Environment/Daemons
660 Requires:       %{name}%{?_isa} = %{version}-%{release}
661 BuildRequires:  protobuf-c-devel
662 %description pinba
663 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
664 extension for PHP.
665 %endif
666
667 %if %{with_ping}
668 %package ping
669 Summary:        Ping plugin for collectd
670 Group:          System Environment/Daemons
671 Requires:       %{name}%{?_isa} = %{version}-%{release}
672 BuildRequires:  liboping-devel
673 %description ping
674 The Ping plugin measures network latency using ICMP “echo requests”, usually
675 known as “ping”.
676 %endif
677
678 %if %{with_postgresql}
679 %package postgresql
680 Summary:        PostgreSQL plugin for collectd
681 Group:          System Environment/Daemons
682 Requires:       %{name}%{?_isa} = %{version}-%{release}
683 BuildRequires:  postgresql-devel
684 %description postgresql
685 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
686 database.
687 %endif
688
689 %if %{with_python}
690 %package python
691 Summary:        Python plugin for collectd
692 Group:          System Environment/Daemons
693 Requires:       %{name}%{?_isa} = %{version}-%{release}
694         %if 0%{?rhel} && 0%{?rhel} < 6
695 BuildRequires: python26-devel
696         %else
697 BuildRequires: python-devel
698         %endif
699 %description python
700 The Python plugin embeds a Python interpreter into collectd and exposes the
701 application programming interface (API) to Python-scripts.
702 %endif
703
704 %if %{with_redis}
705 %package redis
706 Summary:        Redis plugin for collectd
707 Group:          System Environment/Daemons
708 Requires:       %{name}%{?_isa} = %{version}-%{release}
709 BuildRequires:  hiredis-devel
710 %description redis
711 The Redis plugin connects to one or more instances of Redis, a key-value store,
712 and collects usage information using the hiredis library.
713 %endif
714
715 %if %{with_rrdcached}
716 %package rrdcached
717 Summary:        RRDCached plugin for collectd
718 Group:          System Environment/Daemons
719 Requires:       %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
720 BuildRequires:  rrdtool-devel
721 %description rrdcached
722 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
723 submits updates for RRD files to that daemon.
724 %endif
725
726 %if %{with_rrdtool}
727 %package rrdtool
728 Summary:        RRDtool plugin for collectd
729 Group:          System Environment/Daemons
730 Requires:       %{name}%{?_isa} = %{version}-%{release}
731 BuildRequires:  rrdtool-devel
732 %description rrdtool
733 The RRDtool plugin writes values to RRD-files using librrd.
734 %endif
735
736 %if %{with_sensors}
737 %package sensors
738 Summary:        Sensors plugin for collectd
739 Group:          System Environment/Daemons
740 Requires:       %{name}%{?_isa} = %{version}-%{release}
741 BuildRequires:  lm_sensors-devel
742 %description sensors
743 This plugin for collectd provides querying of sensors supported by lm_sensors.
744 %endif
745
746 %if %{with_sigrok}
747 %package sigrok
748 Summary:        sigrok plugin for collectd
749 Group:          System Environment/Daemons
750 Requires:       %{name}%{?_isa} = %{version}-%{release}
751 %description sigrok
752 Uses libsigrok as a backend, allowing any sigrok-supported device to have its
753 measurements fed to collectd. This includes multimeters, sound level meters,
754 thermometers, and much more.
755 %endif
756
757 %if %{with_smart}
758 %package smart
759 Summary:       SMART plugin for collectd
760 Group:         System Environment/Daemons
761 Requires:      %{name}%{?_isa} = %{version}-%{release}
762 BuildRequires: libatasmart-devel
763 %description smart
764 Collect SMART statistics, notably load cycle count, temperature and bad
765 sectors.
766 %endif
767
768 %if %{with_snmp}
769 %package snmp
770 Summary:        SNMP plugin for collectd
771 Group:          System Environment/Daemons
772 Requires:       %{name}%{?_isa} = %{version}-%{release}
773 BuildRequires:  net-snmp-devel
774 %description snmp
775 This plugin for collectd allows querying of network equipment using SNMP.
776 %endif
777
778 %if %{with_varnish}
779 %package varnish
780 Summary:        Varnish plugin for collectd
781 Group:          System Environment/Daemons
782 Requires:       %{name}%{?_isa} = %{version}-%{release}
783 BuildRequires:  varnish-libs-devel
784 %description varnish
785 The Varnish plugin collects information about Varnish, an HTTP accelerator.
786 %endif
787
788 %if %{with_virt}
789 %package virt
790 Summary:        Virt plugin for collectd
791 Group:          System Environment/Daemons
792 Requires:       %{name}%{?_isa} = %{version}-%{release}
793 BuildRequires:  libvirt-devel
794 %description virt
795 This plugin collects information from virtualized guests.
796 %endif
797
798 %if %{with_write_http}
799 %package write_http
800 Summary:        Write-HTTP plugin for collectd
801 Group:          System Environment/Daemons
802 Requires:       %{name}%{?_isa} = %{version}-%{release}
803 BuildRequires:  curl-devel
804 %description write_http
805 The Write-HTTP plugin sends the values collected by collectd to a web-server
806 using HTTP POST requests.
807 %endif
808
809 %if %{with_write_kafka}
810 %package write_kafka
811 Summary:       Write-kafka plugin for collectd
812 Group:         System Environment/Daemons
813 Requires:      %{name}%{?_isa} = %{version}-%{release}
814 BuildRequires: librdkafka-devel
815 %description write_kafka
816 The write_kafka plugin sends values to kafka, a distributed messaging system.
817 %endif
818
819 %if %{with_write_redis}
820 %package write_redis
821 Summary:        Write-Redis plugin for collectd
822 Group:          System Environment/Daemons
823 Requires:       %{name}%{?_isa} = %{version}-%{release}
824 BuildRequires:  hiredis-devel
825 %description write_redis
826 The Write Redis plugin stores values in Redis, a “data structures server”.
827 %endif
828
829 %if %{with_write_riemann}
830 %package write_riemann
831 Summary:        riemann plugin for collectd
832 Group:          System Environment/Daemons
833 Requires:       %{name}%{?_isa} = %{version}-%{release}
834 BuildRequires:  riemann-c-client-devel >= 1.6
835 %description write_riemann
836 The riemann plugin submits values to Riemann, an event stream processor.
837 %endif
838
839 %if %{with_xencpu}
840 %package xencpu
841 Summary:        xencpu plugin for collectd
842 Group:          System Environment/Daemons
843 Requires:       %{name}%{?_isa} = %{version}-%{release}
844 BuildRequires:  xen-devel
845 %description xencpu
846 The xencpu plugin collects CPU statistics from Xen.
847 %endif
848
849 %if %{with_xmms}
850 %package xmms
851 Summary:        XMMS plugin for collectd
852 Group:          System Environment/Daemons
853 Requires:       %{name}%{?_isa} = %{version}-%{release}
854 BuildRequires:  xmms-devel
855 %description xmms
856 The xmms plugin collects information from the XMMS music player.
857 %endif
858
859 %package collection3
860 Summary:        Web-based viewer for collectd
861 Group:          System Environment/Daemons
862 Requires:       %{name}%{?_isa} = %{version}-%{release}
863 Requires: httpd
864 %description collection3
865 collection3 is a graphing front-end for the RRD files created by and filled
866 with collectd. It is written in Perl and should be run as an CGI-script.
867 Graphs are generated on-the-fly, so no cron job or similar is necessary.
868
869 %package php-collection
870 Summary:        collect php webfrontent
871 Group:          System Environment/Daemons
872 Requires:       collectd = %{version}-%{release}
873 Requires:       httpd
874 Requires:       php
875 Requires:       php-rrdtool
876 %description php-collection
877 PHP graphing frontend for RRD files created by and filled with collectd.
878
879 %package contrib
880 Summary:        Contrib files for collectd
881 Group:          System Environment/Daemons
882 Requires:       %{name}%{?_isa} = %{version}-%{release}
883 %description contrib
884 All the files found under contrib/ in the source tree are bundled in this
885 package.
886
887 %package -n libcollectdclient
888 Summary:        Collectd client library
889 Group:          System Environment/Daemons
890 %description -n libcollectdclient
891 Collectd client library
892
893 %package -n libcollectdclient-devel
894 Summary:        Development files for libcollectdclient
895 Group:          System Environment/Daemons
896 Requires:       pkgconfig
897 Requires:       libcollectdclient%{?_isa} = %{version}-%{release}
898 %description -n libcollectdclient-devel
899 Development files for libcollectdclient
900
901 %package -n collectd-utils
902 Summary:        Collectd utilities
903 Group:          System Environment/Daemons
904 Requires:       libcollectdclient%{?_isa} = %{version}-%{release}
905 Requires:       collectd%{?_isa} = %{version}-%{release}
906 %description -n collectd-utils
907 Collectd utilities
908
909 %prep
910 %setup -q
911
912 %build
913 %if %{with_aggregation}
914 %define _with_aggregation --enable-aggregation
915 %else
916 %define _with_aggregation --disable-aggregation
917 %endif
918
919 %if %{with_amqp}
920 %define _with_amqp --enable-amqp
921 %else
922 %define _with_amqp --disable-amqp
923 %endif
924
925 %if %{with_apache}
926 %define _with_apache --enable-apache
927 %else
928 %define _with_apache --disable-apache
929 %endif
930
931 %if %{with_apcups}
932 %define _with_apcups --enable-apcups
933 %else
934 %define _with_apcups --disable-apcups
935 %endif
936
937 %if %{with_apple_sensors}
938 %define _with_apple_sensors --enable-apple_sensors
939 %else
940 %define _with_apple_sensors --disable-apple_sensors
941 %endif
942
943 %if %{with_aquaero}
944 %define _with_aquaero --enable-aquaero
945 %else
946 %define _with_aquaero --disable-aquaero
947 %endif
948
949 %if %{with_ascent}
950 %define _with_ascent --enable-ascent
951 %else
952 %define _with_ascent --disable-ascent
953 %endif
954
955 %if %{with_barometer}
956 %define _with_barometer --enable-barometer
957 %else
958 %define _with_barometer --disable-barometer
959 %endif
960
961 %if %{with_battery}
962 %define _with_battery --enable-battery
963 %else
964 %define _with_battery --disable-battery
965 %endif
966
967 %if %{with_bind}
968 %define _with_bind --enable-bind
969 %else
970 %define _with_bind --disable-bind
971 %endif
972
973 %if %{with_cgroups}
974 %define _with_cgroups --enable-cgroups
975 %else
976 %define _with_cgroups --disable-cgroups
977 %endif
978
979 %if %{with_chrony}
980 %define _with_chrony --enable-chrony
981 %else
982 %define _with_chrony --disable-chrony
983 %endif
984
985 %if %{with_conntrack}
986 %define _with_conntrack --enable-conntrack
987 %else
988 %define _with_conntrack --disable-conntrack
989 %endif
990
991 %if %{with_contextswitch}
992 %define _with_contextswitch --enable-contextswitch
993 %else
994 %define _with_contextswitch --disable-contextswitch
995 %endif
996
997 %if %{with_cpu}
998 %define _with_cpu --enable-cpu
999 %else
1000 %define _with_cpu --disable-cpu
1001 %endif
1002
1003 %if %{with_cpufreq}
1004 %define _with_cpufreq --enable-cpufreq
1005 %else
1006 %define _with_cpufreq --disable-cpufreq
1007 %endif
1008
1009 %if %{with_cpusleep}
1010 %define _with_cpusleep --enable-cpusleep
1011 %else
1012 %define _with_cpusleep --disable-cpusleep
1013 %endif
1014
1015 %if %{with_csv}
1016 %define _with_csv --enable-csv
1017 %else
1018 %define _with_csv --disable-csv
1019 %endif
1020
1021 %if %{with_ceph}
1022 %define _with_ceph --enable-ceph
1023 %else
1024 %define _with_ceph --disable-ceph
1025 %endif
1026
1027 %if %{with_curl}
1028 %define _with_curl --enable-curl
1029 %else
1030 %define _with_curl --disable-curl
1031 %endif
1032
1033 %if %{with_curl_json}
1034 %define _with_curl_json --enable-curl_json
1035 %else
1036 %define _with_curl_json --disable-curl_json
1037 %endif
1038
1039 %if %{with_curl_xml}
1040 %define _with_curl_xml --enable-curl_xml
1041 %else
1042 %define _with_curl_xml --disable-curl_xml
1043 %endif
1044
1045 %if %{with_dbi}
1046 %define _with_dbi --enable-dbi
1047 %else
1048 %define _with_dbi --disable-dbi
1049 %endif
1050
1051 %if %{with_df}
1052 %define _with_df --enable-df
1053 %else
1054 %define _with_df --disable-df
1055 %endif
1056
1057 %if %{with_disk}
1058 %define _with_disk --enable-disk
1059 %else
1060 %define _with_disk --disable-disk
1061 %endif
1062
1063 %if %{with_dns}
1064 %define _with_dns --enable-dns
1065 %else
1066 %define _with_dns --disable-dns
1067 %endif
1068
1069 %if %{with_drbd}
1070 %define _with_drbd --enable-drbd
1071 %else
1072 %define _with_drbd --disable-drbd
1073 %endif
1074
1075 %if %{with_email}
1076 %define _with_email --enable-email
1077 %else
1078 %define _with_email --disable-email
1079 %endif
1080
1081 %if %{with_entropy}
1082 %define _with_entropy --enable-entropy
1083 %else
1084 %define _with_entropy --disable-entropy
1085 %endif
1086
1087 %if %{with_ethstat}
1088 %define _with_ethstat --enable-ethstat
1089 %else
1090 %define _with_ethstat --disable-ethstat
1091 %endif
1092
1093 %if %{with_exec}
1094 %define _with_exec --enable-exec
1095 %else
1096 %define _with_exec --disable-exec
1097 %endif
1098
1099 %if %{with_fhcount}
1100 %define _with_fhcount --enable-fhcount
1101 %else
1102 %define _with_fhcount --disable-fhcount
1103 %endif
1104
1105 %if %{with_filecount}
1106 %define _with_filecount --enable-filecount
1107 %else
1108 %define _with_filecount --disable-filecount
1109 %endif
1110
1111 %if %{with_fscache}
1112 %define _with_fscache --enable-fscache
1113 %else
1114 %define _with_fscache --disable-fscache
1115 %endif
1116
1117 %if %{with_gmond}
1118 %define _with_gmond --enable-gmond
1119 %else
1120 %define _with_gmond --disable-gmond
1121 %endif
1122
1123 %if %{with_gps}
1124 %define _with_gps --enable-gps
1125 %else
1126 %define _with_gps --disable-gps
1127 %endif
1128
1129 %if %{with_grpc}
1130 %define _with_grpc --enable-grpc
1131 %else
1132 %define _with_grpc --disable-grpc
1133 %endif
1134
1135 %if %{with_hddtemp}
1136 %define _with_hddtemp --enable-hddtemp
1137 %else
1138 %define _with_hddtemp --disable-hddtemp
1139 %endif
1140
1141 %if %{with_interface}
1142 %define _with_interface --enable-interface
1143 %else
1144 %define _with_interface --disable-interface
1145 %endif
1146
1147 %if %{with_ipc}
1148 %define _with_ipc --enable-ipc
1149 %else
1150 %define _with_ipc --disable-ipc
1151 %endif
1152
1153 %if %{with_ipmi}
1154 %define _with_ipmi --enable-ipmi
1155 %else
1156 %define _with_ipmi --disable-ipmi
1157 %endif
1158
1159 %if %{with_iptables}
1160 %define _with_iptables --enable-iptables
1161 %else
1162 %define _with_iptables --disable-iptables
1163 %endif
1164
1165 %if %{with_ipvs}
1166 %define _with_ipvs --enable-ipvs
1167 %else
1168 %define _with_ipvs --disable-ipvs
1169 %endif
1170
1171 %if %{with_irq}
1172 %define _with_irq --enable-irq
1173 %else
1174 %define _with_irq --disable-irq
1175 %endif
1176
1177 %if %{with_java}
1178 %define _with_java --enable-java --with-java=%{java_home}/
1179 %else
1180 %define _with_java --disable-java
1181 %endif
1182
1183 %if %{with_virt}
1184 %define _with_virt --enable-virt
1185 %else
1186 %define _with_virt --disable-virt
1187 %endif
1188
1189 %if %{with_load}
1190 %define _with_load --enable-load
1191 %else
1192 %define _with_load --disable-load
1193 %endif
1194
1195 %if %{with_logfile}
1196 %define _with_logfile --enable-logfile
1197 %else
1198 %define _with_logfile --disable-logfile
1199 %endif
1200
1201 %if %{with_log_logstash}
1202 %define _with_log_logstash --enable-log_logstash
1203 %else
1204 %define _with_log_logstash --disable-log_logstash
1205 %endif
1206
1207 %if %{with_lpar}
1208 %define _with_lpar --enable-lpar
1209 %else
1210 %define _with_lpar --disable-lpar
1211 %endif
1212
1213 %if %{with_lua}
1214 %define _with_lua --enable-lua
1215 %else
1216 %define _with_lua --disable-lua
1217 %endif
1218
1219 %if %{with_lvm}
1220 %define _with_lvm --enable-lvm
1221 %else
1222 %define _with_lvm --disable-lvm
1223 %endif
1224
1225 %if %{with_madwifi}
1226 %define _with_madwifi --enable-madwifi
1227 %else
1228 %define _with_madwifi --disable-madwifi
1229 %endif
1230
1231 %if %{with_mbmon}
1232 %define _with_mbmon --enable-mbmon
1233 %else
1234 %define _with_mbmon --disable-mbmon
1235 %endif
1236
1237 %if %{with_md}
1238 %define _with_md --enable-md
1239 %else
1240 %define _with_md --disable-md
1241 %endif
1242
1243 %if %{with_memcachec}
1244 %define _with_memcachec --enable-memcachec
1245 %else
1246 %define _with_memcachec --disable-memcachec
1247 %endif
1248
1249 %if %{with_memcached}
1250 %define _with_memcached --enable-memcached
1251 %else
1252 %define _with_memcached --disable-memcached
1253 %endif
1254
1255 %if %{with_memory}
1256 %define _with_memory --enable-memory
1257 %else
1258 %define _with_memory --disable-memory
1259 %endif
1260
1261 %if %{with_mic}
1262 %define _with_mic --enable-mic
1263 %else
1264 %define _with_mic --disable-mic
1265 %endif
1266
1267 %if %{with_modbus}
1268 %define _with_modbus --enable-modbus
1269 %else
1270 %define _with_modbus --disable-modbus
1271 %endif
1272
1273 %if %{with_multimeter}
1274 %define _with_multimeter --enable-multimeter
1275 %else
1276 %define _with_multimeter --disable-multimeter
1277 %endif
1278
1279 %if %{with_mqtt}
1280 %define _with_mqtt --enable-mqtt
1281 %else
1282 %define _with_mqtt --disable-mqtt
1283 %endif
1284
1285 %if %{with_mysql}
1286 %define _with_mysql --enable-mysql
1287 %else
1288 %define _with_mysql --disable-mysql
1289 %endif
1290
1291 %if %{with_netapp}
1292 %define _with_netapp --enable-netapp
1293 %else
1294 %define _with_netapp --disable-netapp
1295 %endif
1296
1297 %if %{with_netlink}
1298 %define _with_netlink --enable-netlink
1299 %else
1300 %define _with_netlink --disable-netlink
1301 %endif
1302
1303 %if %{with_network}
1304 %define _with_network --enable-network
1305 %else
1306 %define _with_network --disable-network
1307 %endif
1308
1309 %if %{with_nfs}
1310 %define _with_nfs --enable-nfs
1311 %else
1312 %define _with_nfs --disable-nfs
1313 %endif
1314
1315 %if %{with_nginx}
1316 %define _with_nginx --enable-nginx
1317 %else
1318 %define _with_nginx --disable-nginx
1319 %endif
1320
1321 %if %{with_notify_desktop}
1322 %define _with_notify_desktop --enable-notify_desktop
1323 %else
1324 %define _with_notify_desktop --disable-notify_desktop
1325 %endif
1326
1327 %if %{with_notify_email}
1328 %define _with_notify_email --enable-notify_email
1329 %else
1330 %define _with_notify_email --disable-notify_email
1331 %endif
1332
1333 %if %{with_notify_nagios}
1334 %define _with_notify_nagios --enable-notify_nagios
1335 %else
1336 %define _with_notify_nagios --disable-notify_nagios
1337 %endif
1338
1339 %if %{with_ntpd}
1340 %define _with_ntpd --enable-ntpd
1341 %else
1342 %define _with_ntpd --disable-ntpd
1343 %endif
1344
1345 %if %{with_numa}
1346 %define _with_numa --enable-numa
1347 %else
1348 %define _with_numa --disable-numa
1349 %endif
1350
1351 %if %{with_nut}
1352 %define _with_nut --enable-nut
1353 %else
1354 %define _with_nut --disable-nut
1355 %endif
1356
1357 %if %{with_olsrd}
1358 %define _with_olsrd --enable-olsrd
1359 %else
1360 %define _with_olsrd --disable-olsrd
1361 %endif
1362
1363 %if %{with_onewire}
1364 %define _with_onewire --enable-onewire
1365 %else
1366 %define _with_onewire --disable-onewire
1367 %endif
1368
1369 %if %{with_openldap}
1370 %define _with_openldap --enable-openldap
1371 %else
1372 %define _with_openldap --disable-openldap
1373 %endif
1374
1375 %if %{with_openvpn}
1376 %define _with_openvpn --enable-openvpn
1377 %else
1378 %define _with_openvpn --disable-openvpn
1379 %endif
1380
1381 %if %{with_oracle}
1382 %define _with_oracle --enable-oracle
1383 %else
1384 %define _with_oracle --disable-oracle
1385 %endif
1386
1387 %if %{with_perl}
1388 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1389 %else
1390 %define _with_perl --disable-perl
1391 %endif
1392
1393 %if %{with_pf}
1394 %define _with_pf --enable-pf
1395 %else
1396 %define _with_pf --disable-pf
1397 %endif
1398
1399 %if %{with_pinba}
1400 %define _with_pinba --enable-pinba
1401 %else
1402 %define _with_pinba --disable-pinba
1403 %endif
1404
1405 %if %{with_ping}
1406 %define _with_ping --enable-ping
1407 %else
1408 %define _with_ping --disable-ping
1409 %endif
1410
1411 %if %{with_postgresql}
1412 %define _with_postgresql --enable-postgresql
1413 %else
1414 %define _with_postgresql --disable-postgresql
1415 %endif
1416
1417 %if %{with_powerdns}
1418 %define _with_powerdns --enable-powerdns
1419 %else
1420 %define _with_powerdns --disable-powerdns
1421 %endif
1422
1423 %if %{with_processes}
1424 %define _with_processes --enable-processes
1425 %else
1426 %define _with_processes --disable-processes
1427 %endif
1428
1429 %if %{with_protocols}
1430 %define _with_protocols --enable-protocols
1431 %else
1432 %define _with_protocols --disable-protocols
1433 %endif
1434
1435 %if %{with_python}
1436         %if 0%{?rhel} && 0%{?rhel} < 6
1437 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1438 %define _python_config PYTHON_CONFIG="%{_bindir}/python2.6-config"
1439         %else
1440 %define _with_python --enable-python
1441         %endif
1442 %else
1443 %define _with_python --disable-python
1444 %endif
1445
1446 %if %{with_redis}
1447 %define _with_redis --enable-redis
1448 %else
1449 %define _with_redis --disable-redis
1450 %endif
1451
1452 %if %{with_routeros}
1453 %define _with_routeros --enable-routeros
1454 %else
1455 %define _with_routeros --disable-routeros
1456 %endif
1457
1458 %if %{with_rrdcached}
1459 %define _with_rrdcached --enable-rrdcached
1460 %else
1461 %define _with_rrdcached --disable-rrdcached
1462 %endif
1463
1464 %if %{with_rrdtool}
1465 %define _with_rrdtool --enable-rrdtool
1466 %else
1467 %define _with_rrdtool --disable-rrdtool
1468 %endif
1469
1470 %if %{with_sensors}
1471 %define _with_sensors --enable-sensors
1472 %else
1473 %define _with_sensors --disable-sensors
1474 %endif
1475
1476 %if %{with_serial}
1477 %define _with_serial --enable-serial
1478 %else
1479 %define _with_serial --disable-serial
1480 %endif
1481
1482 %if %{with_sigrok}
1483 %define _with_sigrok --enable-sigrok
1484 %else
1485 %define _with_sigrok --disable-sigrok
1486 %endif
1487
1488 %if %{with_smart}
1489 %define _with_smart --enable-smart
1490 %else
1491 %define _with_smart --disable-smart
1492 %endif
1493
1494 %if %{with_snmp}
1495 %define _with_snmp --enable-snmp
1496 %else
1497 %define _with_snmp --disable-snmp
1498 %endif
1499
1500 %if %{with_statsd}
1501 %define _with_statsd --enable-statsd
1502 %else
1503 %define _with_statsd --disable-statsd
1504 %endif
1505
1506 %if %{with_swap}
1507 %define _with_swap --enable-swap
1508 %else
1509 %define _with_swap --disable-swap
1510 %endif
1511
1512 %if %{with_syslog}
1513 %define _with_syslog --enable-syslog
1514 %else
1515 %define _with_syslog --disable-syslog
1516 %endif
1517
1518 %if %{with_table}
1519 %define _with_table --enable-table
1520 %else
1521 %define _with_table --disable-table
1522 %endif
1523
1524 %if %{with_tail}
1525 %define _with_tail --enable-tail
1526 %else
1527 %define _with_tail --disable-tail
1528 %endif
1529
1530 %if %{with_tail_csv}
1531 %define _with_tail_csv --enable-tail_csv
1532 %else
1533 %define _with_tail_csv --disable-tail_csv
1534 %endif
1535
1536 %if %{with_tape}
1537 %define _with_tape --enable-tape
1538 %else
1539 %define _with_tape --disable-tape
1540 %endif
1541
1542 %if %{with_tcpconns}
1543 %define _with_tcpconns --enable-tcpconns
1544 %else
1545 %define _with_tcpconns --disable-tcpconns
1546 %endif
1547
1548 %if %{with_teamspeak2}
1549 %define _with_teamspeak2 --enable-teamspeak2
1550 %else
1551 %define _with_teamspeak2 --disable-teamspeak2
1552 %endif
1553
1554 %if %{with_ted}
1555 %define _with_ted --enable-ted
1556 %else
1557 %define _with_ted --disable-ted
1558 %endif
1559
1560 %if %{with_thermal}
1561 %define _with_thermal --enable-thermal
1562 %else
1563 %define _with_thermal --disable-thermal
1564 %endif
1565
1566 %if %{with_threshold}
1567 %define _with_threshold --enable-threshold
1568 %else
1569 %define _with_threshold --disable-threshold
1570 %endif
1571
1572 %if %{with_tokyotyrant}
1573 %define _with_tokyotyrant --enable-tokyotyrant
1574 %else
1575 %define _with_tokyotyrant --disable-tokyotyrant
1576 %endif
1577
1578 %if %{with_turbostat}
1579 %define _with_turbostat --enable-turbostat
1580 %else
1581 %define _with_turbostat --disable-turbostat
1582 %endif
1583
1584 %if %{with_unixsock}
1585 %define _with_unixsock --enable-unixsock
1586 %else
1587 %define _with_unixsock --disable-unixsock
1588 %endif
1589
1590 %if %{with_uptime}
1591 %define _with_uptime --enable-uptime
1592 %else
1593 %define _with_uptime --disable-uptime
1594 %endif
1595
1596 %if %{with_users}
1597 %define _with_users --enable-users
1598 %else
1599 %define _with_users --disable-users
1600 %endif
1601
1602 %if %{with_uuid}
1603 %define _with_uuid --enable-uuid
1604 %else
1605 %define _with_uuid --disable-uuid
1606 %endif
1607
1608 %if %{with_varnish}
1609 %define _with_varnish --enable-varnish
1610 %else
1611 %define _with_varnish --disable-varnish
1612 %endif
1613
1614 %if %{with_vmem}
1615 %define _with_vmem --enable-vmem
1616 %else
1617 %define _with_vmem --disable-vmem
1618 %endif
1619
1620 %if %{with_vserver}
1621 %define _with_vserver --enable-vserver
1622 %else
1623 %define _with_vserver --disable-vserver
1624 %endif
1625
1626 %if %{with_wireless}
1627 %define _with_wireless --enable-wireless
1628 %else
1629 %define _with_wireless --disable-wireless
1630 %endif
1631
1632 %if %{with_write_graphite}
1633 %define _with_write_graphite --enable-write_graphite
1634 %else
1635 %define _with_write_graphite --disable-write_graphite
1636 %endif
1637
1638 %if %{with_write_http}
1639 %define _with_write_http --enable-write_http
1640 %else
1641 %define _with_write_http --disable-write_http
1642 %endif
1643
1644 %if %{with_write_kafka}
1645 %define _with_write_kafka --enable-write_kafka
1646 %else
1647 %define _with_write_kafka --disable-write_kafka
1648 %endif
1649
1650 %if %{with_write_log}
1651 %define _with_write_log --enable-write_log
1652 %else
1653 %define _with_write_log --disable-write_log
1654 %endif
1655
1656 %if %{with_write_mongodb}
1657 %define _with_write_mongodb --enable-write_mongodb
1658 %else
1659 %define _with_write_mongodb --disable-write_mongodb
1660 %endif
1661
1662 %if %{with_write_redis}
1663 %define _with_write_redis --enable-write_redis
1664 %else
1665 %define _with_write_redis --disable-write_redis
1666 %endif
1667
1668 %if %{with_write_riemann}
1669 %define _with_write_riemann --enable-write_riemann
1670 %else
1671 %define _with_write_riemann --disable-write_riemann
1672 %endif
1673
1674 %if %{with_write_sensu}
1675 %define _with_write_sensu --enable-write_sensu
1676 %else
1677 %define _with_write_sensu --disable-write_sensu
1678 %endif
1679
1680 %if %{with_write_tsdb}
1681 %define _with_write_tsdb --enable-write_tsdb
1682 %else
1683 %define _with_write_tsdb --disable-write_tsdb
1684 %endif
1685
1686 %if %{with_xencpu}
1687 %define _with_xencpu --enable-xencpu
1688 %else
1689 %define _with_xencpu --disable-xencpu
1690 %endif
1691
1692 %if %{with_xmms}
1693 %define _with_xmms --enable-xmms
1694 %else
1695 %define _with_xmms --disable-xmms
1696 %endif
1697
1698 %if %{with_zfs_arc}
1699 %define _with_zfs_arc --enable-zfs_arc
1700 %else
1701 %define _with_zfs_arc --disable-zfs_arc
1702 %endif
1703
1704 %if %{with_zone}
1705 %define _with_zone --enable-zone
1706 %else
1707 %define _with_zone --disable-zone
1708 %endif
1709
1710 %if %{with_zookeeper}
1711 %define _with_zookeeper --enable-zookeeper
1712 %else
1713 %define _with_zookeeper --disable-zookeeper
1714 %endif
1715
1716 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1717         %{?_python_config} \
1718         --disable-static \
1719         --without-included-ltdl \
1720         --enable-all-plugins=yes \
1721         --enable-match_empty_counter \
1722         --enable-match_hashed \
1723         --enable-match_regex \
1724         --enable-match_timediff \
1725         --enable-match_value \
1726         --enable-target_notification \
1727         --enable-target_replace \
1728         --enable-target_scale \
1729         --enable-target_set \
1730         --enable-target_v5upgrade \
1731         %{?_with_aggregation} \
1732         %{?_with_amqp} \
1733         %{?_with_apache} \
1734         %{?_with_apcups} \
1735         %{?_with_apple_sensors} \
1736         %{?_with_aquaero} \
1737         %{?_with_ascent} \
1738         %{?_with_barometer} \
1739         %{?_with_battery} \
1740         %{?_with_bind} \
1741         %{?_with_ceph} \
1742         %{?_with_cgroups} \
1743         %{?_with_chrony} \
1744         %{?_with_conntrack} \
1745         %{?_with_contextswitch} \
1746         %{?_with_cpufreq} \
1747         %{?_with_cpusleep} \
1748         %{?_with_cpu} \
1749         %{?_with_csv} \
1750         %{?_with_curl_json} \
1751         %{?_with_curl_xml} \
1752         %{?_with_curl} \
1753         %{?_with_dbi} \
1754         %{?_with_df} \
1755         %{?_with_disk} \
1756         %{?_with_dns} \
1757         %{?_with_drbd} \
1758         %{?_with_email} \
1759         %{?_with_entropy} \
1760         %{?_with_ethstat} \
1761         %{?_with_exec} \
1762         %{?_with_fhcount} \
1763         %{?_with_filecount} \
1764         %{?_with_fscache} \
1765         %{?_with_gmond} \
1766         %{?_with_gps} \
1767         %{?_with_grpc} \
1768         %{?_with_hddtemp} \
1769         %{?_with_interface} \
1770         %{?_with_ipc} \
1771         %{?_with_ipmi} \
1772         %{?_with_iptables} \
1773         %{?_with_ipvs} \
1774         %{?_with_irq} \
1775         %{?_with_java} \
1776         %{?_with_load} \
1777         %{?_with_log_logstash} \
1778         %{?_with_logfile} \
1779         %{?_with_lpar} \
1780         %{?_with_lua} \
1781         %{?_with_lvm} \
1782         %{?_with_madwifi} \
1783         %{?_with_mbmon} \
1784         %{?_with_md} \
1785         %{?_with_memcachec} \
1786         %{?_with_memcached} \
1787         %{?_with_memory} \
1788         %{?_with_mic} \
1789         %{?_with_modbus} \
1790         %{?_with_mqtt} \
1791         %{?_with_multimeter} \
1792         %{?_with_mysql} \
1793         %{?_with_netapp} \
1794         %{?_with_netlink} \
1795         %{?_with_network} \
1796         %{?_with_nfs} \
1797         %{?_with_nginx} \
1798         %{?_with_notify_desktop} \
1799         %{?_with_notify_email} \
1800         %{?_with_notify_nagios} \
1801         %{?_with_ntpd} \
1802         %{?_with_numa} \
1803         %{?_with_nut} \
1804         %{?_with_olsrd} \
1805         %{?_with_onewire} \
1806         %{?_with_openldap} \
1807         %{?_with_openvpn} \
1808         %{?_with_oracle} \
1809         %{?_with_perl} \
1810         %{?_with_pf} \
1811         %{?_with_pinba} \
1812         %{?_with_ping} \
1813         %{?_with_postgresql} \
1814         %{?_with_powerdns} \
1815         %{?_with_processes} \
1816         %{?_with_protocols} \
1817         %{?_with_python} \
1818         %{?_with_redis} \
1819         %{?_with_routeros} \
1820         %{?_with_rrdcached} \
1821         %{?_with_rrdtool} \
1822         %{?_with_sensors} \
1823         %{?_with_serial} \
1824         %{?_with_sigrok} \
1825         %{?_with_smart} \
1826         %{?_with_snmp} \
1827         %{?_with_statsd} \
1828         %{?_with_swap} \
1829         %{?_with_syslog} \
1830         %{?_with_table} \
1831         %{?_with_tail_csv} \
1832         %{?_with_tail} \
1833         %{?_with_tape} \
1834         %{?_with_tcpconns} \
1835         %{?_with_teamspeak2} \
1836         %{?_with_ted} \
1837         %{?_with_thermal} \
1838         %{?_with_threshold} \
1839         %{?_with_tokyotyrant} \
1840         %{?_with_turbostat} \
1841         %{?_with_unixsock} \
1842         %{?_with_uptime} \
1843         %{?_with_users} \
1844         %{?_with_uuid} \
1845         %{?_with_varnish} \
1846         %{?_with_virt} \
1847         %{?_with_vmem} \
1848         %{?_with_vserver} \
1849         %{?_with_wireless}\
1850         %{?_with_write_graphite} \
1851         %{?_with_write_http} \
1852         %{?_with_write_http} \
1853         %{?_with_write_kafka} \
1854         %{?_with_write_log} \
1855         %{?_with_write_mongodb} \
1856         %{?_with_write_redis} \
1857         %{?_with_write_riemann} \
1858         %{?_with_write_sensu} \
1859         %{?_with_write_tsdb} \
1860         %{?_with_xencpu} \
1861         %{?_with_xmms} \
1862         %{?_with_zfs_arc} \
1863         %{?_with_zone} \
1864         %{?_with_zookeeper}
1865
1866
1867 %{__make} %{?_smp_mflags}
1868
1869
1870 %install
1871 rm -rf %{buildroot}
1872 %{__make} install DESTDIR=%{buildroot}
1873 %if 0%{?fedora} || 0%{?rhel} >= 7
1874 %{__install} -Dp -m0644 contrib/systemd.collectd.service %{buildroot}%{_unitdir}/collectd.service
1875 %else
1876 %{__install} -Dp -m0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1877 %endif
1878 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1879 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1880 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1881
1882 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1883 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1884
1885 %{__mv} contrib/collection3 %{buildroot}%{_localstatedir}/www
1886 %{__mv} contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1887
1888 %{__mv} contrib/php-collection %{buildroot}%{_localstatedir}/www
1889 %{__mv} contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1890
1891 ### Clean up docs
1892 find contrib/ -type f -exec %{__chmod} a-x {} \;
1893 # *.la files shouldn't be distributed.
1894 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1895
1896 # Remove Perl hidden .packlist files.
1897 find %{buildroot} -type f -name .packlist -delete
1898 # Remove Perl temporary file perllocal.pod
1899 find %{buildroot} -type f -name perllocal.pod -delete
1900
1901 %if ! %{with_java}
1902 rm -f %{buildroot}%{_datadir}/collectd/java/collectd-api.jar
1903 rm -f %{buildroot}%{_datadir}/collectd/java/generic-jmx.jar
1904 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1905 %endif
1906
1907 %if ! %{with_lua}
1908 rm -f %{buildroot}%{_mandir}/man5/collectd-lua.5*
1909 %endif
1910
1911 %if ! %{with_perl}
1912 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1913 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1914 rm -fr %{buildroot}/usr/lib/perl5/
1915 %endif
1916
1917 %if ! %{with_postgresql}
1918 rm -f %{buildroot}%{_datadir}/collectd/postgresql_default.conf
1919 %endif
1920
1921 %if ! %{with_python}
1922 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1923 %endif
1924
1925 %if ! %{with_snmp}
1926 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1927 %endif
1928
1929
1930 %clean
1931 rm -rf %{buildroot}
1932
1933 %post
1934 %if 0%{?fedora} || 0%{?rhel} >= 7
1935 %systemd_post collectd.service
1936 %else
1937 /sbin/chkconfig --add collectd || :
1938 %endif
1939
1940 %preun
1941 %if 0%{?fedora} || 0%{?rhel} >= 7
1942 %systemd_preun collectd.service
1943 %else
1944 # stop collectd only when uninstalling
1945 if [ $1 -eq 0 ]; then
1946         /sbin/service collectd stop >/dev/null 2>&1 || :
1947         /sbin/chkconfig --del collectd || :
1948 fi
1949 %endif
1950
1951 %postun
1952 %if 0%{?fedora} || 0%{?rhel} >= 7
1953 %systemd_postun_with_restart collectd.service
1954 %else
1955 # restart collectd only when upgrading
1956 if [ $1 -eq 1 ]; then
1957         /sbin/service collectd condrestart >/dev/null 2>&1 || :
1958 fi
1959 %endif
1960
1961 %post -n libcollectdclient -p /sbin/ldconfig
1962 %postun -n libcollectdclient -p /sbin/ldconfig
1963
1964
1965 %files
1966 %doc AUTHORS COPYING ChangeLog README
1967 %config(noreplace) %{_sysconfdir}/collectd.conf
1968 %if 0%{?fedora} || 0%{?rhel} >= 7
1969 %{_unitdir}/collectd.service
1970 %else
1971 %{_initrddir}/collectd
1972 %endif
1973 %{_sbindir}/collectd
1974 %{_sbindir}/collectdmon
1975 %{_datadir}/collectd/types.db
1976 %{_sharedstatedir}/collectd
1977 %{_mandir}/man1/collectd.1*
1978 %{_mandir}/man1/collectdmon.1*
1979 %{_mandir}/man5/collectd-email.5*
1980 %{_mandir}/man5/collectd-exec.5*
1981 %{_mandir}/man5/collectd-threshold.5*
1982 %{_mandir}/man5/collectd-unixsock.5*
1983 %{_mandir}/man5/collectd.conf.5*
1984 %{_mandir}/man5/types.db.5*
1985
1986 # all plugins bundled with the main collectd package
1987 %{_libdir}/%{name}/match_empty_counter.so
1988 %{_libdir}/%{name}/match_hashed.so
1989 %{_libdir}/%{name}/match_regex.so
1990 %{_libdir}/%{name}/match_timediff.so
1991 %{_libdir}/%{name}/match_value.so
1992 %{_libdir}/%{name}/target_notification.so
1993 %{_libdir}/%{name}/target_replace.so
1994 %{_libdir}/%{name}/target_scale.so
1995 %{_libdir}/%{name}/target_set.so
1996 %{_libdir}/%{name}/target_v5upgrade.so
1997
1998 %if %{with_aggregation}
1999 %{_libdir}/%{name}/aggregation.so
2000 %endif
2001 %if %{with_apcups}
2002 %{_libdir}/%{name}/apcups.so
2003 %endif
2004 %if %{with_battery}
2005 %{_libdir}/%{name}/battery.so
2006 %endif
2007 %if %{with_cgroups}
2008 %{_libdir}/%{name}/cgroups.so
2009 %endif
2010 %if %{with_conntrack}
2011 %{_libdir}/%{name}/conntrack.so
2012 %endif
2013 %if %{with_contextswitch}
2014 %{_libdir}/%{name}/contextswitch.so
2015 %endif
2016 %if %{with_cpu}
2017 %{_libdir}/%{name}/cpu.so
2018 %endif
2019 %if %{with_cpufreq}
2020 %{_libdir}/%{name}/cpufreq.so
2021 %endif
2022 %if %{with_cpusleep}
2023 %{_libdir}/%{name}/cpusleep.so
2024 %endif
2025 %if %{with_csv}
2026 %{_libdir}/%{name}/csv.so
2027 %endif
2028 %if %{with_df}
2029 %{_libdir}/%{name}/df.so
2030 %endif
2031 %if %{with_drbd}
2032 %{_libdir}/%{name}/drbd.so
2033 %endif
2034 %if %{with_ethstat}
2035 %{_libdir}/%{name}/ethstat.so
2036 %endif
2037 %if %{with_entropy}
2038 %{_libdir}/%{name}/entropy.so
2039 %endif
2040 %if %{with_exec}
2041 %{_libdir}/%{name}/exec.so
2042 %endif
2043 %if %{with_fhcount}
2044 %{_libdir}/%{name}/fhcount.so
2045 %endif
2046 %if %{with_filecount}
2047 %{_libdir}/%{name}/filecount.so
2048 %endif
2049 %if %{with_fscache}
2050 %{_libdir}/%{name}/fscache.so
2051 %endif
2052 %if %{with_interface}
2053 %{_libdir}/%{name}/interface.so
2054 %endif
2055 %if %{with_ipc}
2056 %{_libdir}/%{name}/ipc.so
2057 %endif
2058 %if %{with_ipvs}
2059 %{_libdir}/%{name}/ipvs.so
2060 %endif
2061 %if %{with_irq}
2062 %{_libdir}/%{name}/irq.so
2063 %endif
2064 %if %{with_load}
2065 %{_libdir}/%{name}/load.so
2066 %endif
2067 %if %{with_logfile}
2068 %{_libdir}/%{name}/logfile.so
2069 %endif
2070 %if %{with_madwifi}
2071 %{_libdir}/%{name}/madwifi.so
2072 %endif
2073 %if %{with_mbmon}
2074 %{_libdir}/%{name}/mbmon.so
2075 %endif
2076 %if %{with_md}
2077 %{_libdir}/%{name}/md.so
2078 %endif
2079 %if %{with_memcached}
2080 %{_libdir}/%{name}/memcached.so
2081 %endif
2082 %if %{with_memory}
2083 %{_libdir}/%{name}/memory.so
2084 %endif
2085 %if %{with_multimeter}
2086 %{_libdir}/%{name}/multimeter.so
2087 %endif
2088 %if %{with_network}
2089 %{_libdir}/%{name}/network.so
2090 %endif
2091 %if %{with_nfs}
2092 %{_libdir}/%{name}/nfs.so
2093 %endif
2094 %if %{with_notify_nagios}
2095 %{_libdir}/%{name}/notify_nagios.so
2096 %endif
2097 %if %{with_ntpd}
2098 %{_libdir}/%{name}/ntpd.so
2099 %endif
2100 %if %{with_numa}
2101 %{_libdir}/%{name}/numa.so
2102 %endif
2103 %if %{with_openvpn}
2104 %{_libdir}/%{name}/openvpn.so
2105 %endif
2106 %if %{with_olsrd}
2107 %{_libdir}/%{name}/olsrd.so
2108 %endif
2109 %if %{with_powerdns}
2110 %{_libdir}/%{name}/powerdns.so
2111 %endif
2112 %if %{with_processes}
2113 %{_libdir}/%{name}/processes.so
2114 %endif
2115 %if %{with_protocols}
2116 %{_libdir}/%{name}/protocols.so
2117 %endif
2118 %if %{with_serial}
2119 %{_libdir}/%{name}/serial.so
2120 %endif
2121 %if %{with_statsd}
2122 %{_libdir}/%{name}/statsd.so
2123 %endif
2124 %if %{with_swap}
2125 %{_libdir}/%{name}/swap.so
2126 %endif
2127 %if %{with_syslog}
2128 %{_libdir}/%{name}/syslog.so
2129 %endif
2130 %if %{with_table}
2131 %{_libdir}/%{name}/table.so
2132 %endif
2133 %if %{with_tail}
2134 %{_libdir}/%{name}/tail.so
2135 %endif
2136 %if %{with_tail_csv}
2137 %{_libdir}/%{name}/tail_csv.so
2138 %endif
2139 %if %{with_tcpconns}
2140 %{_libdir}/%{name}/tcpconns.so
2141 %endif
2142 %if %{with_teamspeak2}
2143 %{_libdir}/%{name}/teamspeak2.so
2144 %endif
2145 %if %{with_ted}
2146 %{_libdir}/%{name}/ted.so
2147 %endif
2148 %if %{with_thermal}
2149 %{_libdir}/%{name}/thermal.so
2150 %endif
2151 %if %{with_threshold}
2152 %{_libdir}/%{name}/threshold.so
2153 %endif
2154 %if %{with_turbostat}
2155 %{_libdir}/%{name}/turbostat.so
2156 %endif
2157 %if %{with_unixsock}
2158 %{_libdir}/%{name}/unixsock.so
2159 %endif
2160 %if %{with_uptime}
2161 %{_libdir}/%{name}/uptime.so
2162 %endif
2163 %if %{with_users}
2164 %{_libdir}/%{name}/users.so
2165 %endif
2166 %if %{with_uuid}
2167 %{_libdir}/%{name}/uuid.so
2168 %endif
2169 %if %{with_vmem}
2170 %{_libdir}/%{name}/vmem.so
2171 %endif
2172 %if %{with_vserver}
2173 %{_libdir}/%{name}/vserver.so
2174 %endif
2175 %if %{with_wireless}
2176 %{_libdir}/%{name}/wireless.so
2177 %endif
2178 %if %{with_write_graphite}
2179 %{_libdir}/%{name}/write_graphite.so
2180 %endif
2181 %if %{with_write_log}
2182 %{_libdir}/%{name}/write_log.so
2183 %endif
2184 %if %{with_write_sensu}
2185 %{_libdir}/%{name}/write_sensu.so
2186 %endif
2187 %if %{with_write_tsdb}
2188 %{_libdir}/%{name}/write_tsdb.so
2189 %endif
2190 %if %{with_zfs_arc}
2191 %{_libdir}/%{name}/zfs_arc.so
2192 %endif
2193 %if %{with_zookeeper}
2194 %{_libdir}/%{name}/zookeeper.so
2195 %endif
2196
2197 %files -n libcollectdclient-devel
2198 %{_includedir}/collectd/client.h
2199 %{_includedir}/collectd/network.h
2200 %{_includedir}/collectd/network_buffer.h
2201 %{_includedir}/collectd/lcc_features.h
2202 %{_libdir}/pkgconfig/libcollectdclient.pc
2203 %{_libdir}/libcollectdclient.so
2204
2205 %files -n libcollectdclient
2206 %{_libdir}/libcollectdclient.so.*
2207
2208 %files -n collectd-utils
2209 %{_bindir}/collectd-nagios
2210 %{_bindir}/collectd-tg
2211 %{_bindir}/collectdctl
2212 %{_mandir}/man1/collectdctl.1*
2213 %{_mandir}/man1/collectd-nagios.1*
2214 %{_mandir}/man1/collectd-tg.1*
2215
2216 %if %{with_amqp}
2217 %files amqp
2218 %{_libdir}/%{name}/amqp.so
2219 %endif
2220
2221 %if %{with_apache}
2222 %files apache
2223 %{_libdir}/%{name}/apache.so
2224 %endif
2225
2226 %if %{with_aquaero}
2227 %files aquaero
2228 %{_libdir}/%{name}/aquaero.so
2229 %endif
2230
2231 %if %{with_ascent}
2232 %files ascent
2233 %{_libdir}/%{name}/ascent.so
2234 %endif
2235
2236 %if %{with_barometer}
2237 %files barometer
2238 %{_libdir}/%{name}/barometer.so
2239 %endif
2240
2241 %if %{with_bind}
2242 %files bind
2243 %{_libdir}/%{name}/bind.so
2244 %endif
2245
2246 %if %{with_ceph}
2247 %files ceph
2248 %{_libdir}/%{name}/ceph.so
2249 %endif
2250
2251 %if %{with_chrony}
2252 %files chrony
2253 %{_libdir}/%{name}/chrony.so
2254 %endif
2255
2256 %if %{with_curl}
2257 %files curl
2258 %{_libdir}/%{name}/curl.so
2259 %endif
2260
2261 %if %{with_curl_json}
2262 %files curl_json
2263 %{_libdir}/%{name}/curl_json.so
2264 %endif
2265
2266 %if %{with_curl_xml}
2267 %files curl_xml
2268 %{_libdir}/%{name}/curl_xml.so
2269 %endif
2270
2271 %if %{with_disk}
2272 %files disk
2273 %{_libdir}/%{name}/disk.so
2274 %endif
2275
2276 %if %{with_dns}
2277 %files dns
2278 %{_libdir}/%{name}/dns.so
2279 %endif
2280
2281 %if %{with_dbi}
2282 %files dbi
2283 %{_libdir}/%{name}/dbi.so
2284 %endif
2285
2286 %if %{with_email}
2287 %files email
2288 %{_libdir}/%{name}/email.so
2289 %endif
2290
2291 %if %{with_gmond}
2292 %files gmond
2293 %{_libdir}/%{name}/gmond.so
2294 %endif
2295
2296 %if %{with_gps}
2297 %files gps
2298 %{_libdir}/%{name}/gps.so
2299 %endif
2300
2301 %if %{with_grpc}
2302 %files grpc
2303 %{_libdir}/%{name}/grpc.so
2304 %endif
2305
2306 %if %{with_hddtemp}
2307 %files hddtemp
2308 %{_libdir}/%{name}/hddtemp.so
2309 %endif
2310
2311 %if %{with_ipmi}
2312 %files ipmi
2313 %{_libdir}/%{name}/ipmi.so
2314 %endif
2315
2316 %if %{with_iptables}
2317 %files iptables
2318 %{_libdir}/%{name}/iptables.so
2319 %endif
2320
2321 %if %{with_java}
2322 %files java
2323 %{_datadir}/collectd/java/collectd-api.jar
2324 %{_datadir}/collectd/java/generic-jmx.jar
2325 %{_libdir}/%{name}/java.so
2326 %{_mandir}/man5/collectd-java.5*
2327 %endif
2328
2329 %if %{with_virt}
2330 %files virt
2331 %{_libdir}/%{name}/virt.so
2332 %endif
2333
2334 %if %{with_log_logstash}
2335 %files log_logstash
2336 %{_libdir}/%{name}/log_logstash.so
2337 %endif
2338
2339 %if %{with_lua}
2340 %files lua
2341 %{_mandir}/man5/collectd-lua*
2342 %{_libdir}/%{name}/lua.so
2343 %endif
2344
2345 %if %{with_lvm}
2346 %files lvm
2347 %{_libdir}/%{name}/lvm.so
2348 %endif
2349
2350 %if %{with_memcachec}
2351 %files memcachec
2352 %{_libdir}/%{name}/memcachec.so
2353 %endif
2354
2355 %if %{with_mic}
2356 %files mic
2357 %{_libdir}/%{name}/mic.so
2358 %endif
2359
2360 %if %{with_modbus}
2361 %files modbus
2362 %{_libdir}/%{name}/modbus.so
2363 %endif
2364
2365 %if %{with_mqtt}
2366 %files mqtt
2367 %{_libdir}/%{name}/mqtt.so
2368 %endif
2369
2370 %if %{with_mysql}
2371 %files mysql
2372 %{_libdir}/%{name}/mysql.so
2373 %endif
2374
2375 %if %{with_netlink}
2376 %files netlink
2377 %{_libdir}/%{name}/netlink.so
2378 %endif
2379
2380 %if %{with_nginx}
2381 %files nginx
2382 %{_libdir}/%{name}/nginx.so
2383 %endif
2384
2385 %if %{with_notify_desktop}
2386 %files notify_desktop
2387 %{_libdir}/%{name}/notify_desktop.so
2388 %endif
2389
2390 %if %{with_notify_email}
2391 %files notify_email
2392 %{_libdir}/%{name}/notify_email.so
2393 %endif
2394
2395 %if %{with_nut}
2396 %files nut
2397 %{_libdir}/%{name}/nut.so
2398 %endif
2399
2400 %if %{with_openldap}
2401 %files openldap
2402 %{_libdir}/%{name}/openldap.so
2403 %endif
2404
2405 %if %{with_perl}
2406 %files perl
2407 %{perl_vendorlib}/Collectd.pm
2408 %{perl_vendorlib}/Collectd/
2409 %{_mandir}/man3/Collectd::Unixsock.3pm*
2410 %{_mandir}/man5/collectd-perl.5*
2411 %{_libdir}/%{name}/perl.so
2412 %endif
2413
2414 %if %{with_pinba}
2415 %files pinba
2416 %{_libdir}/%{name}/pinba.so
2417 %endif
2418
2419 %if %{with_ping}
2420 %files ping
2421 %{_libdir}/%{name}/ping.so
2422 %endif
2423
2424 %if %{with_postgresql}
2425 %files postgresql
2426 %{_datadir}/collectd/postgresql_default.conf
2427 %{_libdir}/%{name}/postgresql.so
2428 %endif
2429
2430 %if %{with_python}
2431 %files python
2432 %{_mandir}/man5/collectd-python*
2433 %{_libdir}/%{name}/python.so
2434 %endif
2435
2436 %if %{with_redis}
2437 %files redis
2438 %{_libdir}/%{name}/redis.so
2439 %endif
2440
2441 %if %{with_rrdcached}
2442 %files rrdcached
2443 %{_libdir}/%{name}/rrdcached.so
2444 %endif
2445
2446 %if %{with_rrdtool}
2447 %files rrdtool
2448 %{_libdir}/%{name}/rrdtool.so
2449 %endif
2450
2451 %if %{with_sensors}
2452 %files sensors
2453 %{_libdir}/%{name}/sensors.so
2454 %endif
2455
2456 %if %{with_sigrok}
2457 %files sigrok
2458 %{_libdir}/%{name}/sigrok.so
2459 %endif
2460
2461 %if %{with_smart}
2462 %files smart
2463 %{_libdir}/%{name}/smart.so
2464 %endif
2465
2466 %if %{with_snmp}
2467 %files snmp
2468 %{_mandir}/man5/collectd-snmp.5*
2469 %{_libdir}/%{name}/snmp.so
2470 %endif
2471
2472 %if %{with_varnish}
2473 %files varnish
2474 %{_libdir}/%{name}/varnish.so
2475 %endif
2476
2477 %if %{with_write_http}
2478 %files write_http
2479 %{_libdir}/%{name}/write_http.so
2480 %endif
2481
2482 %if %{with_write_kafka}
2483 %files write_kafka
2484 %{_libdir}/%{name}/write_kafka.so
2485 %endif
2486
2487 %if %{with_write_redis}
2488 %files write_redis
2489 %{_libdir}/%{name}/write_redis.so
2490 %endif
2491
2492 %if %{with_write_riemann}
2493 %files write_riemann
2494 %{_libdir}/%{name}/write_riemann.so
2495 %endif
2496
2497 %if %{with_xencpu}
2498 %files xencpu
2499 %{_libdir}/%{name}/xencpu.so
2500 %endif
2501
2502 %if %{with_xmms}
2503 %files xmms
2504 %{_libdir}/%{name}/xmms.so
2505 %endif
2506
2507 %files collection3
2508 %{_localstatedir}/www/collection3
2509 %{_sysconfdir}/httpd/conf.d/collection3.conf
2510
2511 %files php-collection
2512 %{_localstatedir}/www/php-collection
2513 %{_sysconfdir}/httpd/conf.d/php-collection.conf
2514
2515 %files contrib
2516 %doc contrib/
2517
2518 %changelog
2519 * Sun Mar 05 2017 Ruben Kerkhof <ruben@rubenkerkhof.com> - 5.6.1-4
2520 - Don't enable XFS support on RHEL6, it is missing for i386
2521
2522 * Wed Feb 22 2017 Ruben Kerkhof <ruben@rubenkerkhof.com> - 5.6.1-3
2523 - Enable XFS support in df plugin
2524
2525 * Tue Nov 29 2016 Ruben Kerkhof <ruben@rubenkerkhof.com> - 5.6.1-2
2526 - Disable redis plugin on RHEL < 7, hiredis has been retired from EPEL6
2527
2528 * Mon Oct 10 2016 Victor Demonchy <v.demonchy@criteo.com> - 5.6.1-1
2529 - New upstream version
2530
2531 * Sun Aug 14 2016 Ruben Kerkhof <ruben@rubenkerkhof.com> - 5.6.0-1
2532 - New upstream version
2533 - New plugins enabled by default: chrony, cpusleep, gps, lua, mqtt, notify_nagios
2534 - New plugins disabled by default: grpc, xencpu, zone
2535
2536 * Tue Jul 26 2016 Ruben Kerkhof <ruben@rubenkerkhof.com> - 5.5.2-1
2537 - New upstream version
2538 - Contains fix for CVE-2016-6254
2539 - Change collectd.org url to https
2540
2541 * Sat Jun 04 2016 Ruben Kerkhof <ruben@rubenkerkhof.com> 5.5.1-1
2542 - New upstream version
2543
2544 * Wed May 27 2015 Marc Fournier <marc.fournier@camptocamp.com> 5.5.0-1
2545 - New upstream version
2546 - New plugins enabled by default: ceph, drbd, log_logstash, write_tsdb, smart,
2547   openldap, redis, write_redis, zookeeper, write_log, write_sensu, ipc,
2548   turbostat, fhcount
2549 - New plugins disabled by default: barometer, write_kafka
2550 - Enable zfs_arc, now supported on Linux
2551 - Install disk plugin in a dedicated package, as it depends on libudev
2552 - use systemd on EL7, sysvinit on EL6 & EL5
2553 - Install collectdctl, collectd-tg and collectd-nagios in collectd-utils.rpm
2554 - Add build-dependency on libcap-devel
2555
2556 * Mon Aug 19 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.4.2-1
2557 - New upstream version
2558 - Build netlink plugin by default
2559 - Enable cgroups, lvm and statsd plugins
2560 - Enable (but don't build by default) mic, aquaero and sigrok plugins
2561 - Enable modbus, memcachec and xmms plugins on RHEL7
2562
2563 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
2564 - New upstream version
2565 - Added RHEL5 support:
2566   * conditionally disable plugins not building on this platform
2567   * add/specify some build dependencies and options
2568   * replace some RPM macros not available on this platform
2569 - Removed duplicate --enable-aggregation
2570 - Added some comments & usage examples
2571 - Replaced a couple of "Buildrequires" by "BuildRequires"
2572 - Enabled modbus plugin on RHEL6
2573 - Enabled netlink plugin on RHEL6 and RHEL7
2574 - Allow perl plugin to build on RHEL5
2575 - Add support for RHEL7
2576 - Misc perl-related improvements:
2577   * prevent rpmbuild from extracting dependencies from files in /usr/share/doc
2578   * don't package collection3 and php-collection twice
2579   * keep perl scripts from contrib/ in collectd-contrib
2580
2581 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
2582 - New upstream version
2583 - Enabled write_riemann plugin
2584 - Enabled tail_csv plugin
2585 - Installed collectd-tc manpage
2586
2587 * Fri Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
2588 - remove dependency on libstatgrab, which isn't required on linux
2589
2590 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
2591 - collection3 and php-collection viewers are now in separate packages
2592
2593 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
2594 - New upstream version
2595 - Enabled aggregation plugin
2596 - Installed collectd-tc
2597 - Added network.h and network_buffer.h to libcollectdclient-devel
2598 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
2599 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
2600 - Added rrdcached and redis plugin descriptions
2601 - Mentioned new pf plugin in disabled plugins list
2602
2603 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
2604 - Follow Fedora Packaging Guidelines in java subpackage
2605
2606 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
2607 - Move perl stuff to perl_vendorlib
2608 - Replace hardcoded paths with macros
2609 - Remove unnecessary Requires
2610 - Removed .a and .la files
2611 - Some other small cleanups
2612
2613 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
2614 - New upstream version
2615 - Changes to support 5.1.0
2616 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
2617 - All plugins requiring external libraries are now shipped in separate
2618   packages.
2619 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
2620   the build process + ensure build deps are installed.
2621 - Dropped per-plugin configuration files, as they tend to diverge from upstream
2622   defaults.
2623 - Moved perl stuff to /usr/share/perl5/
2624 - Don't alter Interval and ReadThreads by default, let the user change this
2625   himself.
2626 - Initscript improvements:
2627   * checks configuration before (re)starting, based on debian's initscript
2628   * use /etc/sysconfig instdead of /etc/default
2629   * include optional $ARGS in arguments passed to collectd.
2630 - Drop collection.cgi from main package, as it's been obsoleted by collection3
2631 - Moved contrib/ to its own package, to avoid cluttering the main package with
2632   non-essential stuff.
2633 - Replaced BuildPrereq by BuildRequires
2634
2635 * Mon Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
2636 - New upstream version
2637 - Changes to support 5.0.1
2638
2639 * Mon Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
2640 - New upstream version
2641 - Changes to support 4.9.0
2642 - Added support for Java/GenericJMX plugin
2643
2644 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
2645 - New upstream version
2646 - Changes to support 4.3.1
2647 - Added More Prereqs to support more plugins
2648 - Added support for perl plugin
2649
2650 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
2651 - New upstream version
2652
2653 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
2654 - New major releas
2655 - Changes to support 4.0.5
2656
2657 * Thu Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
2658 - fixed spec file to build correctly on fedora core
2659 - added improved init.d script to work with chkconfig
2660 - added %%post and %%postun to call chkconfig automatically
2661
2662 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
2663 - New upstream version
2664
2665 * Sun Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
2666 - New upstream version
2667
2668 * Thu Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
2669 - New upstream version
2670
2671 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
2672 - New upstream version
2673
2674 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
2675 - New upstream version
2676
2677 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
2678 - New upstream version
2679
2680 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
2681 - New upstream version
2682 - Added the `apache' package.
2683
2684 * Tue Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
2685 - New upstream version
2686
2687 * Mon Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
2688 - New upstream version
2689
2690 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
2691 - New upstream version
2692
2693 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
2694 - Include `tape.so' so the build doesn't terminate because of missing files..
2695 - New upstream version
2696
2697 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2698 - New upstream version
2699
2700 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2701 - New upstream version
2702 - Removed the extra `hddtemp' package
2703
2704 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2705 - New upstream version
2706
2707 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2708 - New upstream version
2709
2710 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2711 - New upstream version
2712 - Added config file, `collectd.conf(5)', `df.so'
2713 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2714
2715 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2716 - New upstream version
2717
2718 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2719 - New upstream version
2720
2721 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2722 - New upstream version
2723
2724 * Wed Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2725 - New upstream version
2726 - Added statement to remove the `*.la' files. This fixes a problem when
2727   `Unpackaged files terminate build' is in effect.
2728 - Added `processes.so*' to the main package
2729
2730 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2731 - New upstream version
2732 - Added package `collectd-hddtemp'
2733
2734 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2735 - New upstream version
2736 - Split the package into `collectd' and `collectd-sensors'
2737
2738 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2739 - New upstream version
2740
2741 * Sat Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2742 - New upstream version
2743
2744 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2745 - New upstream version
2746
2747 * Thu Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2748 - New upstream version
2749
2750 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2751 - New upstream version
2752
2753 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2754 - New upstream version
2755
2756 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2757 - New upstream version
2758
2759 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2760 - New upstream version
2761
2762 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2763 - Built on RedHat 7.3