[arch-commits] Commit in zathura/repos/community-x86_64 (4 files)

Johannes Löthberg demize at archlinux.org
Sat Mar 24 12:34:19 UTC 2018


    Date: Saturday, March 24, 2018 @ 12:34:16
  Author: demize
Revision: 311885

archrelease: copy trunk to community-x86_64

Added:
  zathura/repos/community-x86_64/PKGBUILD
    (from rev 311884, zathura/trunk/PKGBUILD)
  zathura/repos/community-x86_64/bash-completion
    (from rev 311884, zathura/trunk/bash-completion)
Deleted:
  zathura/repos/community-x86_64/PKGBUILD
  zathura/repos/community-x86_64/bash-completion

-----------------+
 PKGBUILD        |   85 +++++++++++++++++++++++++++---------------------------
 bash-completion |   58 ++++++++++++++++++------------------
 2 files changed, 73 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-03-24 12:34:09 UTC (rev 311884)
+++ PKGBUILD	2018-03-24 12:34:16 UTC (rev 311885)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
-# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
-# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: ML <neldoreth>
-
-pkgname=zathura
-pkgver=0.3.8
-pkgrel=1
-
-pkgdesc="Minimalistic document viewer"
-url="http://pwmt.org/projects/zathura/"
-arch=('x86_64')
-license=('custom')
-
-makedepends=('python2-docutils' 'texlive-bin')
-depends=('girara>=0.2.7' 'sqlite' 'desktop-file-utils' 'file' 'libsynctex')
-optdepends=('zathura-djvu: DjVu support'
-            'zathura-pdf-poppler: PDF support using Poppler'
-            'zathura-pdf-mupdf: PDF support using MuPDF'
-            'zathura-ps: PostScript support'
-            'zathura-cb: Comic book support')
-
-source=(https://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
-        bash-completion)
-
-sha1sums=('f96df67bd12068af8ed14671877b1ebe64931241'
-          '94a8236c483626a7f3acee053a1ea885aed45a82')
-
-build() {
-  cd zathura-$pkgver
-  make WITH_SYNCTEX=1
-}
-
-package() {
-  cd zathura-$pkgver
-
-  make install DESTDIR="$pkgdir"
-  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm0644 "$srcdir"/bash-completion "$pkgdir"/usr/share/bash-completion/completions/zathura
-}

Copied: zathura/repos/community-x86_64/PKGBUILD (from rev 311884, zathura/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-03-24 12:34:16 UTC (rev 311885)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: ML <neldoreth>
+
+pkgname=zathura
+pkgver=0.3.9
+pkgrel=1
+
+pkgdesc="Minimalistic document viewer"
+url="http://pwmt.org/projects/zathura/"
+arch=('x86_64')
+license=('custom')
+
+makedepends=('python-sphinx' 'texlive-bin' 'meson' 'ninja')
+depends=('girara>=0.2.7' 'sqlite' 'desktop-file-utils' 'file' 'libsynctex')
+optdepends=('zathura-djvu: DjVu support'
+            'zathura-pdf-poppler: PDF support using Poppler'
+            'zathura-pdf-mupdf: PDF support using MuPDF'
+            'zathura-ps: PostScript support'
+            'zathura-cb: Comic book support')
+
+source=(https://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.xz
+        bash-completion)
+
+sha1sums=('23fd07120031f64a52c24eb90b6e0de9397ba011'
+          '94a8236c483626a7f3acee053a1ea885aed45a82')
+
+build() {
+  cd zathura-$pkgver
+  arch-meson build
+
+  cd build
+  ninja
+}
+
+package() {
+  cd zathura-$pkgver/build
+  DESTDIR="$pkgdir" ninja install
+
+  install -D -m664 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm0644 "$srcdir"/bash-completion "$pkgdir"/usr/share/bash-completion/completions/zathura
+}

Deleted: bash-completion
===================================================================
--- bash-completion	2018-03-24 12:34:09 UTC (rev 311884)
+++ bash-completion	2018-03-24 12:34:16 UTC (rev 311885)
@@ -1,29 +0,0 @@
-_zathura() {
-  _init_completion || return
-
-  EXTENTIONS=''
-  for PLUGIN in /usr/lib/zathura/*.so; do
-    case ${PLUGIN##*/} in
-      pdf.so)
-        EXTENTIONS="$EXTENTIONS|pdf"
-        ;;
-      ps.so)
-        EXTENTIONS="$EXTENTIONS|ps|eps|epsi|epsf"
-        ;;
-      djvu.so)
-        EXTENTIONS="$EXTENTIONS|djvu|djv"
-        ;;
-      epub.so)
-        EXTENTIONS="$EXTENTIONS|epub"
-        ;;
-      cb.so)
-        EXTENTIONS="$EXTENTIONS|cb7|cbr|cbz|cbt|rar|zip|7z|tar"
-        ;;
-      *)
-        ;;
-      esac
-  done
-
-  _filedir "${EXTENTIONS#|}"
-} &&
-complete -F _zathura zathura

Copied: zathura/repos/community-x86_64/bash-completion (from rev 311884, zathura/trunk/bash-completion)
===================================================================
--- bash-completion	                        (rev 0)
+++ bash-completion	2018-03-24 12:34:16 UTC (rev 311885)
@@ -0,0 +1,29 @@
+_zathura() {
+  _init_completion || return
+
+  EXTENTIONS=''
+  for PLUGIN in /usr/lib/zathura/*.so; do
+    case ${PLUGIN##*/} in
+      pdf.so)
+        EXTENTIONS="$EXTENTIONS|pdf"
+        ;;
+      ps.so)
+        EXTENTIONS="$EXTENTIONS|ps|eps|epsi|epsf"
+        ;;
+      djvu.so)
+        EXTENTIONS="$EXTENTIONS|djvu|djv"
+        ;;
+      epub.so)
+        EXTENTIONS="$EXTENTIONS|epub"
+        ;;
+      cb.so)
+        EXTENTIONS="$EXTENTIONS|cb7|cbr|cbz|cbt|rar|zip|7z|tar"
+        ;;
+      *)
+        ;;
+      esac
+  done
+
+  _filedir "${EXTENTIONS#|}"
+} &&
+complete -F _zathura zathura



More information about the arch-commits mailing list