[arch-commits] Commit in zathura/repos (8 files)

Johannes Löthberg demize at archlinux.org
Sat Jan 14 17:57:30 UTC 2017


    Date: Saturday, January 14, 2017 @ 17:57:29
  Author: demize
Revision: 207377

archrelease: copy trunk to community-i686, community-x86_64

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

----------------------------------+
 /PKGBUILD                        |   80 +++++++++++++++++++++++++++++++++++++
 /bash-completion                 |   58 ++++++++++++++++++++++++++
 community-i686/PKGBUILD          |   40 ------------------
 community-i686/bash-completion   |   29 -------------
 community-x86_64/PKGBUILD        |   40 ------------------
 community-x86_64/bash-completion |   29 -------------
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-01-14 17:57:23 UTC (rev 207376)
+++ community-i686/PKGBUILD	2017-01-14 17:57:29 UTC (rev 207377)
@@ -1,40 +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.6
-pkgrel=3
-
-pkgdesc="Minimalistic document viewer"
-url="http://pwmt.org/projects/zathura/"
-arch=('i686' 'x86_64')
-license=('custom')
-
-makedepends=('python2-docutils' 'texlive-bin')
-depends=('girara>=0.2.4' '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')
-
-source=(http://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
-        bash-completion)
-
-sha1sums=('db5e76815fdfd0c2d6b5d5c16492995720268440'
-          '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-i686/PKGBUILD (from rev 207376, zathura/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-01-14 17:57:29 UTC (rev 207377)
@@ -0,0 +1,40 @@
+# $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.7
+pkgrel=1
+
+pkgdesc="Minimalistic document viewer"
+url="http://pwmt.org/projects/zathura/"
+arch=('i686' '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')
+
+source=(https://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
+        bash-completion)
+
+sha1sums=('51935ae1781712b9dc8baed7698c2fa900bcf4fa'
+          '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
+}

Deleted: community-i686/bash-completion
===================================================================
--- community-i686/bash-completion	2017-01-14 17:57:23 UTC (rev 207376)
+++ community-i686/bash-completion	2017-01-14 17:57:29 UTC (rev 207377)
@@ -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-i686/bash-completion (from rev 207376, zathura/trunk/bash-completion)
===================================================================
--- community-i686/bash-completion	                        (rev 0)
+++ community-i686/bash-completion	2017-01-14 17:57:29 UTC (rev 207377)
@@ -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

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-01-14 17:57:23 UTC (rev 207376)
+++ community-x86_64/PKGBUILD	2017-01-14 17:57:29 UTC (rev 207377)
@@ -1,40 +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.6
-pkgrel=3
-
-pkgdesc="Minimalistic document viewer"
-url="http://pwmt.org/projects/zathura/"
-arch=('i686' 'x86_64')
-license=('custom')
-
-makedepends=('python2-docutils' 'texlive-bin')
-depends=('girara>=0.2.4' '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')
-
-source=(http://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
-        bash-completion)
-
-sha1sums=('db5e76815fdfd0c2d6b5d5c16492995720268440'
-          '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 207376, zathura/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-01-14 17:57:29 UTC (rev 207377)
@@ -0,0 +1,40 @@
+# $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.7
+pkgrel=1
+
+pkgdesc="Minimalistic document viewer"
+url="http://pwmt.org/projects/zathura/"
+arch=('i686' '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')
+
+source=(https://pwmt.org/projects/zathura/download/zathura-$pkgver.tar.gz
+        bash-completion)
+
+sha1sums=('51935ae1781712b9dc8baed7698c2fa900bcf4fa'
+          '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
+}

Deleted: community-x86_64/bash-completion
===================================================================
--- community-x86_64/bash-completion	2017-01-14 17:57:23 UTC (rev 207376)
+++ community-x86_64/bash-completion	2017-01-14 17:57:29 UTC (rev 207377)
@@ -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 207376, zathura/trunk/bash-completion)
===================================================================
--- community-x86_64/bash-completion	                        (rev 0)
+++ community-x86_64/bash-completion	2017-01-14 17:57:29 UTC (rev 207377)
@@ -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