[arch-commits] Commit in antiword/repos (12 files)

Lukas Fleischer lfleischer at nymeria.archlinux.org
Tue Jul 1 23:23:20 UTC 2014


    Date: Wednesday, July 2, 2014 @ 01:23:19
  Author: lfleischer
Revision: 114551

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

Added:
  antiword/repos/community-i686/PKGBUILD
    (from rev 114550, antiword/trunk/PKGBUILD)
  antiword/repos/community-i686/antiword-helper
    (from rev 114550, antiword/trunk/antiword-helper)
  antiword/repos/community-i686/antiword.install
    (from rev 114550, antiword/trunk/antiword.install)
  antiword/repos/community-x86_64/PKGBUILD
    (from rev 114550, antiword/trunk/PKGBUILD)
  antiword/repos/community-x86_64/antiword-helper
    (from rev 114550, antiword/trunk/antiword-helper)
  antiword/repos/community-x86_64/antiword.install
    (from rev 114550, antiword/trunk/antiword.install)
Deleted:
  antiword/repos/community-i686/PKGBUILD
  antiword/repos/community-i686/antiword-helper
  antiword/repos/community-i686/antiword.install
  antiword/repos/community-x86_64/PKGBUILD
  antiword/repos/community-x86_64/antiword-helper
  antiword/repos/community-x86_64/antiword.install

-----------------------------------+
 /PKGBUILD                         |   68 ++++++++++++++++++++++++++++++++++++
 /antiword-helper                  |   26 +++++++++++++
 /antiword.install                 |   32 ++++++++++++++++
 community-i686/PKGBUILD           |   34 ------------------
 community-i686/antiword-helper    |   13 ------
 community-i686/antiword.install   |   16 --------
 community-x86_64/PKGBUILD         |   34 ------------------
 community-x86_64/antiword-helper  |   13 ------
 community-x86_64/antiword.install |   16 --------
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-07-01 23:23:05 UTC (rev 114550)
+++ community-i686/PKGBUILD	2014-07-01 23:23:19 UTC (rev 114551)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Aaron, phrakture, Griffin <aaron at archlinux.org>
-# Contributor: Gustav Munkby <grddev at gmx.net>
-
-pkgname=antiword
-pkgver=0.37
-pkgrel=3
-pkgdesc="A free MS Word reader for Linux and RISC OS"
-arch=('i686' 'x86_64')
-url="http://www.winfield.demon.nl/"
-license=('GPL')
-depends=('bash')
-install=antiword.install
-source=("http://www.winfield.demon.nl/linux/$pkgname-$pkgver.tar.gz"
-        'antiword-helper')
-md5sums=('f868e2a269edcbc06bf77e89a55898d1'
-         '01a988376cfd4bb268120ab597c9abe3')
-
-build(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  sed -i "s|GLOBAL_INSTALL_DIR =.*|GLOBAL_INSTALL_DIR = /usr/bin|g" \
-    Makefile.Linux
-
-  make OPT="${CFLAGS} -DNDEBUG" LDFLAGS="${LDFLAGS}"
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-  make DESTDIR="${pkgdir}" global_install
-  install -m755 $srcdir/antiword-helper $pkgdir/usr/bin/
-  install -Dm644 Docs/antiword.1 $pkgdir/usr/share/man/man1/antiword.1
-}

