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

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 16:59:33
  Author: foutrelis
Revision: 752151

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 752150, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 752150, collectd/trunk/service)

--+
 PKGBUILD |   72 +
 service  |   13 +++
 2 files changed, 85 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 752150, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-12 16:59:33 UTC (rev 752151)
@@ -0,0 +1,72 @@
+# Maintainer:
+# Contributor: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.12.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=('5bae043042c19c31f77eb8464e56a01a5454e0b39fa07cf7ad0f1bfc9c3a09d6'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+build() {
+   cd ${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 ${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-staging-x86_64/service (from rev 752150, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2020-11-12 16:59:33 UTC (rev 752151)
@@ -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


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

2020-10-27 Thread Felix Yan via arch-commits
Date: Tuesday, October 27, 2020 @ 10:02:59
  Author: felixonmars
Revision: 734214

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 734213, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 734213, collectd/trunk/service)

--+
 PKGBUILD |   72 +
 service  |   13 +++
 2 files changed, 85 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 734213, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-27 10:02:59 UTC (rev 734214)
@@ -0,0 +1,72 @@
+# Maintainer:
+# Contributor: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.12.0
+pkgrel=2
+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=('5bae043042c19c31f77eb8464e56a01a5454e0b39fa07cf7ad0f1bfc9c3a09d6'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+build() {
+   cd ${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 ${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-staging-x86_64/service (from rev 734213, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2020-10-27 10:02:59 UTC (rev 734214)
@@ -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


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

2020-06-21 Thread Felix Yan via arch-commits
Date: Sunday, June 21, 2020 @ 16:06:44
  Author: felixonmars
Revision: 649607

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 649604, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 649605, collectd/trunk/service)

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

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 649604, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-06-21 16:06:44 UTC (rev 649607)
@@ -0,0 +1,71 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.11.0
+pkgrel=4
+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-staging-x86_64/service (from rev 649605, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2020-06-21 16:06:44 UTC (rev 649607)
@@ -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


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

2020-05-19 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, May 19, 2020 @ 06:51:36
  Author: bisson
Revision: 629796

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 629795, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 629795, collectd/trunk/service)

--+
 PKGBUILD |   77 +
 service  |   13 ++
 2 files changed, 90 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 629795, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-05-19 06:51:36 UTC (rev 629796)
@@ -0,0 +1,77 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.10.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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+
'https://github.com/collectd/collectd/pull/3344/commits/071af20ddcde3b58ddceacfd6eb95b6756af4323.patch'
+'service')
+sha256sums=('869a6ae404f4b9aa0e830b8639629ddc29ad071b2717ff21bbb6e86d09cb6f58'
+'c859da73801553d2f2d36d53ad4f8f5314dd9be7980c0563eb7ac021a87cd6ae'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../071af20ddcde3b58ddceacfd6eb95b6756af4323.patch
+   ./build.sh
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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-staging-x86_64/service (from rev 629795, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2020-05-19 06:51:36 UTC (rev 629796)
@@ -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


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

2019-12-08 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 8, 2019 @ 08:55:41
  Author: bisson
Revision: 536332

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 536331, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 536331, collectd/trunk/service)

--+
 PKGBUILD |   77 +
 service  |   13 ++
 2 files changed, 90 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 536331, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-08 08:55:41 UTC (rev 536332)
@@ -0,0 +1,77 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.10.0
+pkgrel=2
+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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+
'https://github.com/collectd/collectd/pull/3344/commits/071af20ddcde3b58ddceacfd6eb95b6756af4323.patch'
+'service')
+sha256sums=('869a6ae404f4b9aa0e830b8639629ddc29ad071b2717ff21bbb6e86d09cb6f58'
+'c859da73801553d2f2d36d53ad4f8f5314dd9be7980c0563eb7ac021a87cd6ae'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../071af20ddcde3b58ddceacfd6eb95b6756af4323.patch
+   ./build.sh
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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-staging-x86_64/service (from rev 536331, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2019-12-08 08:55:41 UTC (rev 536332)
@@ -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


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

2019-11-04 Thread Evangelos Foutras via arch-commits
Date: Monday, November 4, 2019 @ 08:12:49
  Author: foutrelis
Revision: 523625

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 523623, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 523623, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 523623, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-11-04 08:12:49 UTC (rev 523625)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.2
+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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha256sums=('961116e74ac505b920578932fd2bd9904febbc7d5aefba3e0ea3d44337c00119'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+   ./build.sh
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python \
+   --with-perl-bindings='INSTALLDIRS=vendor'
+   make all
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${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-staging-x86_64/service (from rev 523623, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2019-11-04 08:12:49 UTC (rev 523625)
@@ -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


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

2019-10-10 Thread Gaëtan Bisson via arch-commits
Date: Thursday, October 10, 2019 @ 20:17:40
  Author: bisson
Revision: 514558

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 514557, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 514557, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 514557, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-10 20:17:40 UTC (rev 514558)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.9.2
+pkgrel=2
+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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("https://github.com/${pkgname}/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;
+'service')
+sha256sums=('961116e74ac505b920578932fd2bd9904febbc7d5aefba3e0ea3d44337c00119'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+   ./build.sh
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python \
+   --with-perl-bindings='INSTALLDIRS=vendor'
+   make all
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${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-staging-x86_64/service (from rev 514557, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2019-10-10 20:17:40 UTC (rev 514558)
@@ -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


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

2018-10-09 Thread Felix Yan via arch-commits
Date: Tuesday, October 9, 2018 @ 18:17:58
  Author: felixonmars
Revision: 391721

archrelease: copy trunk to community-testing-x86_64

Added:
  collectd/repos/community-testing-x86_64/
  collectd/repos/community-testing-x86_64/PKGBUILD
(from rev 391720, collectd/trunk/PKGBUILD)
  collectd/repos/community-testing-x86_64/service
(from rev 391720, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-testing-x86_64/PKGBUILD (from rev 391720, 
collectd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-10-09 18:17:58 UTC (rev 391721)
@@ -0,0 +1,74 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=11
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha512sums=('1b3d0cc44e2ca54e13eebf292074f1efa8b33d6800d04405e0eaaa2dd1cb2416c6eae580729fb5aead23a5039f41ffe8a9989a907a8c18be8f867f1099fc0008'
+
'736ffa8a8b4a738d75acd2fc272ef88e23cc2d0c64dd91746d48707a54eebe805998c0ea10c89db96bbe1e11d9b27212c2997854805c8d022d9ae2d89ae4fa50')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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 391720, 
collectd/trunk/service)
===
--- community-testing-x86_64/service(rev 0)
+++ community-testing-x86_64/service2018-10-09 18:17:58 UTC (rev 391721)
@@ -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


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

2018-09-05 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, September 5, 2018 @ 21:26:13
  Author: bisson
Revision: 377041

archrelease: copy trunk to community-testing-x86_64

Added:
  collectd/repos/community-testing-x86_64/
  collectd/repos/community-testing-x86_64/PKGBUILD
(from rev 377040, collectd/trunk/PKGBUILD)
  collectd/repos/community-testing-x86_64/service
(from rev 377040, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-testing-x86_64/PKGBUILD (from rev 377040, 
collectd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-09-05 21:26:13 UTC (rev 377041)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=9
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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 377040, 
collectd/trunk/service)
===
--- community-testing-x86_64/service(rev 0)
+++ community-testing-x86_64/service2018-09-05 21:26:13 UTC (rev 377041)
@@ -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


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

2018-09-05 Thread Jelle van der Waa via arch-commits
Date: Wednesday, September 5, 2018 @ 15:03:38
  Author: jelle
Revision: 376944

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 376943, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 376943, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 376943, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-05 15:03:38 UTC (rev 376944)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=7
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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-staging-x86_64/service (from rev 376943, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2018-09-05 15:03:38 UTC (rev 376944)
@@ -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


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

2018-08-01 Thread Evangelos Foutras via arch-commits
Date: Wednesday, August 1, 2018 @ 11:58:53
  Author: foutrelis
Revision: 366617

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 366616, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 366616, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 366616, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-01 11:58:53 UTC (rev 366617)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=7
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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-staging-x86_64/service (from rev 366616, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2018-08-01 11:58:53 UTC (rev 366617)
@@ -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


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

2018-07-26 Thread Felix Yan via arch-commits
Date: Thursday, July 26, 2018 @ 10:20:28
  Author: felixonmars
Revision: 363516

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 363515, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 363515, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 363515, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-26 10:20:28 UTC (rev 363516)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=6
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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-staging-x86_64/service (from rev 363515, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2018-07-26 10:20:28 UTC (rev 363516)
@@ -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


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

2018-04-11 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, April 11, 2018 @ 19:07:39
  Author: bisson
Revision: 315745

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 315744, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 315744, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 315744, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-11 19:07:39 UTC (rev 315745)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=5
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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-staging-x86_64/service (from rev 315744, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2018-04-11 19:07:39 UTC (rev 315745)
@@ -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


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

2018-04-11 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, April 11, 2018 @ 19:03:28
  Author: bisson
Revision: 315743

archrelease: copy trunk to staging-x86_64

Added:
  collectd/repos/staging-x86_64/
  collectd/repos/staging-x86_64/PKGBUILD
(from rev 315742, collectd/trunk/PKGBUILD)
  collectd/repos/staging-x86_64/service
(from rev 315742, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/staging-x86_64/PKGBUILD (from rev 315742, 
collectd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-04-11 19:03:28 UTC (rev 315743)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=5
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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/staging-x86_64/service (from rev 315742, 
collectd/trunk/service)
===
--- staging-x86_64/service  (rev 0)
+++ staging-x86_64/service  2018-04-11 19:03:28 UTC (rev 315743)
@@ -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


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

2018-02-24 Thread Gaëtan Bisson via arch-commits
Date: Saturday, February 24, 2018 @ 19:23:57
  Author: bisson
Revision: 297936

archrelease: copy trunk to community-testing-x86_64

Added:
  collectd/repos/community-testing-x86_64/
  collectd/repos/community-testing-x86_64/PKGBUILD
(from rev 297935, collectd/trunk/PKGBUILD)
  collectd/repos/community-testing-x86_64/service
(from rev 297935, collectd/trunk/service)

--+
 PKGBUILD |   74 +
 service  |   13 ++
 2 files changed, 87 insertions(+)

Copied: collectd/repos/community-testing-x86_64/PKGBUILD (from rev 297935, 
collectd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-02-24 19:23:57 UTC (rev 297936)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=4
+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'
+'libmariadbclient: mysql plugin'
+'libsystemd: 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')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --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 297935, 
collectd/trunk/service)
===
--- community-testing-x86_64/service(rev 0)
+++ community-testing-x86_64/service2018-02-24 19:23:57 UTC (rev 297936)
@@ -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


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

2017-12-10 Thread Gaëtan Bisson via arch-commits
Date: Sunday, December 10, 2017 @ 22:25:31
  Author: bisson
Revision: 273641

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 273640, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 273640, collectd/trunk/service)

--+
 PKGBUILD |   78 +
 service  |   13 ++
 2 files changed, 91 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 273640, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-10 22:25:31 UTC (rev 273641)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.0
+pkgrel=2
+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'
+'libmariadbclient: mysql plugin'
+'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'
+'python2: 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')
+
+makedepends=('curl' 'libdbi' 'libesmtp' 'libgcrypt' 'libmemcached'
+ 'libmariadbclient' 'iproute2' 'net-snmp' 'libnotify' 'openipmi'
+ 'liboping' 'libpcap' 'postgresql-libs' 'python2' 'rrdtool'
+ 'lm_sensors' 'libvirt' 'libxml2' 'yajl' 'libatasmart' 'lvm2'
+ 'protobuf-c' 'mosquitto' 'libmicrohttpd')
+
+depends=('libltdl' 'iptables')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('b06ff476bbf05533cb97ae6749262cc3c76c9969f032bd8496690084ddeb15c9'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python2 \
+   --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-staging-x86_64/service (from rev 273640, 
collectd/trunk/service)
===
--- community-staging-x86_64/service(rev 0)
+++ community-staging-x86_64/service2017-12-10 22:25:31 UTC (rev 273641)
@@ -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