[arch-commits] Commit in dovecot-fts-xapian/repos/community-x86_64 (4 files)

Thore Bödecker foxxx0 at gemini.archlinux.org
Tue Aug 17 07:21:33 UTC 2021


    Date: Tuesday, August 17, 2021 @ 07:21:33
  Author: foxxx0
Revision: 1001128

archrelease: copy trunk to community-x86_64

Added:
  dovecot-fts-xapian/repos/community-x86_64/PKGBUILD
    (from rev 1001127, dovecot-fts-xapian/trunk/PKGBUILD)
  dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install
    (from rev 1001127, dovecot-fts-xapian/trunk/dovecot-fts-xapian.install)
Deleted:
  dovecot-fts-xapian/repos/community-x86_64/PKGBUILD
  dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install

----------------------------+
 PKGBUILD                   |  102 +++++++++++++++++++++----------------------
 dovecot-fts-xapian.install |   24 +++++-----
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-08-17 07:21:29 UTC (rev 1001127)
+++ PKGBUILD	2021-08-17 07:21:33 UTC (rev 1001128)
@@ -1,51 +0,0 @@
-# Maintainer: George Rawlinson <george at rawlinson.net.nz>
-# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
-
-# This must be built against the version of dovecot being used,
-# otherwise it will fail to load and thus work.
-# Specify the version of dovecot to be used here:
-_dcpkgver=2.3.15
-# Make sure to bump pkgrel if changing this.
-
-pkgname=dovecot-fts-xapian
-_pkgname="${pkgname#dovecot-}"
-pkgver=1.4.12
-pkgrel=1
-pkgdesc="Dovecot FTS plugin based on Xapian"
-arch=('x86_64')
-url="https://github.com/grosjo/fts-xapian"
-license=('LGPL2.1')
-depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('c4ff7ec9ba6ec6b8dc07701a5dccc05b4aeb284f3944dc15236658d88d4a7b416b92e880fcbfd8a0b95ff17788d01393d7aa04e8d93ac73cf2eadc4556dafeda')
-
-build() {
-  cd "$_pkgname-$pkgver"
-  autoreconf -vi
-  ./configure \
-    --prefix=/usr \
-    --with-dovecot=/usr/lib/dovecot
-
-  make
-
-  # generate systemd unit files
-  mkdir build
-  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in \
-    > build/dovecot-fts-optimize.service
-  sed "s:@@index_frequency@@:daily:" contrib/systemd/dovecot-fts-optimize.timer.in \
-    > build/dovecot-fts-optimize.timer
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # systemd integration
-  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
-    build/dovecot-fts-optimize.{service,timer}
-}

Copied: dovecot-fts-xapian/repos/community-x86_64/PKGBUILD (from rev 1001127, dovecot-fts-xapian/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-08-17 07:21:33 UTC (rev 1001128)
@@ -0,0 +1,51 @@
+# Maintainer: George Rawlinson <george at rawlinson.net.nz>
+# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
+
+# This must be built against the version of dovecot being used,
+# otherwise it will fail to load and thus work.
+# Specify the version of dovecot to be used here:
+_dcpkgver=2.3.16
+# Make sure to bump pkgrel if changing this.
+
+pkgname=dovecot-fts-xapian
+_pkgname="${pkgname#dovecot-}"
+pkgver=1.4.12
+pkgrel=2
+pkgdesc="Dovecot FTS plugin based on Xapian"
+arch=('x86_64')
+url="https://github.com/grosjo/fts-xapian"
+license=('LGPL2.1')
+depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+b2sums=('c4ff7ec9ba6ec6b8dc07701a5dccc05b4aeb284f3944dc15236658d88d4a7b416b92e880fcbfd8a0b95ff17788d01393d7aa04e8d93ac73cf2eadc4556dafeda')
+
+build() {
+  cd "$_pkgname-$pkgver"
+  autoreconf -vi
+  ./configure \
+    --prefix=/usr \
+    --with-dovecot=/usr/lib/dovecot
+
+  make
+
+  # generate systemd unit files
+  mkdir build
+  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in \
+    > build/dovecot-fts-optimize.service
+  sed "s:@@index_frequency@@:daily:" contrib/systemd/dovecot-fts-optimize.timer.in \
+    > build/dovecot-fts-optimize.timer
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # systemd integration
+  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
+    build/dovecot-fts-optimize.{service,timer}
+}

Deleted: dovecot-fts-xapian.install
===================================================================
--- dovecot-fts-xapian.install	2021-08-17 07:21:29 UTC (rev 1001127)
+++ dovecot-fts-xapian.install	2021-08-17 07:21:33 UTC (rev 1001128)
@@ -1,12 +0,0 @@
-post_install() {
-	cat <<-EOF
-
-	Documentation is included in /usr/share/doc/dovecot-fts-xapian
-
-	For more documentation, see:
-	  * https://github.com/grosjo/fts-xapian
-	  * https://doc.dovecot.org/configuration_manual/fts
-	  * https://doc.dovecot.org/settings/plugin/fts-plugin
-
-	EOF
-}

Copied: dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install (from rev 1001127, dovecot-fts-xapian/trunk/dovecot-fts-xapian.install)
===================================================================
--- dovecot-fts-xapian.install	                        (rev 0)
+++ dovecot-fts-xapian.install	2021-08-17 07:21:33 UTC (rev 1001128)
@@ -0,0 +1,12 @@
+post_install() {
+	cat <<-EOF
+
+	Documentation is included in /usr/share/doc/dovecot-fts-xapian
+
+	For more documentation, see:
+	  * https://github.com/grosjo/fts-xapian
+	  * https://doc.dovecot.org/configuration_manual/fts
+	  * https://doc.dovecot.org/settings/plugin/fts-plugin
+
+	EOF
+}



More information about the arch-commits mailing list