[arch-commits] Commit in clamav/repos (6 files)

Levente Polyak anthraxx at archlinux.org
Tue May 1 00:26:46 UTC 2018


    Date: Tuesday, May 1, 2018 @ 00:26:45
  Author: anthraxx
Revision: 323205

archrelease: copy trunk to testing-x86_64

Added:
  clamav/repos/testing-x86_64/
  clamav/repos/testing-x86_64/PKGBUILD
    (from rev 323204, clamav/trunk/PKGBUILD)
  clamav/repos/testing-x86_64/clamav.install
    (from rev 323204, clamav/trunk/clamav.install)
  clamav/repos/testing-x86_64/clamav.logrotate
    (from rev 323204, clamav/trunk/clamav.logrotate)
  clamav/repos/testing-x86_64/clamav.sysusers
    (from rev 323204, clamav/trunk/clamav.sysusers)
  clamav/repos/testing-x86_64/clamav.tmpfiles
    (from rev 323204, clamav/trunk/clamav.tmpfiles)

------------------+
 PKGBUILD         |   84 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 clamav.install   |   11 ++++++
 clamav.logrotate |   11 ++++++
 clamav.sysusers  |    1 
 clamav.tmpfiles  |    3 +
 5 files changed, 110 insertions(+)

Copied: clamav/repos/testing-x86_64/PKGBUILD (from rev 323204, clamav/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2018-05-01 00:26:45 UTC (rev 323205)
@@ -0,0 +1,84 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Dale Blount <dale at archlinux.org>
+# Contributor: Gregor Ibic <gregor.ibic at intelicom.si>
+# Contributor: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname=clamav
+pkgver=0.100.0
+pkgrel=1
+pkgdesc='Anti-virus toolkit for Unix'
+url='https://www.clamav.net/'
+license=('GPL')
+arch=('x86_64')
+depends=('bzip2' 'libltdl' 'libxml2' 'curl' 'libsystemd' 'pcre2' 'json-c')
+makedepends=('libmilter' 'systemd')
+backup=('etc/clamav/clamd.conf'
+        'etc/clamav/freshclam.conf'
+        'etc/clamav/clamav-milter.conf'
+        'etc/logrotate.d/clamav')
+install=clamav.install
+source=(https://www.clamav.net/downloads/production/${pkgname}-${pkgver}.tar.gz{,.sig}
+        clamav.logrotate
+        clamav.tmpfiles
+        clamav.sysusers)
+sha256sums=('c5c5edaf75a3c53ac0f271148fd6447310bce53f448ec7e6205124a25918f65c'
+            'SKIP'
+            'c36e3ddf790fa6ea90169038ae08521a31652a372017e6e38858e28fc63b3f74'
+            '8e216c7e4763a273a120930787dcc444ea221bb719eed180a9d15b4c1d603a84'
+            '01a896c3a1cd34b323594403fd82a9e353b5aa848b8462137b621959558199e8')
+validpgpkeys=('65ED513993F08DA06F9639A6F13F9E16BCA5BFAD') # Talos (Talos, Cisco Systems Inc.) <research at sourcefire.com>
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -E 's|^(Example)$|#\1|' -i etc/{clamd,freshclam,clamav-milter}.conf.sample
+  sed -E 's|#(User) .+|\1 clamav|' -i etc/{clamd,freshclam,clamav-milter}.conf.sample
+  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamd.log|' -i etc/clamd.conf.sample
+  sed -E 's|#(LogTime) .+|\1 yes|' -i etc/clamd.conf.sample etc/clamav-milter.conf.sample
+  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamd.pid|' -i etc/clamd.conf.sample
+  sed -E 's|#(TemporaryDirectory) .+|\1 /tmp|' -i etc/{clamd,clamav-milter}.conf.sample
+  sed -E 's|#(LocalSocket) .+|\1 /run/clamav/clamd.ctl|' -i etc/clamd.conf.sample
+  sed -E 's|#(UpdateLogFile) .+|\1 /var/log/clamav/freshclam.log|' -i etc/freshclam.conf.sample
+  sed -E 's|#(DatabaseMirror) .+|\1 database.clamav.net|' -i etc/freshclam.conf.sample
+  sed -E 's|#(NotifyClamd) .+|\1 /etc/clamav/clamd.conf|' -i etc/freshclam.conf.sample
+  sed -E 's|#(PidFile) .+|\1 /run/clamav/freshclam.pid|' -i etc/freshclam.conf.sample
+  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamav-milter.log|' -i etc/clamav-milter.conf.sample
+  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamav-milter.pid|' -i etc/clamav-milter.conf.sample
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  # --disable-zlib-vcheck because the configure script thinks that
+  # zlib 1.2.11 is older than 1.2.2
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc/clamav \
+    --with-dbdir=/var/lib/clamav \
+    --with-user=clamav \
+    --with-group=clamav \
+    --disable-rpath \
+    --disable-clamav \
+    --disable-llvm \
+    --enable-zlib-vcheck \
+    --enable-milter \
+    --enable-clamdtop
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/etc/clamav/freshclam.conf{.sample,}
+  mv "${pkgdir}"/etc/clamav/clamd.conf{.sample,}
+  mv "${pkgdir}"/etc/clamav/clamav-milter.conf{.sample,}
+
+  install -Dm 644 ../clamav.sysusers "${pkgdir}"/usr/lib/sysusers.d/clamav.conf
+  install -Dm 644 ../clamav.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/clamav.conf
+  install -Dm 644 ../clamav.logrotate "${pkgdir}"/etc/logrotate.d/clamav
+}
+
+# vim: ts=2 sw=2 et:

