[arch-commits] Commit in collectd/repos (4 files)

Lukas Fleischer lfleischer at archlinux.org
Fri May 29 18:30:00 UTC 2020


    Date: Friday, May 29, 2020 @ 18:30:00
  Author: lfleischer
Revision: 637239

db-move: moved collectd from [community-staging] to [community-testing] (x86_64)

Added:
  collectd/repos/community-testing-x86_64/
  collectd/repos/community-testing-x86_64/PKGBUILD
    (from rev 637237, collectd/repos/community-staging-x86_64/PKGBUILD)
  collectd/repos/community-testing-x86_64/service
    (from rev 637237, collectd/repos/community-staging-x86_64/service)
Deleted:
  collectd/repos/community-staging-x86_64/

----------+
 PKGBUILD |   71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 service  |   13 +++++++++++
 2 files changed, 84 insertions(+)

Copied: collectd/repos/community-testing-x86_64/PKGBUILD (from rev 637237, collectd/repos/community-staging-x86_64/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2020-05-29 18:30:00 UTC (rev 637239)
@@ -0,0 +1,71 @@
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: Gerhard Brauer <gerhard.brauer at web.de>
+
+pkgname=collectd
+pkgver=5.11.0
+pkgrel=3
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+            'libdbi: dbi plugin'
+            'libesmtp: notify_email plugin'
+            'libgcrypt: encryption and authentication for network plugin'
+            'libmemcached: memcachec plugin'
+            'mariadb-libs: mysql plugin'
+            'systemd-libs: UdevNameAttr option'
+            'iproute2: netlink plugin'
+            'net-snmp: snmp plugin'
+            'libnotify: notify_desktop plugin'
+            'openipmi: ipmi plugin'
+            'liboping: ping plugin'
+            'libpcap: dns plugin'
+            'perl: perl plugin'
+            'postgresql-libs: postgresql plugin'
+            'python: python plugin'
+            'rrdtool: rrdtool and rrdcached plugins'
+            'lm_sensors: lm_sensors and sensors plugins'
+            'libvirt: libvirt plugin'
+            'libxml2: ascent and libvirt plugins'
+            'yajl: curl_json plugin'
+            'libatasmart: smart plugin'
+            'lvm2: lvm plugin'
+            'protobuf-c: write_riemann plugin'
+            'mosquitto: MQTT plugin'
+            'libmicrohttpd: prometheus plugin'
+            'librabbitmq-c: amqp plugin'
+            'nut: nut plugin')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("https://storage.googleapis.com/collectd-tarballs/${pkgname}-${pkgver}.tar.bz2"
+        'service')
+sha256sums=('37b10a806e34aa8570c1cafa6006c604796fae13cc2e1b3e630d33dcba9e5db2'
+            'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure \
+		--prefix=/usr \
+		--sysconfdir=/etc \
+		--localstatedir=/var \
+		--sbindir=/usr/bin \
+		--disable-werror \
+		--with-python=/usr/bin/python \
+		--with-perl-bindings='INSTALLDIRS=vendor' \
+
+	make all
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+	rmdir "${pkgdir}/var/run" # FS#30201
+	install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/collectd.service
+	install -Dm644 contrib/collectd2html.pl "${pkgdir}"/usr/share/collectd/collectd2html.pl
+}

Copied: collectd/repos/community-testing-x86_64/service (from rev 637237, collectd/repos/community-staging-x86_64/service)
===================================================================
--- community-testing-x86_64/service	                        (rev 0)
+++ community-testing-x86_64/service	2020-05-29 18:30:00 UTC (rev 637239)
@@ -0,0 +1,13 @@
+[Unit]
+Description=System statistics collection daemon
+After=local-fs.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/collectdmon.pid
+ExecStart=/usr/bin/collectdmon
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=always
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list