[arch-commits] Commit in clamav/repos (18 files)
Evangelos Foutras
foutrelis at archlinux.org
Sun Sep 6 17:01:20 UTC 2015
Date: Sunday, September 6, 2015 @ 19:01:20
Author: foutrelis
Revision: 245368
archrelease: copy trunk to staging-i686, staging-x86_64
Added:
clamav/repos/staging-i686/
clamav/repos/staging-i686/PKGBUILD
(from rev 245365, clamav/trunk/PKGBUILD)
clamav/repos/staging-i686/clamd.conf
(from rev 245365, clamav/trunk/clamd.conf)
clamav/repos/staging-i686/clamd.service
(from rev 245365, clamav/trunk/clamd.service)
clamav/repos/staging-i686/freshclam.conf
(from rev 245365, clamav/trunk/freshclam.conf)
clamav/repos/staging-i686/freshclamd.service
(from rev 245365, clamav/trunk/freshclamd.service)
clamav/repos/staging-i686/install
(from rev 245366, clamav/trunk/install)
clamav/repos/staging-i686/logrotate
(from rev 245366, clamav/trunk/logrotate)
clamav/repos/staging-i686/tmpfiles.d
(from rev 245366, clamav/trunk/tmpfiles.d)
clamav/repos/staging-x86_64/
clamav/repos/staging-x86_64/PKGBUILD
(from rev 245366, clamav/trunk/PKGBUILD)
clamav/repos/staging-x86_64/clamd.conf
(from rev 245366, clamav/trunk/clamd.conf)
clamav/repos/staging-x86_64/clamd.service
(from rev 245366, clamav/trunk/clamd.service)
clamav/repos/staging-x86_64/freshclam.conf
(from rev 245366, clamav/trunk/freshclam.conf)
clamav/repos/staging-x86_64/freshclamd.service
(from rev 245366, clamav/trunk/freshclamd.service)
clamav/repos/staging-x86_64/install
(from rev 245366, clamav/trunk/install)
clamav/repos/staging-x86_64/logrotate
(from rev 245366, clamav/trunk/logrotate)
clamav/repos/staging-x86_64/tmpfiles.d
(from rev 245366, clamav/trunk/tmpfiles.d)
-----------------------------------+
staging-i686/PKGBUILD | 64 ++++++++++++++++++++++++++++++++++++
staging-i686/clamd.conf | 6 +++
staging-i686/clamd.service | 11 ++++++
staging-i686/freshclam.conf | 3 +
staging-i686/freshclamd.service | 10 +++++
staging-i686/install | 15 ++++++++
staging-i686/logrotate | 10 +++++
staging-i686/tmpfiles.d | 1
staging-x86_64/PKGBUILD | 64 ++++++++++++++++++++++++++++++++++++
staging-x86_64/clamd.conf | 6 +++
staging-x86_64/clamd.service | 11 ++++++
staging-x86_64/freshclam.conf | 3 +
staging-x86_64/freshclamd.service | 10 +++++
staging-x86_64/install | 15 ++++++++
staging-x86_64/logrotate | 10 +++++
staging-x86_64/tmpfiles.d | 1
16 files changed, 240 insertions(+)
Copied: clamav/repos/staging-i686/PKGBUILD (from rev 245365, clamav/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD (rev 0)
+++ staging-i686/PKGBUILD 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,64 @@
+# $Id$
+# Contributor: Dale Blount <dale at archlinux.org>
+# Contributor: Gregor Ibic <gregor.ibic at intelicom.si>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=clamav
+pkgver=0.98.7
+pkgrel=3
+pkgdesc='Anti-virus toolkit for Unix'
+url='http://www.clamav.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('libmilter')
+depends=('bzip2' 'libltdl' 'gcc-libs')
+validpgpkeys=('B964E6D7BC7D7C82CCB8D45840B8EA2364221D53'
+ 'F79FB2D08751574C5D3FDFFBB3D5342C260429A0')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig}
+ 'logrotate'
+ 'tmpfiles.d'
+ 'clamd.conf'
+ 'freshclam.conf'
+ 'clamd.service'
+ 'freshclamd.service')
+sha1sums=('c9793d67c041e2b944116d912f8681c8bd6e4432' 'SKIP'
+ 'bb488a56b0f6a0760446cde89c1e3321e2717b78'
+ 'a224ea9b4d0f4f196827347d54bed51e11c197ea'
+ '887f624eb305f2446f55d8339e2972ad0cfe2b79'
+ 'b767837d0279ad30b92c314cb762b73e5ad0415e'
+ '77899cce83f04cbe134b30da376f879d2841f769'
+ 'cda9a087e5593992150cb456e34c5f6f589aca82')
+
+backup=('etc/clamav/clamd.conf'
+ 'etc/clamav/freshclam.conf'
+ 'etc/logrotate.d/clamav')
+
+install=install
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --sbindir=/usr/bin \
+ --sysconfdir=/etc/clamav \
+ --with-dbdir=/var/lib/clamav \
+ --disable-clamav \
+ --enable-milter \
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm644 ../clamd.conf "${pkgdir}"/etc/clamav/clamd.conf
+ install -Dm644 ../freshclam.conf "${pkgdir}"/etc/clamav/freshclam.conf
+ install -Dm644 ../freshclamd.service "${pkgdir}"/usr/lib/systemd/system/freshclamd.service
+ install -Dm644 ../clamd.service "${pkgdir}"/usr/lib/systemd/system/clamd.service
+ install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/clamav.conf
+ install -Dm644 ../logrotate "${pkgdir}"/etc/logrotate.d/clamav
+
+ install -d -o 64 -g 64 "${pkgdir}"/var/log/clamav
+ install -d -o 64 -g 64 "${pkgdir}"/var/lib/clamav
+}
Copied: clamav/repos/staging-i686/clamd.conf (from rev 245365, clamav/trunk/clamd.conf)
===================================================================
--- staging-i686/clamd.conf (rev 0)
+++ staging-i686/clamd.conf 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,6 @@
+LogFile /var/log/clamav/clamd.log
+LogTime yes
+PidFile /run/clamav/clamd.pid
+TemporaryDirectory /tmp
+LocalSocket /var/lib/clamav/clamd.sock
+User clamav
Copied: clamav/repos/staging-i686/clamd.service (from rev 245365, clamav/trunk/clamd.service)
===================================================================
--- staging-i686/clamd.service (rev 0)
+++ staging-i686/clamd.service 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,11 @@
+[Unit]
+Description=clamav daemon
+After=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/clamav/clamd.pid
+ExecStart=/usr/bin/clamd
+
+[Install]
+WantedBy=multi-user.target
Copied: clamav/repos/staging-i686/freshclam.conf (from rev 245365, clamav/trunk/freshclam.conf)
===================================================================
--- staging-i686/freshclam.conf (rev 0)
+++ staging-i686/freshclam.conf 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,3 @@
+UpdateLogFile /var/log/clamav/freshclam.log
+DatabaseMirror database.clamav.net
+NotifyClamd /etc/clamav/clamd.conf
Copied: clamav/repos/staging-i686/freshclamd.service (from rev 245365, clamav/trunk/freshclamd.service)
===================================================================
--- staging-i686/freshclamd.service (rev 0)
+++ staging-i686/freshclamd.service 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,10 @@
+[Unit]
+Description=clamav updater
+
+[Service]
+Type=forking
+PIDFile=/run/clamav/freshclam.pid
+ExecStart=/usr/bin/freshclam -d -p /run/clamav/freshclam.pid
+
+[Install]
+WantedBy=multi-user.target
Copied: clamav/repos/staging-i686/install (from rev 245366, clamav/trunk/install)
===================================================================
--- staging-i686/install (rev 0)
+++ staging-i686/install 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,15 @@
+post_upgrade() {
+ systemd-tmpfiles --create clamav.conf
+}
+
+post_install() {
+ getent group clamav &>/dev/null || groupadd -r -g 64 clamav >/dev/null
+ getent passwd clamav &>/dev/null || useradd -r -u 64 -g clamav -d /dev/null -s /bin/false -c "Clam AntiVirus" clamav >/dev/null
+ post_upgrade
+}
+
+post_remove() {
+ getent passwd clamav &>/dev/null && userdel clamav >/dev/null
+ getent group clamav &>/dev/null && groupdel clamav >/dev/null
+ return 0
+}
Copied: clamav/repos/staging-i686/logrotate (from rev 245366, clamav/trunk/logrotate)
===================================================================
--- staging-i686/logrotate (rev 0)
+++ staging-i686/logrotate 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,10 @@
+/var/log/clamav/clamd.log /var/log/clamav/freshclam.log {
+ create 644 clamav clamav
+ sharedscripts
+ missingok
+ notifempty
+ postrotate
+ /bin/kill -HUP `cat /run/clamav/clamd.pid 2>/dev/null` 2> /dev/null || true
+ /bin/kill -HUP `cat /run/clamav/freshclam.pid 2>/dev/null` 2> /dev/null || true
+ endscript
+}
Copied: clamav/repos/staging-i686/tmpfiles.d (from rev 245366, clamav/trunk/tmpfiles.d)
===================================================================
--- staging-i686/tmpfiles.d (rev 0)
+++ staging-i686/tmpfiles.d 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1 @@
+d /run/clamav 0755 clamav clamav
Copied: clamav/repos/staging-x86_64/PKGBUILD (from rev 245366, clamav/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,64 @@
+# $Id$
+# Contributor: Dale Blount <dale at archlinux.org>
+# Contributor: Gregor Ibic <gregor.ibic at intelicom.si>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=clamav
+pkgver=0.98.7
+pkgrel=3
+pkgdesc='Anti-virus toolkit for Unix'
+url='http://www.clamav.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('libmilter')
+depends=('bzip2' 'libltdl' 'gcc-libs')
+validpgpkeys=('B964E6D7BC7D7C82CCB8D45840B8EA2364221D53'
+ 'F79FB2D08751574C5D3FDFFBB3D5342C260429A0')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig}
+ 'logrotate'
+ 'tmpfiles.d'
+ 'clamd.conf'
+ 'freshclam.conf'
+ 'clamd.service'
+ 'freshclamd.service')
+sha1sums=('c9793d67c041e2b944116d912f8681c8bd6e4432' 'SKIP'
+ 'bb488a56b0f6a0760446cde89c1e3321e2717b78'
+ 'a224ea9b4d0f4f196827347d54bed51e11c197ea'
+ '887f624eb305f2446f55d8339e2972ad0cfe2b79'
+ 'b767837d0279ad30b92c314cb762b73e5ad0415e'
+ '77899cce83f04cbe134b30da376f879d2841f769'
+ 'cda9a087e5593992150cb456e34c5f6f589aca82')
+
+backup=('etc/clamav/clamd.conf'
+ 'etc/clamav/freshclam.conf'
+ 'etc/logrotate.d/clamav')
+
+install=install
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --sbindir=/usr/bin \
+ --sysconfdir=/etc/clamav \
+ --with-dbdir=/var/lib/clamav \
+ --disable-clamav \
+ --enable-milter \
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm644 ../clamd.conf "${pkgdir}"/etc/clamav/clamd.conf
+ install -Dm644 ../freshclam.conf "${pkgdir}"/etc/clamav/freshclam.conf
+ install -Dm644 ../freshclamd.service "${pkgdir}"/usr/lib/systemd/system/freshclamd.service
+ install -Dm644 ../clamd.service "${pkgdir}"/usr/lib/systemd/system/clamd.service
+ install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/clamav.conf
+ install -Dm644 ../logrotate "${pkgdir}"/etc/logrotate.d/clamav
+
+ install -d -o 64 -g 64 "${pkgdir}"/var/log/clamav
+ install -d -o 64 -g 64 "${pkgdir}"/var/lib/clamav
+}
Copied: clamav/repos/staging-x86_64/clamd.conf (from rev 245366, clamav/trunk/clamd.conf)
===================================================================
--- staging-x86_64/clamd.conf (rev 0)
+++ staging-x86_64/clamd.conf 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,6 @@
+LogFile /var/log/clamav/clamd.log
+LogTime yes
+PidFile /run/clamav/clamd.pid
+TemporaryDirectory /tmp
+LocalSocket /var/lib/clamav/clamd.sock
+User clamav
Copied: clamav/repos/staging-x86_64/clamd.service (from rev 245366, clamav/trunk/clamd.service)
===================================================================
--- staging-x86_64/clamd.service (rev 0)
+++ staging-x86_64/clamd.service 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,11 @@
+[Unit]
+Description=clamav daemon
+After=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/clamav/clamd.pid
+ExecStart=/usr/bin/clamd
+
+[Install]
+WantedBy=multi-user.target
Copied: clamav/repos/staging-x86_64/freshclam.conf (from rev 245366, clamav/trunk/freshclam.conf)
===================================================================
--- staging-x86_64/freshclam.conf (rev 0)
+++ staging-x86_64/freshclam.conf 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,3 @@
+UpdateLogFile /var/log/clamav/freshclam.log
+DatabaseMirror database.clamav.net
+NotifyClamd /etc/clamav/clamd.conf
Copied: clamav/repos/staging-x86_64/freshclamd.service (from rev 245366, clamav/trunk/freshclamd.service)
===================================================================
--- staging-x86_64/freshclamd.service (rev 0)
+++ staging-x86_64/freshclamd.service 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,10 @@
+[Unit]
+Description=clamav updater
+
+[Service]
+Type=forking
+PIDFile=/run/clamav/freshclam.pid
+ExecStart=/usr/bin/freshclam -d -p /run/clamav/freshclam.pid
+
+[Install]
+WantedBy=multi-user.target
Copied: clamav/repos/staging-x86_64/install (from rev 245366, clamav/trunk/install)
===================================================================
--- staging-x86_64/install (rev 0)
+++ staging-x86_64/install 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,15 @@
+post_upgrade() {
+ systemd-tmpfiles --create clamav.conf
+}
+
+post_install() {
+ getent group clamav &>/dev/null || groupadd -r -g 64 clamav >/dev/null
+ getent passwd clamav &>/dev/null || useradd -r -u 64 -g clamav -d /dev/null -s /bin/false -c "Clam AntiVirus" clamav >/dev/null
+ post_upgrade
+}
+
+post_remove() {
+ getent passwd clamav &>/dev/null && userdel clamav >/dev/null
+ getent group clamav &>/dev/null && groupdel clamav >/dev/null
+ return 0
+}
Copied: clamav/repos/staging-x86_64/logrotate (from rev 245366, clamav/trunk/logrotate)
===================================================================
--- staging-x86_64/logrotate (rev 0)
+++ staging-x86_64/logrotate 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1,10 @@
+/var/log/clamav/clamd.log /var/log/clamav/freshclam.log {
+ create 644 clamav clamav
+ sharedscripts
+ missingok
+ notifempty
+ postrotate
+ /bin/kill -HUP `cat /run/clamav/clamd.pid 2>/dev/null` 2> /dev/null || true
+ /bin/kill -HUP `cat /run/clamav/freshclam.pid 2>/dev/null` 2> /dev/null || true
+ endscript
+}
Copied: clamav/repos/staging-x86_64/tmpfiles.d (from rev 245366, clamav/trunk/tmpfiles.d)
===================================================================
--- staging-x86_64/tmpfiles.d (rev 0)
+++ staging-x86_64/tmpfiles.d 2015-09-06 17:01:20 UTC (rev 245368)
@@ -0,0 +1 @@
+d /run/clamav 0755 clamav clamav
More information about the arch-commits
mailing list