Copied: clamav/repos/testing-x86_64/clamav.install (from rev 323204, clamav/trunk/clamav.install)
===================================================================
--- testing-x86_64/clamav.install	                        (rev 0)
+++ testing-x86_64/clamav.install	2018-05-01 00:26:45 UTC (rev 323205)
@@ -0,0 +1,11 @@
+post_upgrade() {
+  if (( $(vercmp $2 0.99.3) <= 0 )); then
+    cat << EOF
+
+===> WARNING: ClamAV service files have been renamed:
+  -> clamav-daemon.service
+  -> clamav-freshclam.service
+
+EOF
+  fi
+}

Copied: clamav/repos/testing-x86_64/clamav.logrotate (from rev 323204, clamav/trunk/clamav.logrotate)
===================================================================
--- testing-x86_64/clamav.logrotate	                        (rev 0)
+++ testing-x86_64/clamav.logrotate	2018-05-01 00:26:45 UTC (rev 323205)
@@ -0,0 +1,11 @@
+/var/log/clamav/clamd.log /var/log/clamav/freshclam.log /var/log/clamav/clamav-milter.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
+			/bin/kill -HUP `cat /run/clamav/clamav-milter.pid 2>/dev/null` 2> /dev/null || true
+	endscript
+}

Copied: clamav/repos/testing-x86_64/clamav.sysusers (from rev 323204, clamav/trunk/clamav.sysusers)
===================================================================
--- testing-x86_64/clamav.sysusers	                        (rev 0)
+++ testing-x86_64/clamav.sysusers	2018-05-01 00:26:45 UTC (rev 323205)
@@ -0,0 +1 @@
+u clamav 64 "Clam AntiVirus" -

Copied: clamav/repos/testing-x86_64/clamav.tmpfiles (from rev 323204, clamav/trunk/clamav.tmpfiles)
===================================================================
--- testing-x86_64/clamav.tmpfiles	                        (rev 0)
+++ testing-x86_64/clamav.tmpfiles	2018-05-01 00:26:45 UTC (rev 323205)
@@ -0,0 +1,3 @@
+d /run/clamav 0755 clamav clamav
+d /var/log/clamav 0755 clamav clamav
+d /var/lib/clamav 0755 clamav clamav



More information about the arch-commits mailing list