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

Evangelos Foutras foutrelis at archlinux.org
Fri Nov 9 21:31:08 UTC 2018


    Date: Friday, November 9, 2018 @ 21:31:07
  Author: foutrelis
Revision: 338584

archrelease: copy trunk to staging-x86_64

Added:
  bogofilter/repos/staging-x86_64/
  bogofilter/repos/staging-x86_64/PKGBUILD
    (from rev 338583, bogofilter/trunk/PKGBUILD)
  bogofilter/repos/staging-x86_64/bogofilter-1.2.4-test-env.patch
    (from rev 338583, bogofilter/trunk/bogofilter-1.2.4-test-env.patch)

---------------------------------+
 PKGBUILD                        |   58 ++++++++++++++++++++++++++++++++++++++
 bogofilter-1.2.4-test-env.patch |   11 +++++++
 2 files changed, 69 insertions(+)

Copied: bogofilter/repos/staging-x86_64/PKGBUILD (from rev 338583, bogofilter/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2018-11-09 21:31:07 UTC (rev 338584)
@@ -0,0 +1,58 @@
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Contributor: tobias <tobias at archlinux.org>
+# Contributor: Low Kian Seong <fastmail_low at speedymail.org>
+
+pkgname=bogofilter
+pkgver=1.2.4
+pkgrel=4
+pkgdesc="A fast Bayesian spam filtering tool"
+arch=('x86_64')
+license=('GPL3')
+url="http://bogofilter.sourceforge.net"
+depends=('db' 'perl' 'gsl') # 'sqlite'
+makedepends=('valgrind' 'xmlto')
+backup=('etc/bogofilter/bogofilter.cf')
+source=(https://sourceforge.net/projects/${pkgname}/files/${pkgname}-current/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2
+        bogofilter-1.2.4-test-env.patch)
+md5sums=('d0a5eebb3274b23ceabe766a6443a1c5'
+         'd01f23755ee9b4f5807b9feefea0b42d')
+
+# keep Berkeley DB as backend for now
+# sqlite3 based backend doesn't allow
+# to use db-transaction option that is
+# used to bf_compact the wordlist.db
+# other backend aren't available 
+# currently in Arch repos
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # taken from Gentoo
+  patch -Np1 -i $srcdir/bogofilter-1.2.4-test-env.patch
+  chmod +x src/tests/t.{ctype,leakfind,lexer.qpcr,lexer.eoh,message_id,queue_id}
+  autoreconf -vfi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+              --sysconfdir=/etc/bogofilter  \
+              --localstatedir=/var \
+              --enable-transactions \
+              --with-database=db  #--help
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  BF_RUN_VALGRIND=1 make -k -C src check || /bin/true
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}/etc/bogofilter/bogofilter.cf.example" "${pkgdir}/etc/bogofilter/bogofilter.cf"
+
+  install -dm755 "${pkgdir}/usr/share/${pkgname}/contrib"
+  install -m644 contrib/* "${pkgdir}/usr/share/${pkgname}/contrib/"
+}

Copied: bogofilter/repos/staging-x86_64/bogofilter-1.2.4-test-env.patch (from rev 338583, bogofilter/trunk/bogofilter-1.2.4-test-env.patch)
===================================================================
--- staging-x86_64/bogofilter-1.2.4-test-env.patch	                        (rev 0)
+++ staging-x86_64/bogofilter-1.2.4-test-env.patch	2018-11-09 21:31:07 UTC (rev 338584)
@@ -0,0 +1,11 @@
+--- a/src/tests/Makefile.am
++++ b/src/tests/Makefile.am
+@@ -67,7 +67,7 @@
+ 
+ TESTS=$(BUILT_TESTS) $(TESTSCRIPTS)
+ 
+-TESTS_ENVIRONMENT=RUN_FROM_MAKE=1 AWK=$(AWK) srcdir=$(srcdir) SHELL="$(SHELL)" $(SHELL) $(VERBOSE)
++TESTS_ENVIRONMENT=RUN_FROM_MAKE=1 AWK=$(AWK) srcdir=$(srcdir) SHELL="$(SHELL)" $(VERBOSE)
+ 
+ EXTRA_DIST=$(TESTSCRIPTS) t.frame t.save t.skel \
+ 	printcore t._abort unsort.pl \



More information about the arch-commits mailing list