Copied: antiword/repos/community-i686/PKGBUILD (from rev 114550, antiword/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-07-01 23:23:19 UTC (rev 114551)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Aaron, phrakture, Griffin <aaron at archlinux.org>
+# Contributor: Gustav Munkby <grddev at gmx.net>
+
+pkgname=antiword
+pkgver=0.37
+pkgrel=4
+pkgdesc="A free MS Word reader for Linux and RISC OS"
+arch=('i686' 'x86_64')
+url="http://www.winfield.demon.nl/"
+license=('GPL')
+depends=('bash')
+install=antiword.install
+source=("http://www.winfield.demon.nl/linux/$pkgname-$pkgver.tar.gz"
+        'antiword-helper')
+md5sums=('f868e2a269edcbc06bf77e89a55898d1'
+         '01a988376cfd4bb268120ab597c9abe3')
+
+build(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  sed -i "s|GLOBAL_INSTALL_DIR =.*|GLOBAL_INSTALL_DIR = /usr/bin|g" \
+    Makefile.Linux
+
+  make OPT="${CFLAGS} -DNDEBUG" LDFLAGS="${LDFLAGS}"
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  make DESTDIR="${pkgdir}" global_install
+  install -m755 $srcdir/antiword-helper $pkgdir/usr/bin/
+  install -Dm644 Docs/antiword.1 $pkgdir/usr/share/man/man1/antiword.1
+}

Deleted: community-i686/antiword-helper
===================================================================
--- community-i686/antiword-helper	2014-07-01 23:23:05 UTC (rev 114550)
+++ community-i686/antiword-helper	2014-07-01 23:23:19 UTC (rev 114551)
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-[ $# -eq 2 ] || exit 1
-
-tmpfile=/tmp/aw$$.txt
-editor=${EDITOR:-`which vi`}
-terminal="$2"
-
-antiword "$1" > $tmpfile
-chmod -w $tmpfile
-$terminal -e $editor $tmpfile
-chmod +w $tmpfile
-rm $tmpfile

Copied: antiword/repos/community-i686/antiword-helper (from rev 114550, antiword/trunk/antiword-helper)
===================================================================
--- community-i686/antiword-helper	                        (rev 0)
+++ community-i686/antiword-helper	2014-07-01 23:23:19 UTC (rev 114551)
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+[ $# -eq 2 ] || exit 1
+
+tmpfile=/tmp/aw$$.txt
+editor=${EDITOR:-`which vi`}
+terminal="$2"
+
+antiword "$1" > $tmpfile
+chmod -w $tmpfile
+$terminal -e $editor $tmpfile
+chmod +w $tmpfile
+rm $tmpfile

Deleted: community-i686/antiword.install
===================================================================
--- community-i686/antiword.install	2014-07-01 23:23:05 UTC (rev 114550)
+++ community-i686/antiword.install	2014-07-01 23:23:19 UTC (rev 114551)
@@ -1,16 +0,0 @@
-post_install() {
-  cat << EOF
-NOTES On Antiword Integration:
-
-* If you use mozplugger, make sure to configure the
-  msword section like so (replacing <TERMINAL> with your
-  terminal of choice):
-      application/msword: doc, dot: Microsoft Word Document
-                ignore_errors exits: antiword-helper <TERMINAL> "$file"
-
-* To properly use antiword in your mailcap settings:
-      application/msword; antiword %s; copiousoutput
-
-* To enable drag-and-drop support in KDE, use the kantiword script
-EOF
-}

Copied: antiword/repos/community-i686/antiword.install (from rev 114550, antiword/trunk/antiword.install)
===================================================================
--- community-i686/antiword.install	                        (rev 0)
+++ community-i686/antiword.install	2014-07-01 23:23:19 UTC (rev 114551)
@@ -0,0 +1,16 @@
+post_install() {
+  cat << EOF
+NOTES On Antiword Integration:
+
+* If you use mozplugger, make sure to configure the
+  msword section like so (replacing <TERMINAL> with your
+  terminal of choice):
+      application/msword: doc, dot: Microsoft Word Document
+                ignore_errors exits: antiword-helper <TERMINAL> "$file"
+
+* To properly use antiword in your mailcap settings:
+      application/msword; antiword %s; copiousoutput
+
+* To enable drag-and-drop support in KDE, use the kantiword script
+EOF
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-07-01 23:23:05 UTC (rev 114550)
+++ community-x86_64/PKGBUILD	2014-07-01 23:23:19 UTC (rev 114551)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Aaron, phrakture, Griffin <aaron at archlinux.org>
-# Contributor: Gustav Munkby <grddev at gmx.net>
-
-pkgname=antiword
-pkgver=0.37
-pkgrel=3
-pkgdesc="A free MS Word reader for Linux and RISC OS"
-arch=('i686' 'x86_64')
-url="http://www.winfield.demon.nl/"
-license=('GPL')
-depends=('bash')
-install=antiword.install
-source=("http://www.winfield.demon.nl/linux/$pkgname-$pkgver.tar.gz"
-        'antiword-helper')
-md5sums=('f868e2a269edcbc06bf77e89a55898d1'
-         '01a988376cfd4bb268120ab597c9abe3')
-
-build(){
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  sed -i "s|GLOBAL_INSTALL_DIR =.*|GLOBAL_INSTALL_DIR = /usr/bin|g" \
-    Makefile.Linux
-
-  make OPT="${CFLAGS} -DNDEBUG" LDFLAGS="${LDFLAGS}"
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-  make DESTDIR="${pkgdir}" global_install
-  install -m755 $srcdir/antiword-helper $pkgdir/usr/bin/
-  install -Dm644 Docs/antiword.1 $pkgdir/usr/share/man/man1/antiword.1
-}

Copied: antiword/repos/community-x86_64/PKGBUILD (from rev 114550, antiword/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-07-01 23:23:19 UTC (rev 114551)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Aaron, phrakture, Griffin <aaron at archlinux.org>
+# Contributor: Gustav Munkby <grddev at gmx.net>
+
+pkgname=antiword
+pkgver=0.37
+pkgrel=4
+pkgdesc="A free MS Word reader for Linux and RISC OS"
+arch=('i686' 'x86_64')
+url="http://www.winfield.demon.nl/"
+license=('GPL')
+depends=('bash')
+install=antiword.install
+source=("http://www.winfield.demon.nl/linux/$pkgname-$pkgver.tar.gz"
+        'antiword-helper')
+md5sums=('f868e2a269edcbc06bf77e89a55898d1'
+         '01a988376cfd4bb268120ab597c9abe3')
+
+build(){
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  sed -i "s|GLOBAL_INSTALL_DIR =.*|GLOBAL_INSTALL_DIR = /usr/bin|g" \
+    Makefile.Linux
+
+  make OPT="${CFLAGS} -DNDEBUG" LDFLAGS="${LDFLAGS}"
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  make DESTDIR="${pkgdir}" global_install
+  install -m755 $srcdir/antiword-helper $pkgdir/usr/bin/
+  install -Dm644 Docs/antiword.1 $pkgdir/usr/share/man/man1/antiword.1
+}

Deleted: community-x86_64/antiword-helper
===================================================================
--- community-x86_64/antiword-helper	2014-07-01 23:23:05 UTC (rev 114550)
+++ community-x86_64/antiword-helper	2014-07-01 23:23:19 UTC (rev 114551)
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-[ $# -eq 2 ] || exit 1
-
-tmpfile=/tmp/aw$$.txt
-editor=${EDITOR:-`which vi`}
-terminal="$2"
-
-antiword "$1" > $tmpfile
-chmod -w $tmpfile
-$terminal -e $editor $tmpfile
-chmod +w $tmpfile
-rm $tmpfile

Copied: antiword/repos/community-x86_64/antiword-helper (from rev 114550, antiword/trunk/antiword-helper)
===================================================================
--- community-x86_64/antiword-helper	                        (rev 0)
+++ community-x86_64/antiword-helper	2014-07-01 23:23:19 UTC (rev 114551)
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+[ $# -eq 2 ] || exit 1
+
+tmpfile=/tmp/aw$$.txt
+editor=${EDITOR:-`which vi`}
+terminal="$2"
+
+antiword "$1" > $tmpfile
+chmod -w $tmpfile
+$terminal -e $editor $tmpfile
+chmod +w $tmpfile
+rm $tmpfile

Deleted: community-x86_64/antiword.install
===================================================================
--- community-x86_64/antiword.install	2014-07-01 23:23:05 UTC (rev 114550)
+++ community-x86_64/antiword.install	2014-07-01 23:23:19 UTC (rev 114551)
@@ -1,16 +0,0 @@
-post_install() {
-  cat << EOF
-NOTES On Antiword Integration:
-
-* If you use mozplugger, make sure to configure the
-  msword section like so (replacing <TERMINAL> with your
-  terminal of choice):
-      application/msword: doc, dot: Microsoft Word Document
-                ignore_errors exits: antiword-helper <TERMINAL> "$file"
-
-* To properly use antiword in your mailcap settings:
-      application/msword; antiword %s; copiousoutput
-
-* To enable drag-and-drop support in KDE, use the kantiword script
-EOF
-}

Copied: antiword/repos/community-x86_64/antiword.install (from rev 114550, antiword/trunk/antiword.install)
===================================================================
--- community-x86_64/antiword.install	                        (rev 0)
+++ community-x86_64/antiword.install	2014-07-01 23:23:19 UTC (rev 114551)
@@ -0,0 +1,16 @@
+post_install() {
+  cat << EOF
+NOTES On Antiword Integration:
+
+* If you use mozplugger, make sure to configure the
+  msword section like so (replacing <TERMINAL> with your
+  terminal of choice):
+      application/msword: doc, dot: Microsoft Word Document
+                ignore_errors exits: antiword-helper <TERMINAL> "$file"
+
+* To properly use antiword in your mailcap settings:
+      application/msword; antiword %s; copiousoutput
+
+* To enable drag-and-drop support in KDE, use the kantiword script
+EOF
+}




More information about the arch-commits mailing list