3 # a: A specfile for building RPM packages of current collectd releases, for
4 # RHEL/CentOS versions 5 and 6. 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.
9 # q: And how can I do that ?
10 # a: By following these instructions, using mock:
12 # - install and configure mock (https://fedoraproject.org/wiki/Projects/Mock)
14 # - enable the EPEL repository (http://dl.fedoraproject.org/pub/epel/) in the
15 # configuration files for your target systems (/etc/mock/*.cfg).
17 # - copy this file in your ~/rpmbuild/SPECS/ directory
19 # - fetch the desired collectd release file from https://collectd.org/files/
20 # and save it in your ~/rpmbuild/SOURCES/ directory
22 # - build the SRPM first:
23 # mock -r centos-6-x86_64 --buildsrpm --spec ~/rpmbuild/SPECS/collectd.spec \
24 # --sources ~/rpmbuild/SOURCES/
26 # - then build the RPMs:
27 # mock -r centos-6-x86_64 --no-clean --rebuild \
28 # /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
30 # - you can also optionally enable/disable plugins which are disabled/enabled
32 # mock -r centos-6-x86_64 --no-clean --without=java --with=oracle --rebuild \
33 # /var/lib/mock/centos-6-x86_64/result/collectd-X.Y.Z-NN.src.rpm
36 %global _hardened_build 1
38 # plugins only buildable on RHEL6
39 # (NB: %{elN} macro is not available on RHEL < 6)
40 %{?el6:%global _has_libyajl 1}
41 %{?el6:%global _has_recent_libpcap 1}
42 %{?el6:%global _has_recent_sockios_h 1}
43 %{?el6:%global _has_recent_libganglia 1}
44 %{?el6:%global _has_working_libiptc 1}
45 %{?el6:%global _has_ip_vs_h 1}
46 %{?el6:%global _has_perl_extutils_embed 1}
48 # plugins enabled by default
49 %define with_aggregation 0%{!?_without_aggregation:1}
50 %define with_amqp 0%{!?_without_amqp:1}
51 %define with_apache 0%{!?_without_apache:1}
52 %define with_apcups 0%{!?_without_apcups:1}
53 %define with_ascent 0%{!?_without_ascent:1}
54 %define with_battery 0%{!?_without_battery:1}
55 %define with_bind 0%{!?_without_bind:1}
56 %define with_conntrack 0%{!?_without_conntrack:1}
57 %define with_contextswitch 0%{!?_without_contextswitch:1}
58 %define with_cpu 0%{!?_without_cpu:1}
59 %define with_cpufreq 0%{!?_without_cpufreq:1}
60 %define with_csv 0%{!?_without_csv:1}
61 %define with_curl 0%{!?_without_curl:1}
62 %define with_curl_json 0%{!?_without_curl_json:0%{?_has_libyajl}}
63 %define with_curl_xml 0%{!?_without_curl_xml:1}
64 %define with_dbi 0%{!?_without_dbi:1}
65 %define with_df 0%{!?_without_df:1}
66 %define with_disk 0%{!?_without_disk:1}
67 %define with_dns 0%{!?_without_dns:0%{?_has_recent_libpcap}}
68 %define with_email 0%{!?_without_email:1}
69 %define with_entropy 0%{!?_without_entropy:1}
70 %define with_ethstat 0%{!?_without_ethstat:0%{?_has_recent_sockios_h}}
71 %define with_exec 0%{!?_without_exec:1}
72 %define with_filecount 0%{!?_without_filecount:1}
73 %define with_fscache 0%{!?_without_fscache:1}
74 %define with_gmond 0%{!?_without_gmond:0%{?_has_recent_libganglia}}
75 %define with_hddtemp 0%{!?_without_hddtemp:1}
76 %define with_interface 0%{!?_without_interface:1}
77 %define with_ipmi 0%{!?_without_ipmi:1}
78 %define with_iptables 0%{!?_without_iptables:0%{?_has_working_libiptc}}
79 %define with_ipvs 0%{!?_without_ipvs:0%{?_has_ip_vs_h}}
80 %define with_irq 0%{!?_without_irq:1}
81 %define with_java 0%{!?_without_java:1}
82 %define with_libvirt 0%{!?_without_libvirt:1}
83 %define with_load 0%{!?_without_load:1}
84 %define with_logfile 0%{!?_without_logfile:1}
85 %define with_madwifi 0%{!?_without_madwifi:1}
86 %define with_mbmon 0%{!?_without_mbmon:1}
87 %define with_md 0%{!?_without_md:1}
88 %define with_memcachec 0%{!?_without_memcachec:1}
89 %define with_memcached 0%{!?_without_memcached:1}
90 %define with_memory 0%{!?_without_memory:1}
91 %define with_multimeter 0%{!?_without_multimeter:1}
92 %define with_mysql 0%{!?_without_mysql:1}
93 %define with_network 0%{!?_without_network:1}
94 %define with_nfs 0%{!?_without_nfs:1}
95 %define with_nginx 0%{!?_without_nginx:1}
96 %define with_notify_desktop 0%{!?_without_notify_desktop:1}
97 %define with_notify_email 0%{!?_without_notify_email:1}
98 %define with_ntpd 0%{!?_without_ntpd:1}
99 %define with_numa 0%{!?_without_numa:1}
100 %define with_nut 0%{!?_without_nut:1}
101 %define with_olsrd 0%{!?_without_olsrd:1}
102 %define with_openvpn 0%{!?_without_openvpn:1}
103 %define with_perl 0%{!?_without_perl:0%{?_has_perl_extutils_embed}}
104 %define with_pinba 0%{!?_without_pinba:1}
105 %define with_ping 0%{!?_without_ping:1}
106 %define with_postgresql 0%{!?_without_postgresql:1}
107 %define with_powerdns 0%{!?_without_powerdns:1}
108 %define with_processes 0%{!?_without_processes:1}
109 %define with_protocols 0%{!?_without_protocols:1}
110 %define with_python 0%{!?_without_python:1}
111 %define with_rrdtool 0%{!?_without_rrdtool:1}
112 %define with_sensors 0%{!?_without_sensors:1}
113 %define with_serial 0%{!?_without_serial:1}
114 %define with_snmp 0%{!?_without_snmp:1}
115 %define with_swap 0%{!?_without_swap:1}
116 %define with_syslog 0%{!?_without_syslog:1}
117 %define with_table 0%{!?_without_table:1}
118 %define with_tail 0%{!?_without_tail:1}
119 %define with_tail_csv 0%{!?_without_tail_csv:1}
120 %define with_tcpconns 0%{!?_without_tcpconns:1}
121 %define with_teamspeak2 0%{!?_without_teamspeak2:1}
122 %define with_ted 0%{!?_without_ted:1}
123 %define with_thermal 0%{!?_without_thermal:1}
124 %define with_threshold 0%{!?_without_threshold:1}
125 %define with_unixsock 0%{!?_without_unixsock:1}
126 %define with_uptime 0%{!?_without_uptime:1}
127 %define with_users 0%{!?_without_users:1}
128 %define with_uuid 0%{!?_without_uuid:1}
129 %define with_varnish 0%{!?_without_varnish:1}
130 %define with_vmem 0%{!?_without_vmem:1}
131 %define with_vserver 0%{!?_without_vserver:1}
132 %define with_wireless 0%{!?_without_wireless:1}
133 %define with_write_graphite 0%{!?_without_write_graphite:1}
134 %define with_write_http 0%{!?_without_write_http:1}
135 %define with_write_riemann 0%{!?_without_write_riemann:1}
137 # Plugins not built by default because of dependencies on libraries not
138 # available in RHEL or EPEL:
140 # plugin apple_sensors disabled, requires a Mac
141 %define with_apple_sensors 0%{!?_without_apple_sensors:0}
142 # plugin lpar disabled, requires AIX
143 %define with_lpar 0%{!?_without_lpar:0}
144 # plugin modbus disabled, requires libmodbus
145 %define with_modbus 0%{!?_without_modbus:0}
146 # plugin netapp disabled, requires libnetapp
147 %define with_netapp 0%{!?_without_netapp:0}
148 # plugin netlink disabled, requires libnetlink.h
149 %define with_netlink 0%{!?_without_netlink:0}
150 # plugin onewire disabled, requires libowfs
151 %define with_onewire 0%{!?_without_onewire:0}
152 # plugin oracle disabled, requires Oracle
153 %define with_oracle 0%{!?_without_oracle:0}
154 # plugin oracle disabled, requires BSD
155 %define with_pf 0%{!?_without_pf:0}
156 # plugin redis disabled, requires credis
157 %define with_redis 0%{!?_without_redis:0}
158 # plugin routeros disabled, requires librouteros
159 %define with_routeros 0%{!?_without_routeros:0}
160 # plugin rrdcached disabled, requires rrdtool >= 1.4
161 %define with_rrdcached 0%{!?_without_rrdcached:0}
162 # plugin tape disabled, requires libkstat
163 %define with_tape 0%{!?_without_tape:0}
164 # plugin tokyotyrant disabled, requires tcrdb.h
165 %define with_tokyotyrant 0%{!?_without_tokyotyrant:0}
166 # plugin write_mongodb disabled, requires libmongoc
167 %define with_write_mongodb 0%{!?_without_write_mongodb:0}
168 # plugin write_redis disabled, requires credis
169 %define with_write_redis 0%{!?_without_write_redis:0}
170 # plugin xmms disabled, requires xmms
171 %define with_xmms 0%{!?_without_xmms:0}
172 # plugin zfs_arc disabled, requires FreeBSD/Solaris
173 %define with_zfs_arc 0%{!?_without_zfs_arc:0}
175 Summary: Statistics collection daemon for filling RRD files
179 URL: http://collectd.org
180 Source: http://collectd.org/files/%{name}-%{version}.tar.bz2
182 Group: System Environment/Daemons
183 BuildRoot: %{_tmppath}/%{name}-%{version}-root
184 BuildRequires: libgcrypt-devel, kernel-headers
185 Vendor: collectd development team <collectd@verplant.org>
187 Requires(post): chkconfig
188 Requires(preun): chkconfig, initscripts
189 Requires(postun): initscripts
192 collectd is a small daemon which collects system information periodically and
193 provides mechanisms to monitor and store the values in a variety of ways. It
194 is written in C for performance. Since the daemon doesn't need to start up
195 every time it wants to update the values it's very fast and easy on the
196 system. Also, the statistics are very fine grained since the files are updated
197 every 10 seconds by default.
201 Summary: AMQP plugin for collectd
202 Group: System Environment/Daemons
203 Requires: %{name}%{?_isa} = %{version}-%{release}
204 BuildRequires: librabbitmq-devel
206 The AMQP plugin transmits or receives values collected by collectd via the
207 Advanced Message Queuing Protocol (AMQP).
212 Summary: Apache plugin for collectd
213 Group: System Environment/Daemons
214 Requires: %{name}%{?_isa} = %{version}-%{release}
215 BuildRequires: curl-devel
217 This plugin collects data provided by Apache's `mod_status'.
222 Summary: Ascent plugin for collectd
223 Group: System Environment/Daemons
224 Requires: %{name}%{?_isa} = %{version}-%{release}
225 BuildRequires: libxml2-devel, curl-devel
227 The Ascent plugin reads and parses the statistics page of Ascent, a free and
228 open-source server software for the game World of Warcraft by Blizzard
234 Summary: Bind plugin for collectd
235 Group: System Environment/Daemons
236 Requires: %{name}%{?_isa} = %{version}-%{release}
237 BuildRequires: libxml2-devel, curl-devel
239 The BIND plugin retrieves this information that's encoded in XML and provided
240 via HTTP and submits the values to collectd.
245 Summary: Curl plugin for collectd
246 Group: System Environment/Daemons
247 Requires: %{name}%{?_isa} = %{version}-%{release}
248 BuildRequires: curl-devel
250 The cURL plugin uses libcurl to read files and then parses them according to
254 %if %{with_curl_json}
256 Summary: Curl_json plugin for collectd
257 Group: System Environment/Daemons
258 Requires: %{name}%{?_isa} = %{version}-%{release}
259 BuildRequires: curl-devel, yajl-devel
260 %description curl_json
261 The cURL-JSON plugin queries JavaScript Object Notation (JSON) data using the
262 cURL library and parses it according to the user's configuration.
267 Summary: Curl_xml plugin for collectd
268 Group: System Environment/Daemons
269 Requires: %{name}%{?_isa} = %{version}-%{release}
270 BuildRequires: curl-devel, libxml2-devel
271 %description curl_xml
272 The cURL-XML plugin reads files using libcurl and parses it as Extensible
273 Markup Language (XML).
278 Summary: DBI plugin for collectd
279 Group: System Environment/Daemons
280 Requires: %{name}%{?_isa} = %{version}-%{release}
281 BuildRequires: libdbi-devel
283 The DBI plugin uses libdbi, a database abstraction library, to execute SQL
284 statements on a database and read back the result.
289 Summary: DNS plugin for collectd
290 Group: System Environment/Daemons
291 Requires: %{name}%{?_isa} = %{version}-%{release}, libpcap >= 1.0
292 BuildRequires: libpcap-devel >= 1.0
294 The DNS plugin has a similar functionality to dnstop: It uses libpcap to get a
295 copy of all traffic from/to port UDP/53 (that's the DNS port), interprets the
296 packets and collects statistics of your DNS traffic.
301 Summary: Email plugin for collectd
302 Group: System Environment/Daemons
303 Requires: %{name}%{?_isa} = %{version}-%{release}, spamassassin
305 This plugin collects data provided by spamassassin.
310 Summary: Gmond plugin for collectd
311 Group: System Environment/Daemons
312 Requires: %{name}%{?_isa} = %{version}-%{release}
313 BuildRequires: ganglia-devel
315 The gmond plugin subscribes to a Multicast group to receive data from gmond,
316 the client daemon of the Ganglia project.
321 Summary: Hddtemp plugin for collectd
322 Group: System Environment/Daemons
323 Requires: %{name}%{?_isa} = %{version}-%{release}, hddtemp
325 The HDDTemp plugin collects the temperature of hard disks. The temperatures are
326 provided via SMART and queried by the external hddtemp daemon.
331 Summary: IPMI plugin for collectd
332 Group: System Environment/Daemons
333 Requires: %{name}%{?_isa} = %{version}-%{release}
334 BuildRequires: OpenIPMI-devel
336 The IPMI plugin uses the OpenIPMI library to read hardware sensors from servers
337 using the Intelligent Platform Management Interface (IPMI).
342 Summary: IPtables plugin for collectd
343 Group: System Environment/Daemons
344 Requires: %{name}%{?_isa} = %{version}-%{release}
345 BuildRequires: iptables-devel
346 %description iptables
347 The IPtables plugin can gather statistics from your ip_tables based packet
348 filter (aka. firewall) for both the IPv4 and the IPv6 protocol. It can collect
349 the byte- and packet-counters of selected rules and submit them to collectd.
354 Summary: Java plugin for collectd
355 Group: System Environment/Daemons
356 Requires: %{name}%{?_isa} = %{version}-%{release}
357 BuildRequires: java-devel, jpackage-utils
358 Requires: java, jpackage-utils
360 This plugin for collectd allows plugins to be written in Java and executed
366 Summary: Libvirt plugin for collectd
367 Group: System Environment/Daemons
368 Requires: %{name}%{?_isa} = %{version}-%{release}
369 BuildRequires: libvirt-devel
371 This plugin collects information from virtualized guests.
374 %if %{with_memcachec}
376 Summary: Memcachec plugin for collectd
377 Group: System Environment/Daemons
378 Requires: %{name}%{?_isa} = %{version}-%{release}
379 BuildRequires: libmemcached-devel
380 %description memcachec
381 The Memcachec plugin uses libmemcached to read statistics from a Memcached
382 instance. Note that another plugin, named `memcached', exists and does a
383 similar job, without requiring the installation of libmemcached.
388 Summary: MySQL plugin for collectd
389 Group: System Environment/Daemons
390 Requires: %{name}%{?_isa} = %{version}-%{release}
391 BuildRequires: mysql-devel
393 MySQL querying plugin. This plugin provides data of issued commands, called
394 handlers and database traffic.
399 Summary: Nginx plugin for collectd
400 Group: System Environment/Daemons
401 Requires: %{name}%{?_isa} = %{version}-%{release}
402 BuildRequires: curl-devel
404 This plugin gets data provided by nginx.
407 %if %{with_notify_desktop}
408 %package notify_desktop
409 Summary: Notify_desktop plugin for collectd
410 Group: System Environment/Daemons
411 Requires: %{name}%{?_isa} = %{version}-%{release}
412 BuildRequires: libnotify-devel, gtk2-devel
413 %description notify_desktop
414 The Notify Desktop plugin uses libnotify to display notifications to the user
415 via the desktop notification specification, i. e. on an X display.
418 %if %{with_notify_email}
419 %package notify_email
420 Summary: Notify_email plugin for collectd
421 Group: System Environment/Daemons
422 Requires: %{name}%{?_isa} = %{version}-%{release}
423 BuildRequires: libesmtp-devel
424 %description notify_email
425 The Notify Email plugin uses libESMTP to send notifications to a configured
431 Summary: Nut plugin for collectd
432 Group: System Environment/Daemons
433 Requires: %{name}%{?_isa} = %{version}-%{release}
434 BuildRequires: nut-devel
436 This plugin for collectd provides Network UPS Tools support.
441 Summary: Perl plugin for collectd
442 Group: System Environment/Daemons
443 Requires: %{name}%{?_isa} = %{version}-%{release}
444 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
445 BuildRequires: perl-ExtUtils-Embed
447 The Perl plugin embeds a Perl interpreter into collectd and exposes the
448 application programming interface (API) to Perl-scripts.
453 Summary: Pinba plugin for collectd
454 Group: System Environment/Daemons
455 Requires: %{name}%{?_isa} = %{version}-%{release}
456 BuildRequires: protobuf-c-devel
458 The Pinba plugin receives and dispatches timing values from Pinba, a profiling
464 Summary: Ping plugin for collectd
465 Group: System Environment/Daemons
466 Requires: %{name}%{?_isa} = %{version}-%{release}
467 BuildRequires: liboping-devel
469 The Ping plugin measures network latency using ICMP “echo requests”, usually
473 %if %{with_postgresql}
475 Summary: PostgreSQL plugin for collectd
476 Group: System Environment/Daemons
477 Requires: %{name}%{?_isa} = %{version}-%{release}
478 BuildRequires: postgresql-devel
479 %description postgresql
480 The PostgreSQL plugin connects to and executes SQL statements on a PostgreSQL
486 Summary: Python plugin for collectd
487 Group: System Environment/Daemons
488 Requires: %{name}%{?_isa} = %{version}-%{release}
490 BuildRequires: python-devel
492 BuildRequires: python26-devel
495 The Python plugin embeds a Python interpreter into collectd and exposes the
496 application programming interface (API) to Python-scripts.
501 Summary: Redis plugin for collectd
502 Group: System Environment/Daemons
503 Requires: %{name}%{?_isa} = %{version}-%{release}
504 BuildRequires: credis-devel
506 The Redis plugin connects to one or more instances of Redis, a key-value store,
507 and collects usage information using the credis library.
510 %if %{with_rrdcached}
512 Summary: RRDCached plugin for collectd
513 Group: System Environment/Daemons
514 Requires: %{name}%{?_isa} = %{version}-%{release}, rrdtool >= 1.4
515 BuildRequires: rrdtool-devel
516 %description rrdcached
517 The RRDCacheD plugin connects to the “RRD caching daemon”, rrdcached and
518 submits updates for RRD files to that daemon.
523 Summary: RRDtool plugin for collectd
524 Group: System Environment/Daemons
525 Requires: %{name}%{?_isa} = %{version}-%{release}
526 BuildRequires: rrdtool-devel
528 The RRDtool plugin writes values to RRD-files using librrd.
533 Summary: Sensors plugin for collectd
534 Group: System Environment/Daemons
535 Requires: %{name}%{?_isa} = %{version}-%{release}
536 BuildRequires: lm_sensors-devel
538 This plugin for collectd provides querying of sensors supported by lm_sensors.
543 Summary: SNMP plugin for collectd
544 Group: System Environment/Daemons
545 Requires: %{name}%{?_isa} = %{version}-%{release}
546 BuildRequires: net-snmp-devel
548 This plugin for collectd allows querying of network equipment using SNMP.
553 Summary: Varnish plugin for collectd
554 Group: System Environment/Daemons
555 Requires: %{name}%{?_isa} = %{version}-%{release}
556 BuildRequires: varnish-libs-devel
558 The Varnish plugin collects information about Varnish, an HTTP accelerator.
561 %if %{with_write_http}
563 Summary: Write-HTTP plugin for collectd
564 Group: System Environment/Daemons
565 Requires: %{name}%{?_isa} = %{version}-%{release}
566 BuildRequires: curl-devel
567 %description write_http
568 The Write-HTTP plugin sends the values collected by collectd to a web-server
569 using HTTP POST requests.
572 %if %{with_write_redis}
574 Summary: Write-Redis plugin for collectd
575 Group: System Environment/Daemons
576 Requires: %{name}%{?_isa} = %{version}-%{release}
577 BuildRequires: credis-devel
578 %description write_redis
579 The Write Redis plugin stores values in Redis, a “data structures server”.
582 %if %{with_write_riemann}
583 %package write_riemann
584 Summary: riemann plugin for collectd
585 Group: System Environment/Daemons
586 Requires: %{name}%{?_isa} = %{version}-%{release}
587 BuildRequires: protobuf-c-devel
588 %description write_riemann
589 The riemann plugin submits values to Riemann, an event stream processor.
593 Summary: Web-based viewer for collectd
594 Group: System Environment/Daemons
595 Requires: %{name}%{?_isa} = %{version}-%{release}
597 %description collection3
598 collection3 is a graphing front-end for the RRD files created by and filled
599 with collectd. It is written in Perl and should be run as an CGI-script.
600 Graphs are generated on-the-fly, so no cron job or similar is necessary.
602 %package php-collection
603 Summary: collect php webfrontent
604 Group: System Environment/Daemons
605 Requires: collectd = %{version}-%{release}
608 Requires: php-rrdtool
609 %description php-collection
610 PHP graphing frontend for RRD files created by and filled with collectd.
613 Summary: Contrib files for collectd
614 Group: System Environment/Daemons
615 Requires: %{name}%{?_isa} = %{version}-%{release}
617 All the files found under contrib/ in the source tree are bundled in this
620 %package -n libcollectdclient
621 Summary: Collectd client library
622 Group: System Environment/Daemons
623 %description -n libcollectdclient
624 Collectd client library
626 %package -n libcollectdclient-devel
627 Summary: Development files for libcollectdclient
628 Group: System Environment/Daemons
630 Requires: libcollectdclient%{?_isa} = %{version}-%{release}
631 %description -n libcollectdclient-devel
632 Development files for libcollectdclient
639 %if %{with_aggregation}
640 %define _with_aggregation --enable-aggregation
642 %define _with_aggregation --disable-aggregation
646 %define _with_amqp --enable-amqp
648 %define _with_amqp --disable-amqp
652 %define _with_apache --enable-apache
654 %define _with_apache --disable-apache
658 %define _with_apcups --enable-apcups
660 %define _with_apcups --disable-apcups
663 %if %{with_apple_sensors}
664 %define _with_apple_sensors --enable-apple_sensors
666 %define _with_apple_sensors --disable-apple_sensors
670 %define _with_ascent --enable-ascent
672 %define _with_ascent --disable-ascent
676 %define _with_battery --enable-battery
678 %define _with_battery --disable-battery
682 %define _with_bind --enable-bind
684 %define _with_bind --disable-bind
687 %if %{with_conntrack}
688 %define _with_conntrack --enable-conntrack
690 %define _with_conntrack --disable-conntrack
693 %if %{with_contextswitch}
694 %define _with_contextswitch --enable-contextswitch
696 %define _with_contextswitch --disable-contextswitch
700 %define _with_cpu --enable-cpu
702 %define _with_cpu --disable-cpu
706 %define _with_cpufreq --enable-cpufreq
708 %define _with_cpufreq --disable-cpufreq
712 %define _with_csv --enable-csv
714 %define _with_csv --disable-csv
718 %define _with_curl --enable-curl
720 %define _with_curl --disable-curl
723 %if %{with_curl_json}
724 %define _with_curl_json --enable-curl_json
726 %define _with_curl_json --disable-curl_json
730 %define _with_curl_xml --enable-curl_xml
732 %define _with_curl_xml --disable-curl_xml
736 %define _with_dbi --enable-dbi
738 %define _with_dbi --disable-dbi --without-libdbi
742 %define _with_df --enable-df
744 %define _with_df --disable-df
748 %define _with_disk --enable-disk
750 %define _with_disk --disable-disk
754 %define _with_dns --enable-dns
756 %define _with_dns --disable-dns
760 %define _with_email --enable-email
762 %define _with_email --disable-email
766 %define _with_entropy --enable-entropy
768 %define _with_entropy --disable-entropy
772 %define _with_ethstat --enable-ethstat
774 %define _with_ethstat --disable-ethstat
778 %define _with_exec --enable-exec
780 %define _with_exec --disable-exec
783 %if %{with_filecount}
784 %define _with_filecount --enable-filecount
786 %define _with_filecount --disable-filecount
790 %define _with_fscache --enable-fscache
792 %define _with_fscache --disable-fscache
796 %define _with_gmond --enable-gmond
798 %define _with_gmond --disable-gmond
802 %define _with_hddtemp --enable-hddtemp
804 %define _with_hddtemp --disable-hddtemp
807 %if %{with_interface}
808 %define _with_interface --enable-interface
810 %define _with_interface --disable-interface
814 %define _with_ipmi --enable-ipmi
816 %define _with_ipmi --disable-ipmi
820 %define _with_iptables --enable-iptables
822 %define _with_iptables --disable-iptables
826 %define _with_ipvs --enable-ipvs
828 %define _with_ipvs --disable-ipvs
832 %define _with_irq --enable-irq
834 %define _with_irq --disable-irq
838 %define _with_java --enable-java --with-java=%{java_home}/
840 %define _with_java --disable-java
844 %define _with_libvirt --enable-libvirt
846 %define _with_libvirt --disable-libvirt
850 %define _with_load --enable-load
852 %define _with_load --disable-load
856 %define _with_logfile --enable-logfile
858 %define _with_logfile --disable-logfile
862 %define _with_lpar --enable-lpar
864 %define _with_lpar --disable-lpar
868 %define _with_madwifi --enable-madwifi
870 %define _with_madwifi --disable-madwifi
874 %define _with_mbmon --enable-mbmon
876 %define _with_mbmon --disable-mbmon
880 %define _with_md --enable-md
882 %define _with_md --disable-md
885 %if %{with_memcachec}
886 %define _with_memcachec --enable-memcachec
888 %define _with_memcachec --disable-memcachec
891 %if %{with_memcached}
892 %define _with_memcached --enable-memcached
894 %define _with_memcached --disable-memcached
898 %define _with_memory --enable-memory
900 %define _with_memory --disable-memory
904 %define _with_modbus --enable-modbus
906 %define _with_modbus --disable-modbus
909 %if %{with_multimeter}
910 %define _with_multimeter --enable-multimeter
912 %define _with_multimeter --disable-multimeter
916 %define _with_mysql --enable-mysql
918 %define _with_mysql --disable-mysql
922 %define _with_netapp --enable-netapp
924 %define _with_netapp --disable-netapp
928 %define _with_netlink --enable-netlink
930 %define _with_netlink --disable-netlink
934 %define _with_network --enable-network
936 %define _with_network --disable-network
940 %define _with_nfs --enable-nfs
942 %define _with_nfs --disable-nfs
946 %define _with_nginx --enable-nginx
948 %define _with_nginx --disable-nginx
951 %if %{with_notify_desktop}
952 %define _with_notify_desktop --enable-notify_desktop
954 %define _with_notify_desktop --disable-notify_desktop
957 %if %{with_notify_email}
958 %define _with_notify_email --enable-notify_email
960 %define _with_notify_email --disable-notify_email --without-libesmpt
964 %define _with_ntpd --enable-ntpd
966 %define _with_ntpd --disable-ntpd
970 %define _with_numa --enable-numa
972 %define _with_numa --disable-numa
976 %define _with_nut --enable-nut
978 %define _with_nut --disable-nut
982 %define _with_olsrd --enable-olsrd
984 %define _with_olsrd --disable-olsrd
988 %define _with_onewire --enable-onewire
990 %define _with_onewire --disable-onewire
994 %define _with_openvpn --enable-openvpn
996 %define _with_openvpn --disable-openvpn
1000 %define _with_oracle --enable-oracle
1002 %define _with_oracle --disable-oracle
1006 %define _with_perl --enable-perl --with-perl-bindings="INSTALLDIRS=vendor"
1008 %define _with_perl --disable-perl --without-libperl
1012 %define _with_pf --enable-pf
1014 %define _with_pf --disable-pf
1018 %define _with_pinba --enable-pinba
1020 %define _with_pinba --disable-pinba
1024 %define _with_ping --enable-ping
1026 %define _with_ping --disable-ping
1029 %if %{with_postgresql}
1030 %define _with_postgresql --enable-postgresql
1032 %define _with_postgresql --disable-postgresql
1035 %if %{with_powerdns}
1036 %define _with_powerdns --enable-powerdns
1038 %define _with_powerdns --disable-powerdns
1041 %if %{with_processes}
1042 %define _with_processes --enable-processes
1044 %define _with_processes --disable-processes
1047 %if %{with_protocols}
1048 %define _with_protocols --enable-protocols
1050 %define _with_protocols --disable-protocols
1055 %define _with_python --enable-python
1057 %define _with_python --enable-python --with-python=%{_bindir}/python2.6
1060 %define _with_python --disable-python
1064 %define _with_redis --enable-redis
1066 %define _with_redis --disable-redis
1069 %if %{with_routeros}
1070 %define _with_routeros --enable-routeros
1072 %define _with_routeros --disable-routeros
1075 %if %{with_rrdcached}
1076 %define _with_rrdcached --enable-rrdcached
1078 %define _with_rrdcached --disable-rrdcached
1082 %define _with_rrdtool --enable-rrdtool
1084 %define _with_rrdtool --disable-rrdtool
1088 %define _with_sensors --enable-sensors
1090 %define _with_sensors --disable-sensors
1094 %define _with_serial --enable-serial
1096 %define _with_serial --disable-serial
1100 %define _with_snmp --enable-snmp
1102 %define _with_snmp --disable-snmp
1106 %define _with_swap --enable-swap
1108 %define _with_swap --disable-swap
1112 %define _with_syslog --enable-syslog
1114 %define _with_syslog --disable-syslog
1118 %define _with_table --enable-table
1120 %define _with_table --disable-table
1124 %define _with_tail --enable-tail
1126 %define _with_tail --disable-tail
1129 %if %{with_tail_csv}
1130 %define _with_tail_csv --enable-tail_csv
1132 %define _with_tail_csv --disable-tail_csv
1136 %define _with_tape --enable-tape
1138 %define _with_tape --disable-tape
1141 %if %{with_tcpconns}
1142 %define _with_tcpconns --enable-tcpconns
1144 %define _with_tcpconns --disable-tcpconns
1147 %if %{with_teamspeak2}
1148 %define _with_teamspeak2 --enable-teamspeak2
1150 %define _with_teamspeak2 --disable-teamspeak2
1154 %define _with_ted --enable-ted
1156 %define _with_ted --disable-ted
1160 %define _with_thermal --enable-thermal
1162 %define _with_thermal --disable-thermal
1165 %if %{with_threshold}
1166 %define _with_threshold --enable-threshold
1168 %define _with_threshold --disable-threshold
1171 %if %{with_tokyotyrant}
1172 %define _with_tokyotyrant --enable-tokyotyrant
1174 %define _with_tokyotyrant --disable-tokyotyrant
1177 %if %{with_unixsock}
1178 %define _with_unixsock --enable-unixsock
1180 %define _with_unixsock --disable-unixsock
1184 %define _with_uptime --enable-uptime
1186 %define _with_uptime --disable-uptime
1190 %define _with_users --enable-users
1192 %define _with_users --disable-users
1196 %define _with_uuid --enable-uuid
1198 %define _with_uuid --disable-uuid
1202 %define _with_varnish --enable-varnish
1204 %define _with_varnish --disable-varnish
1208 %define _with_vmem --enable-vmem
1210 %define _with_vmem --disable-vmem
1214 %define _with_vserver --enable-vserver
1216 %define _with_vserver --disable-vserver
1219 %if %{with_wireless}
1220 %define _with_wireless --enable-wireless
1222 %define _with_wireless --disable-wireless
1225 %if %{with_write_graphite}
1226 %define _with_write_graphite --enable-write_graphite
1228 %define _with_write_graphite --disable-write_graphite
1231 %if %{with_write_http}
1232 %define _with_write_http --enable-write_http
1234 %define _with_write_http --disable-write_http
1237 %if %{with_write_mongodb}
1238 %define _with_write_mongodb --enable-write_mongodb
1240 %define _with_write_mongodb --disable-write_mongodb --without-libmongoc
1243 %if %{with_write_redis}
1244 %define _with_write_redis --enable-write_redis
1246 %define _with_write_redis --disable-write_redis --without-libcredis
1249 %if %{with_write_riemann}
1250 %define _with_write_riemann --enable-write_riemann
1252 %define _with_write_riemann --disable-write_riemann
1256 %define _with_xmms --enable-xmms
1258 %define _with_xmms --disable-xmms
1262 %define _with_zfs_arc --enable-zfs_arc
1264 %define _with_zfs_arc --disable-zfs_arc
1267 %configure CFLAGS="%{optflags} -DLT_LAZY_OR_NOW=\"RTLD_LAZY|RTLD_GLOBAL\"" \
1269 --without-included-ltdl \
1270 --enable-all-plugins=yes \
1271 --enable-match_empty_counter \
1272 --enable-match_hashed \
1273 --enable-match_regex \
1274 --enable-match_timediff \
1275 --enable-match_value \
1276 --enable-target_notification \
1277 --enable-target_replace \
1278 --enable-target_scale \
1279 --enable-target_set \
1280 --enable-target_v5upgrade \
1281 %{?_with_aggregation} \
1285 %{?_with_apple_sensors} \
1289 %{?_with_conntrack} \
1290 %{?_with_contextswitch} \
1295 %{?_with_curl_json} \
1296 %{?_with_curl_xml} \
1305 %{?_with_filecount} \
1309 %{?_with_interface} \
1311 %{?_with_iptables} \
1316 %{?_with_memcachec} \
1318 %{?_with_multimeter} \
1323 %{?_with_notify_desktop} \
1324 %{?_with_notify_email} \
1332 %{?_with_postgresql} \
1335 %{?_with_routeros} \
1336 %{?_with_rrdcached} \
1341 %{?_with_tokyotyrant} \
1343 %{?_with_write_http} \
1344 %{?_with_write_mongodb} \
1345 %{?_with_write_redis} \
1354 %{?_with_memcached} \
1362 %{?_with_powerdns} \
1363 %{?_with_processes} \
1364 %{?_with_protocols} \
1370 %{?_with_tail_csv} \
1371 %{?_with_tcpconns} \
1372 %{?_with_teamspeak2} \
1375 %{?_with_threshold} \
1376 %{?_with_unixsock} \
1383 %{?_with_write_graphite} \
1384 %{?_with_write_http} \
1385 %{?_with_write_riemann}
1388 %{__make} %{?_smp_mflags}
1393 %{__make} install DESTDIR=%{buildroot}
1394 %{__install} -Dp -m 0755 contrib/redhat/init.d-collectd %{buildroot}%{_initrddir}/collectd
1395 %{__install} -Dp -m0644 src/collectd.conf %{buildroot}%{_sysconfdir}/collectd.conf
1396 %{__install} -d %{buildroot}%{_sharedstatedir}/collectd/
1397 %{__install} -d %{buildroot}%{_sysconfdir}/collectd.d/
1399 %{__mkdir} -p %{buildroot}%{_localstatedir}/www
1400 %{__mkdir} -p %{buildroot}/%{_sysconfdir}/httpd/conf.d
1402 %{__cp} -a contrib/collection3 %{buildroot}%{_localstatedir}/www
1403 %{__cp} -a contrib/redhat/collection3.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1405 %{__cp} -a contrib/php-collection %{buildroot}%{_localstatedir}/www
1406 %{__cp} -a contrib/redhat/php-collection.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/
1409 find contrib/ -type f -exec %{__chmod} a-x {} \;
1410 # *.la files shouldn't be distributed.
1411 rm -f %{buildroot}/%{_libdir}/{collectd/,}*.la
1413 # Move the Perl examples to a separate directory.
1415 find contrib -name '*.p[lm]' -exec mv {} perl-examples/ \;
1417 # Remove Perl hidden .packlist files.
1418 find %{buildroot} -type f -name .packlist -delete
1419 # Remove Perl temporary file perllocal.pod
1420 find %{buildroot} -type f -name perllocal.pod -delete
1423 rm -f %{buildroot}%{_mandir}/man5/collectd-java.5*
1427 rm -f %{buildroot}%{_mandir}/man5/collectd-perl.5*
1428 rm -f %{buildroot}%{_mandir}/man3/Collectd::Unixsock.3pm*
1429 rm -fr perl-examples/
1430 rm -fr %{buildroot}/usr/lib/perl5/
1433 %if ! %{with_python}
1434 rm -f %{buildroot}%{_mandir}/man5/collectd-python.5*
1438 rm -f %{buildroot}%{_mandir}/man5/collectd-snmp.5*
1446 /sbin/chkconfig --add collectd
1449 if [ $1 -eq 0 ]; then
1450 /sbin/service collectd stop &>/dev/null
1451 /sbin/chkconfig --del collectd
1455 if [ $1 -ge 1 ]; then
1456 /sbin/service collectd condrestart &>/dev/null || :
1459 %post -n libcollectdclient -p /sbin/ldconfig
1460 %postun -n libcollectdclient -p /sbin/ldconfig
1464 %doc AUTHORS COPYING ChangeLog README
1465 %config(noreplace) %{_sysconfdir}/collectd.conf
1466 %{_initrddir}/collectd
1467 %{_sbindir}/collectd
1468 %{_bindir}/collectd-nagios
1469 %{_bindir}/collectd-tg
1470 %{_bindir}/collectdctl
1471 %{_sbindir}/collectdmon
1472 %{_datadir}/collectd/
1473 %{_sharedstatedir}/collectd
1474 %{_mandir}/man1/collectd-nagios.1*
1475 %{_mandir}/man1/collectd.1*
1476 %{_mandir}/man1/collectdctl.1*
1477 %{_mandir}/man1/collectdmon.1*
1478 %{_mandir}/man1/collectd-tg.1*
1479 %{_mandir}/man5/collectd-email.5*
1480 %{_mandir}/man5/collectd-exec.5*
1481 %{_mandir}/man5/collectd-threshold.5*
1482 %{_mandir}/man5/collectd-unixsock.5*
1483 %{_mandir}/man5/collectd.conf.5*
1484 %{_mandir}/man5/types.db.5*
1486 # all plugins bundled with the main collectd package
1487 %{_libdir}/%{name}/match_empty_counter.so
1488 %{_libdir}/%{name}/match_hashed.so
1489 %{_libdir}/%{name}/match_regex.so
1490 %{_libdir}/%{name}/match_timediff.so
1491 %{_libdir}/%{name}/match_value.so
1492 %{_libdir}/%{name}/target_notification.so
1493 %{_libdir}/%{name}/target_replace.so
1494 %{_libdir}/%{name}/target_scale.so
1495 %{_libdir}/%{name}/target_set.so
1496 %{_libdir}/%{name}/target_v5upgrade.so
1498 %if %{with_aggregation}
1499 %{_libdir}/%{name}/aggregation.so
1502 %{_libdir}/%{name}/apcups.so
1505 %{_libdir}/%{name}/battery.so
1507 %if %{with_conntrack}
1508 %{_libdir}/%{name}/conntrack.so
1510 %if %{with_contextswitch}
1511 %{_libdir}/%{name}/contextswitch.so
1514 %{_libdir}/%{name}/cpu.so
1517 %{_libdir}/%{name}/cpufreq.so
1520 %{_libdir}/%{name}/csv.so
1523 %{_libdir}/%{name}/df.so
1526 %{_libdir}/%{name}/disk.so
1529 %{_libdir}/%{name}/ethstat.so
1532 %{_libdir}/%{name}/entropy.so
1535 %{_libdir}/%{name}/exec.so
1537 %if %{with_filecount}
1538 %{_libdir}/%{name}/filecount.so
1541 %{_libdir}/%{name}/fscache.so
1543 %if %{with_interface}
1544 %{_libdir}/%{name}/interface.so
1547 %{_libdir}/%{name}/ipvs.so
1550 %{_libdir}/%{name}/irq.so
1553 %{_libdir}/%{name}/load.so
1556 %{_libdir}/%{name}/logfile.so
1559 %{_libdir}/%{name}/madwifi.so
1562 %{_libdir}/%{name}/mbmon.so
1565 %{_libdir}/%{name}/md.so
1567 %if %{with_memcached}
1568 %{_libdir}/%{name}/memcached.so
1571 %{_libdir}/%{name}/memory.so
1573 %if %{with_multimeter}
1574 %{_libdir}/%{name}/multimeter.so
1577 %{_libdir}/%{name}/network.so
1580 %{_libdir}/%{name}/nfs.so
1583 %{_libdir}/%{name}/ntpd.so
1586 %{_libdir}/%{name}/numa.so
1589 %{_libdir}/%{name}/openvpn.so
1592 %{_libdir}/%{name}/olsrd.so
1594 %if %{with_powerdns}
1595 %{_libdir}/%{name}/powerdns.so
1597 %if %{with_processes}
1598 %{_libdir}/%{name}/processes.so
1600 %if %{with_protocols}
1601 %{_libdir}/%{name}/protocols.so
1604 %{_libdir}/%{name}/serial.so
1607 %{_libdir}/%{name}/swap.so
1610 %{_libdir}/%{name}/syslog.so
1613 %{_libdir}/%{name}/table.so
1616 %{_libdir}/%{name}/tail.so
1618 %if %{with_tail_csv}
1619 %{_libdir}/%{name}/tail_csv.so
1621 %if %{with_tcpconns}
1622 %{_libdir}/%{name}/tcpconns.so
1624 %if %{with_teamspeak2}
1625 %{_libdir}/%{name}/teamspeak2.so
1628 %{_libdir}/%{name}/ted.so
1631 %{_libdir}/%{name}/thermal.so
1634 %{_libdir}/%{name}/threshold.so
1636 %if %{with_unixsock}
1637 %{_libdir}/%{name}/unixsock.so
1640 %{_libdir}/%{name}/uptime.so
1643 %{_libdir}/%{name}/users.so
1646 %{_libdir}/%{name}/uuid.so
1649 %{_libdir}/%{name}/vmem.so
1652 %{_libdir}/%{name}/vserver.so
1654 %if %{with_wireless}
1655 %{_libdir}/%{name}/wireless.so
1657 %if %{with_write_graphite}
1658 %{_libdir}/%{name}/write_graphite.so
1662 %files -n libcollectdclient-devel
1663 %{_includedir}/collectd/client.h
1664 %{_includedir}/collectd/network.h
1665 %{_includedir}/collectd/network_buffer.h
1666 %{_includedir}/collectd/lcc_features.h
1667 %{_libdir}/pkgconfig/libcollectdclient.pc
1669 %files -n libcollectdclient
1670 %{_libdir}/libcollectdclient.so
1671 %{_libdir}/libcollectdclient.so.*
1675 %{_libdir}/%{name}/amqp.so
1680 %{_libdir}/%{name}/apache.so
1685 %{_libdir}/%{name}/ascent.so
1690 %{_libdir}/%{name}/bind.so
1695 %{_libdir}/%{name}/curl.so
1698 %if %{with_curl_json}
1700 %{_libdir}/%{name}/curl_json.so
1703 %if %{with_curl_xml}
1705 %{_libdir}/%{name}/curl_xml.so
1710 %{_libdir}/%{name}/dns.so
1715 %{_libdir}/%{name}/dbi.so
1720 %{_libdir}/%{name}/email.so
1725 %{_libdir}/%{name}/gmond.so
1730 %{_libdir}/%{name}/hddtemp.so
1735 %{_libdir}/%{name}/ipmi.so
1738 %if %{with_iptables}
1740 %{_libdir}/%{name}/iptables.so
1745 %{_prefix}/share/collectd/java/collectd-api.jar
1746 %{_prefix}/share/collectd/java/generic-jmx.jar
1747 %{_libdir}/%{name}/java.so
1748 %{_mandir}/man5/collectd-java.5*
1753 %{_libdir}/%{name}/libvirt.so
1756 %if %{with_memcachec}
1758 %{_libdir}/%{name}/memcachec.so
1763 %{_libdir}/%{name}/mysql.so
1768 %{_libdir}/%{name}/nginx.so
1771 %if %{with_notify_desktop}
1772 %files notify_desktop
1773 %{_libdir}/%{name}/notify_desktop.so
1776 %if %{with_notify_email}
1778 %{_libdir}/%{name}/notify_email.so
1783 %{_libdir}/%{name}/nut.so
1788 %doc perl-examples/*
1789 %{perl_vendorlib}/Collectd.pm
1790 %{perl_vendorlib}/Collectd/
1791 %{_mandir}/man3/Collectd::Unixsock.3pm*
1792 %{_mandir}/man5/collectd-perl.5*
1793 %{_libdir}/%{name}/perl.so
1798 %{_libdir}/%{name}/pinba.so
1803 %{_libdir}/%{name}/ping.so
1806 %if %{with_postgresql}
1808 %{_prefix}/share/collectd/postgresql_default.conf
1809 %{_libdir}/%{name}/postgresql.so
1814 %{_mandir}/man5/collectd-python*
1815 %{_libdir}/%{name}/python.so
1820 %{_libdir}/%{name}/redis.so
1823 %if %{with_rrdcached}
1825 %{_libdir}/%{name}/rrdcached.so
1830 %{_libdir}/%{name}/rrdtool.so
1835 %{_libdir}/%{name}/sensors.so
1840 %{_mandir}/man5/collectd-snmp.5*
1841 %{_libdir}/%{name}/snmp.so
1846 %{_libdir}/%{name}/varnish.so
1849 %if %{with_write_http}
1851 %{_libdir}/%{name}/write_http.so
1854 %if %{with_write_redis}
1856 %{_libdir}/%{name}/write_redis.so
1859 %if %{with_write_riemann}
1860 %files write_riemann
1861 %{_libdir}/%{name}/write_riemann.so
1865 %{_localstatedir}/www/collection3
1866 %{_sysconfdir}/httpd/conf.d/collection3.conf
1868 %files php-collection
1869 %{_localstatedir}/www/php-collection
1870 %{_sysconfdir}/httpd/conf.d/php-collection.conf
1876 * Tue Aug 06 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.1-1
1877 - New upstream version
1878 - Added RHEL5 support:
1879 * conditionally disable plugins not building on this platform
1880 * add/specify some build dependencies and options
1881 * replace some RPM macros not available on this platform
1882 - Removed duplicate --enable-aggregation
1883 - Added some comments & usage examples
1884 - Replaced a couple of "Buildrequires" by "BuildRequires"
1886 * Wed Apr 10 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.3.0-1
1887 - New upstream version
1888 - Enabled write_riemann plugin
1889 - Enabled tail_csv plugin
1890 - Installed collectd-tc manpage
1892 * Thu Jan 11 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-3
1893 - remove dependency on libstatgrab, which isn't required on linux
1895 * Thu Jan 03 2013 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-2
1896 - collection3 and php-collection viewers are now in separate packages
1898 * Fri Dec 21 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.2.0-1
1899 - New upstream version
1900 - Enabled aggregation plugin
1901 - Installed collectd-tc
1902 - Added network.h and network_buffer.h to libcollectdclient-devel
1903 - Moved libxml2-devel and libcurl-devel BRs to relevant plugins sections
1904 - Moved libcollectdclient.so from libcollectdclient-devel to libcollectdclient
1905 - Added rrdcached and redis plugin descriptions
1906 - Mentioned new pf plugin in disabled plugins list
1908 * Sun Nov 18 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-3
1909 - Follow Fedora Packaging Guidelines in java subpackage
1911 * Sat Nov 17 2012 Ruben Kerkhof <ruben@tilaa.nl> 5.1.0-2
1912 - Move perl stuff to perl_vendorlib
1913 - Replace hardcoded paths with macros
1914 - Remove unneccesary Requires
1915 - Removed .a and .la files
1916 - Some other small cleanups
1918 * Fri Nov 16 2012 Marc Fournier <marc.fournier@camptocamp.com> 5.1.0-1
1919 - New upstream version
1920 - Changes to support 5.1.0
1921 - Enabled all buildable plugins based on libraries available on EL6 + EPEL
1922 - All plugins requiring external libraries are now shipped in seperate
1924 - No longer treat Java plugin as an exception, correctly set $JAVA_HOME during
1925 the build process + ensure build deps are installed.
1926 - Dropped per-plugin configuration files, as they tend to diverge from upstream
1928 - Moved perl stuff to /usr/share/perl5/
1929 - Don't alter Interval and ReadThreads by default, let the user change this
1931 - Initscript improvements:
1932 * checks configuration before (re)starting, based on debian's initscript
1933 * use /etc/sysconfig instdead of /etc/default
1934 * include optional $ARGS in arguments passed to collectd.
1935 - Drop collection.cgi from main package, as it's been obsoleted by collection3
1936 - Moved contrib/ to its own package, to avoid cluttering the main package with
1937 non-essential stuff.
1938 - Replaced BuildPrereq by BuildRequires
1940 * Tue Jan 03 2011 Monetate <jason.stelzer@monetate.com> 5.0.1
1941 - New upstream version
1942 - Changes to support 5.0.1
1944 * Tue Jan 04 2010 Rackspace <stu.hood@rackspace.com> 4.9.0
1945 - New upstream version
1946 - Changes to support 4.9.0
1947 - Added support for Java/GenericJMX plugin
1949 * Mon Mar 17 2008 RightScale <support@rightscale.com> 4.3.1
1950 - New upstream version
1951 - Changes to support 4.3.1
1952 - Added More Prereqs to support more plugins
1953 - Added support for perl plugin
1955 * Mon Aug 06 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.6
1956 - New upstream version
1958 * Wed Jul 25 2007 Kjell Randa <Kjell.Randa@broadpark.no> 4.0.5
1960 - Changes to support 4.0.5
1962 * Wed Jan 11 2007 Iain Lea <iain@bricbrac.de> 3.11.0-0
1963 - fixed spec file to build correctly on fedora core
1964 - added improved init.d script to work with chkconfig
1965 - added %%post and %%postun to call chkconfig automatically
1967 * Sun Jul 09 2006 Florian octo Forster <octo@verplant.org> 3.10.0-1
1968 - New upstream version
1970 * Tue Jun 25 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
1971 - New upstream version
1973 * Tue Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
1974 - New upstream version
1976 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
1977 - New upstream version
1979 * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
1980 - New upstream version
1982 * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
1983 - New upstream version
1985 * Fri Apr 14 2006 Florian octo Forster <octo@verplant.org> 3.9.0-1
1986 - New upstream version
1987 - Added the `apache' package.
1989 * Thu Mar 14 2006 Florian octo Forster <octo@verplant.org> 3.8.2-1
1990 - New upstream version
1992 * Thu Mar 13 2006 Florian octo Forster <octo@verplant.org> 3.8.1-1
1993 - New upstream version
1995 * Thu Mar 09 2006 Florian octo Forster <octo@verplant.org> 3.8.0-1
1996 - New upstream version
1998 * Sat Feb 18 2006 Florian octo Forster <octo@verplant.org> 3.7.2-1
1999 - Include `tape.so' so the build doesn't terminate because of missing files..
2000 - New upstream version
2002 * Sat Feb 04 2006 Florian octo Forster <octo@verplant.org> 3.7.1-1
2003 - New upstream version
2005 * Mon Jan 30 2006 Florian octo Forster <octo@verplant.org> 3.7.0-1
2006 - New upstream version
2007 - Removed the extra `hddtemp' package
2009 * Tue Jan 24 2006 Florian octo Forster <octo@verplant.org> 3.6.2-1
2010 - New upstream version
2012 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.1-1
2013 - New upstream version
2015 * Fri Jan 20 2006 Florian octo Forster <octo@verplant.org> 3.6.0-1
2016 - New upstream version
2017 - Added config file, `collectd.conf(5)', `df.so'
2018 - Added package `collectd-mysql', dependency on `mysqlclient10 | mysql'
2020 * Wed Dec 07 2005 Florian octo Forster <octo@verplant.org> 3.5.0-1
2021 - New upstream version
2023 * Sat Nov 26 2005 Florian octo Forster <octo@verplant.org> 3.4.0-1
2024 - New upstream version
2026 * Sat Nov 05 2005 Florian octo Forster <octo@verplant.org> 3.3.0-1
2027 - New upstream version
2029 * Tue Oct 26 2005 Florian octo Forster <octo@verplant.org> 3.2.0-1
2030 - New upstream version
2031 - Added statement to remove the `*.la' files. This fixes a problem when
2032 `Unpackaged files terminate build' is in effect.
2033 - Added `processes.so*' to the main package
2035 * Fri Oct 14 2005 Florian octo Forster <octo@verplant.org> 3.1.0-1
2036 - New upstream version
2037 - Added package `collectd-hddtemp'
2039 * Fri Sep 30 2005 Florian octo Forster <octo@verplant.org> 3.0.0-1
2040 - New upstream version
2041 - Split the package into `collectd' and `collectd-sensors'
2043 * Fri Sep 16 2005 Florian octo Forster <octo@verplant.org> 2.1.0-1
2044 - New upstream version
2046 * Mon Sep 10 2005 Florian octo Forster <octo@verplant.org> 2.0.0-1
2047 - New upstream version
2049 * Mon Aug 29 2005 Florian octo Forster <octo@verplant.org> 1.8.0-1
2050 - New upstream version
2052 * Sun Aug 25 2005 Florian octo Forster <octo@verplant.org> 1.7.0-1
2053 - New upstream version
2055 * Sun Aug 21 2005 Florian octo Forster <octo@verplant.org> 1.6.0-1
2056 - New upstream version
2058 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5.1-1
2059 - New upstream version
2061 * Sun Jul 17 2005 Florian octo Forster <octo@verplant.org> 1.5-1
2062 - New upstream version
2064 * Mon Jul 11 2005 Florian octo Forster <octo@verplant.org> 1.4.2-1
2065 - New upstream version
2067 * Sat Jul 09 2005 Florian octo Forster <octo@verplant.org> 1.4-1
2068 - Built on RedHat 7.3