[arch-commits] Commit in plan9port/repos (20 files)

Alexander Rødseth arodseth at archlinux.org
Wed Apr 26 10:52:28 UTC 2017


    Date: Wednesday, April 26, 2017 @ 10:52:27
  Author: arodseth
Revision: 225659

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

Added:
  plan9port/repos/community-i686/PKGBUILD
    (from rev 225658, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-i686/acme.png
    (from rev 225658, plan9port/trunk/acme.png)
  plan9port/repos/community-i686/acme.sh
    (from rev 225658, plan9port/trunk/acme.sh)
  plan9port/repos/community-i686/plan9.install
    (from rev 225658, plan9port/trunk/plan9.install)
  plan9port/repos/community-i686/plan9.sh
    (from rev 225658, plan9port/trunk/plan9.sh)
  plan9port/repos/community-x86_64/PKGBUILD
    (from rev 225658, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/acme.png
    (from rev 225658, plan9port/trunk/acme.png)
  plan9port/repos/community-x86_64/acme.sh
    (from rev 225658, plan9port/trunk/acme.sh)
  plan9port/repos/community-x86_64/plan9.install
    (from rev 225658, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
    (from rev 225658, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-i686/PKGBUILD
  plan9port/repos/community-i686/acme.png
  plan9port/repos/community-i686/acme.sh
  plan9port/repos/community-i686/plan9.install
  plan9port/repos/community-i686/plan9.sh
  plan9port/repos/community-x86_64/PKGBUILD
  plan9port/repos/community-x86_64/acme.png
  plan9port/repos/community-x86_64/acme.sh
  plan9port/repos/community-x86_64/plan9.install
  plan9port/repos/community-x86_64/plan9.sh

--------------------------------+
 /PKGBUILD                      |  196 +++++++++++++++++++++++++++++++++++++++
 /acme.sh                       |    6 +
 /plan9.install                 |   16 +++
 /plan9.sh                      |    4 
 community-i686/PKGBUILD        |   98 -------------------
 community-i686/acme.sh         |    3 
 community-i686/plan9.install   |    8 -
 community-i686/plan9.sh        |    2 
 community-x86_64/PKGBUILD      |   98 -------------------
 community-x86_64/acme.sh       |    3 
 community-x86_64/plan9.install |    8 -
 community-x86_64/plan9.sh      |    2 
 12 files changed, 222 insertions(+), 222 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-i686/PKGBUILD	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,98 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: phrakture <aaronmgriffin--gmail--com>
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-
-pkgname=plan9port
-pkgver=20160411.35d4392
-pkgrel=1
-pkgdesc='Ports of applications from Plan 9'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-makedepends=('gendesk' 'git')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman' 'staticlibs')
-source=("git://github.com/9fans/plan9port.git#commit=${pkgver#*.}"
-        'plan9.sh' 'acme.png' 'acme.sh')
-sha256sums=('SKIP'
-            '60df44d57b06962f6860ee501a947d165ab8ccd01dd01ba47c82bc729d2ed6d7'
-            'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
-            '9c6eb7881f7333077d701f5201f7a620214d6c5c91c11b2ea7964483214e6cb2')
-
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f \
-    --name Acme \
-    --pkgname acme \
-    --genericname Editor \
-    --comment 'Editor from Plan9' \
-    --categories 'Application;Development;TextEditor'
-
-  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
-  grep -rl _BSD_SOURCE "$pkgname" | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
-}
-
-package() {
-  cd "$pkgname"
-
-  # Try the gentoo way for fixing hardcoded paths
-  PLAN9=/usr/lib/plan9
-  grep --null -l -r '/usr/local/plan9' | xargs --null sed -i "s!/usr/local/plan9!${PLAN9}!g"
-
-  d=usr/lib
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
-  install -d "$pkgdir/$d"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
-  cd "$pkgdir/$d/plan9"
-  ./INSTALL -c -r "$pkgdir/$d/plan9"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -print0 |xargs -0 rm -f
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-    LICENSE
-
-  # Fix python scripts
-  find "$pkgdir" -name '*.py' -print0 |xargs -0 \
-    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
-    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-
-  # Package text files
-  for i in CHANGES CONTRIBUTORS README.md TODO; do
-    install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
-    rm -f $i
-  done
-
-  # Decompress the plan9 man pages
-  for i in `find $pkgdir/$d/plan9/man -type f`; do
-    if [ ${i##*.} = "gz" ]; then
-      gunzip "$i"
-    fi
-  done
-
-  # Once more
-  grep --null -l -r "$pkgdir$PLAN9" | xargs --null sed -i "s!$pkgdir$PLAN9!${PLAN9}!g" || true
-  grep --null -l -r "/build/plan9port/pkg/plan9port/$PLAN9" | xargs --null sed -i "s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g" || true
-
-  # Acme
-  cd "$srcdir"
-  install -Dm644 acme.desktop "$pkgdir/usr/share/applications/acme.desktop"
-  install -Dm755 acme.sh "$pkgdir/usr/bin/acme"
-  install -Dm644 acme.png "$pkgdir/usr/share/pixmaps/acme.png"
-
-  # Remove git repository
-  rm -rf "$pkgdir/usr/lib/plan9/.git"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: plan9port/repos/community-i686/PKGBUILD (from rev 225658, plan9port/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,98 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: phrakture <aaronmgriffin at gmail.com>
+# Contributor: Fazlul Shahriar <>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+
+pkgname=plan9port
+pkgver=20170426.9e
+pkgrel=1
+pkgdesc='Ports of applications from Plan 9'
+arch=('x86_64' 'i686')
+url='http://swtch.com/plan9port/'
+license=('custom')
+depends=('xorg-server' 'libxt' 'libxext' 'fuse2')
+makedepends=('gendesk' 'git')
+optdepends=('python2: for the codereview script')
+provides=('plan9')
+install='plan9.install'
+options=('!zipman' 'staticlibs')
+source=("git://github.com/9fans/plan9port.git#commit=9e52ea8a29db42f37188fd8fa35d641724c3d015"
+        'plan9.sh' 'acme.png' 'acme.sh')
+sha256sums=('SKIP'
+            '60df44d57b06962f6860ee501a947d165ab8ccd01dd01ba47c82bc729d2ed6d7'
+            'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
+            '9c6eb7881f7333077d701f5201f7a620214d6c5c91c11b2ea7964483214e6cb2')
+
+
+prepare() {
+  # Generate a desktop shortcut for the Acme editor
+  gendesk -f \
+    --name Acme \
+    --pkgname acme \
+    --genericname Editor \
+    --comment 'Editor from Plan9' \
+    --categories 'Application;Development;TextEditor'
+
+  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
+  grep -rl _BSD_SOURCE "$pkgname" | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
+}
+
+package() {
+  cd "$pkgname"
+
+  # Try the gentoo way for fixing hardcoded paths
+  PLAN9=/usr/lib/plan9
+  grep --null -l -r '/usr/local/plan9' | xargs --null sed -i "s!/usr/local/plan9!${PLAN9}!g"
+
+  d=usr/lib
+
+  ./INSTALL -b
+  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
+  install -d "$pkgdir/$d"
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
+  cd "$pkgdir/$d/plan9"
+  ./INSTALL -c -r "$pkgdir/$d/plan9"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Clean up
+  rm -rf .hg/
+  rm -f .hgignore .hgtags
+  find . -name '.cvsignore' -print0 |xargs -0 rm -f
+  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
+    LICENSE
+
+  # Fix python scripts
+  find "$pkgdir" -name '*.py' -print0 |xargs -0 \
+    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
+    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+
+  # Package text files
+  for i in CHANGES CONTRIBUTORS README.md TODO; do
+    install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
+    rm -f $i
+  done
+
+  # Decompress the plan9 man pages
+  for i in `find $pkgdir/$d/plan9/man -type f`; do
+    if [ ${i##*.} = "gz" ]; then
+      gunzip "$i"
+    fi
+  done
+
+  # Once more
+  grep --null -l -r "$pkgdir$PLAN9" | xargs --null sed -i "s!$pkgdir$PLAN9!${PLAN9}!g" || true
+  grep --null -l -r "/build/plan9port/pkg/plan9port/$PLAN9" | xargs --null sed -i "s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g" || true
+
+  # Acme
+  cd "$srcdir"
+  install -Dm644 acme.desktop "$pkgdir/usr/share/applications/acme.desktop"
+  install -Dm755 acme.sh "$pkgdir/usr/bin/acme"
+  install -Dm644 acme.png "$pkgdir/usr/share/pixmaps/acme.png"
+
+  # Remove git repository
+  rm -rf "$pkgdir/usr/lib/plan9/.git"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/acme.png
===================================================================
(Binary files differ)

Copied: plan9port/repos/community-i686/acme.png (from rev 225658, plan9port/trunk/acme.png)
===================================================================
(Binary files differ)

Deleted: community-i686/acme.sh
===================================================================
--- community-i686/acme.sh	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-i686/acme.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,3 +0,0 @@
-#!/bin/sh
-. /etc/profile.d/plan9.sh
-9 acme "$@"

Copied: plan9port/repos/community-i686/acme.sh (from rev 225658, plan9port/trunk/acme.sh)
===================================================================
--- community-i686/acme.sh	                        (rev 0)
+++ community-i686/acme.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,3 @@
+#!/bin/sh
+. /etc/profile.d/plan9.sh
+9 acme "$@"

Deleted: community-i686/plan9.install
===================================================================
--- community-i686/plan9.install	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-i686/plan9.install	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,8 +0,0 @@
-post_install() {
-  echo ""
-  echo "==> In order to use Plan9 specific apps, run them"
-  echo "    as arguments to the '9' script, i.e. '9 date'"
-  echo "==> Please log off or 'source /etc/profile.d/plan9.sh'"
-  echo "==> Run '9 man 1 intro | less' to begin"
-  source /etc/profile.d/plan9.sh
-}

Copied: plan9port/repos/community-i686/plan9.install (from rev 225658, plan9port/trunk/plan9.install)
===================================================================
--- community-i686/plan9.install	                        (rev 0)
+++ community-i686/plan9.install	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,8 @@
+post_install() {
+  echo ""
+  echo "==> In order to use Plan9 specific apps, run them"
+  echo "    as arguments to the '9' script, i.e. '9 date'"
+  echo "==> Please log off or 'source /etc/profile.d/plan9.sh'"
+  echo "==> Run '9 man 1 intro | less' to begin"
+  source /etc/profile.d/plan9.sh
+}

Deleted: community-i686/plan9.sh
===================================================================
--- community-i686/plan9.sh	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-i686/plan9.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,2 +0,0 @@
-export PLAN9=/usr/lib/plan9
-export PATH=$PATH:$PLAN9/bin

Copied: plan9port/repos/community-i686/plan9.sh (from rev 225658, plan9port/trunk/plan9.sh)
===================================================================
--- community-i686/plan9.sh	                        (rev 0)
+++ community-i686/plan9.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,2 @@
+export PLAN9=/usr/lib/plan9
+export PATH=$PATH:$PLAN9/bin

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-x86_64/PKGBUILD	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,98 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: phrakture <aaronmgriffin--gmail--com>
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-
-pkgname=plan9port
-pkgver=20160411.35d4392
-pkgrel=1
-pkgdesc='Ports of applications from Plan 9'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-makedepends=('gendesk' 'git')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman' 'staticlibs')
-source=("git://github.com/9fans/plan9port.git#commit=${pkgver#*.}"
-        'plan9.sh' 'acme.png' 'acme.sh')
-sha256sums=('SKIP'
-            '60df44d57b06962f6860ee501a947d165ab8ccd01dd01ba47c82bc729d2ed6d7'
-            'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
-            '9c6eb7881f7333077d701f5201f7a620214d6c5c91c11b2ea7964483214e6cb2')
-
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f \
-    --name Acme \
-    --pkgname acme \
-    --genericname Editor \
-    --comment 'Editor from Plan9' \
-    --categories 'Application;Development;TextEditor'
-
-  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
-  grep -rl _BSD_SOURCE "$pkgname" | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
-}
-
-package() {
-  cd "$pkgname"
-
-  # Try the gentoo way for fixing hardcoded paths
-  PLAN9=/usr/lib/plan9
-  grep --null -l -r '/usr/local/plan9' | xargs --null sed -i "s!/usr/local/plan9!${PLAN9}!g"
-
-  d=usr/lib
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
-  install -d "$pkgdir/$d"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
-  cd "$pkgdir/$d/plan9"
-  ./INSTALL -c -r "$pkgdir/$d/plan9"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -print0 |xargs -0 rm -f
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-    LICENSE
-
-  # Fix python scripts
-  find "$pkgdir" -name '*.py' -print0 |xargs -0 \
-    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
-    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-
-  # Package text files
-  for i in CHANGES CONTRIBUTORS README.md TODO; do
-    install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
-    rm -f $i
-  done
-
-  # Decompress the plan9 man pages
-  for i in `find $pkgdir/$d/plan9/man -type f`; do
-    if [ ${i##*.} = "gz" ]; then
-      gunzip "$i"
-    fi
-  done
-
-  # Once more
-  grep --null -l -r "$pkgdir$PLAN9" | xargs --null sed -i "s!$pkgdir$PLAN9!${PLAN9}!g" || true
-  grep --null -l -r "/build/plan9port/pkg/plan9port/$PLAN9" | xargs --null sed -i "s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g" || true
-
-  # Acme
-  cd "$srcdir"
-  install -Dm644 acme.desktop "$pkgdir/usr/share/applications/acme.desktop"
-  install -Dm755 acme.sh "$pkgdir/usr/bin/acme"
-  install -Dm644 acme.png "$pkgdir/usr/share/pixmaps/acme.png"
-
-  # Remove git repository
-  rm -rf "$pkgdir/usr/lib/plan9/.git"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: plan9port/repos/community-x86_64/PKGBUILD (from rev 225658, plan9port/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,98 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: phrakture <aaronmgriffin at gmail.com>
+# Contributor: Fazlul Shahriar <>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+
+pkgname=plan9port
+pkgver=20170426.9e
+pkgrel=1
+pkgdesc='Ports of applications from Plan 9'
+arch=('x86_64' 'i686')
+url='http://swtch.com/plan9port/'
+license=('custom')
+depends=('xorg-server' 'libxt' 'libxext' 'fuse2')
+makedepends=('gendesk' 'git')
+optdepends=('python2: for the codereview script')
+provides=('plan9')
+install='plan9.install'
+options=('!zipman' 'staticlibs')
+source=("git://github.com/9fans/plan9port.git#commit=9e52ea8a29db42f37188fd8fa35d641724c3d015"
+        'plan9.sh' 'acme.png' 'acme.sh')
+sha256sums=('SKIP'
+            '60df44d57b06962f6860ee501a947d165ab8ccd01dd01ba47c82bc729d2ed6d7'
+            'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
+            '9c6eb7881f7333077d701f5201f7a620214d6c5c91c11b2ea7964483214e6cb2')
+
+
+prepare() {
+  # Generate a desktop shortcut for the Acme editor
+  gendesk -f \
+    --name Acme \
+    --pkgname acme \
+    --genericname Editor \
+    --comment 'Editor from Plan9' \
+    --categories 'Application;Development;TextEditor'
+
+  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
+  grep -rl _BSD_SOURCE "$pkgname" | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
+}
+
+package() {
+  cd "$pkgname"
+
+  # Try the gentoo way for fixing hardcoded paths
+  PLAN9=/usr/lib/plan9
+  grep --null -l -r '/usr/local/plan9' | xargs --null sed -i "s!/usr/local/plan9!${PLAN9}!g"
+
+  d=usr/lib
+
+  ./INSTALL -b
+  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
+  install -d "$pkgdir/$d"
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
+  cd "$pkgdir/$d/plan9"
+  ./INSTALL -c -r "$pkgdir/$d/plan9"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Clean up
+  rm -rf .hg/
+  rm -f .hgignore .hgtags
+  find . -name '.cvsignore' -print0 |xargs -0 rm -f
+  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
+    LICENSE
+
+  # Fix python scripts
+  find "$pkgdir" -name '*.py' -print0 |xargs -0 \
+    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/python2,' \
+    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+
+  # Package text files
+  for i in CHANGES CONTRIBUTORS README.md TODO; do
+    install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
+    rm -f $i
+  done
+
+  # Decompress the plan9 man pages
+  for i in `find $pkgdir/$d/plan9/man -type f`; do
+    if [ ${i##*.} = "gz" ]; then
+      gunzip "$i"
+    fi
+  done
+
+  # Once more
+  grep --null -l -r "$pkgdir$PLAN9" | xargs --null sed -i "s!$pkgdir$PLAN9!${PLAN9}!g" || true
+  grep --null -l -r "/build/plan9port/pkg/plan9port/$PLAN9" | xargs --null sed -i "s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g" || true
+
+  # Acme
+  cd "$srcdir"
+  install -Dm644 acme.desktop "$pkgdir/usr/share/applications/acme.desktop"
+  install -Dm755 acme.sh "$pkgdir/usr/bin/acme"
+  install -Dm644 acme.png "$pkgdir/usr/share/pixmaps/acme.png"
+
+  # Remove git repository
+  rm -rf "$pkgdir/usr/lib/plan9/.git"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/acme.png
===================================================================
(Binary files differ)

Copied: plan9port/repos/community-x86_64/acme.png (from rev 225658, plan9port/trunk/acme.png)
===================================================================
(Binary files differ)

Deleted: community-x86_64/acme.sh
===================================================================
--- community-x86_64/acme.sh	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-x86_64/acme.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,3 +0,0 @@
-#!/bin/sh
-. /etc/profile.d/plan9.sh
-9 acme "$@"

Copied: plan9port/repos/community-x86_64/acme.sh (from rev 225658, plan9port/trunk/acme.sh)
===================================================================
--- community-x86_64/acme.sh	                        (rev 0)
+++ community-x86_64/acme.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,3 @@
+#!/bin/sh
+. /etc/profile.d/plan9.sh
+9 acme "$@"

Deleted: community-x86_64/plan9.install
===================================================================
--- community-x86_64/plan9.install	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-x86_64/plan9.install	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,8 +0,0 @@
-post_install() {
-  echo ""
-  echo "==> In order to use Plan9 specific apps, run them"
-  echo "    as arguments to the '9' script, i.e. '9 date'"
-  echo "==> Please log off or 'source /etc/profile.d/plan9.sh'"
-  echo "==> Run '9 man 1 intro | less' to begin"
-  source /etc/profile.d/plan9.sh
-}

Copied: plan9port/repos/community-x86_64/plan9.install (from rev 225658, plan9port/trunk/plan9.install)
===================================================================
--- community-x86_64/plan9.install	                        (rev 0)
+++ community-x86_64/plan9.install	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,8 @@
+post_install() {
+  echo ""
+  echo "==> In order to use Plan9 specific apps, run them"
+  echo "    as arguments to the '9' script, i.e. '9 date'"
+  echo "==> Please log off or 'source /etc/profile.d/plan9.sh'"
+  echo "==> Run '9 man 1 intro | less' to begin"
+  source /etc/profile.d/plan9.sh
+}

Deleted: community-x86_64/plan9.sh
===================================================================
--- community-x86_64/plan9.sh	2017-04-26 10:52:09 UTC (rev 225658)
+++ community-x86_64/plan9.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -1,2 +0,0 @@
-export PLAN9=/usr/lib/plan9
-export PATH=$PATH:$PLAN9/bin

Copied: plan9port/repos/community-x86_64/plan9.sh (from rev 225658, plan9port/trunk/plan9.sh)
===================================================================
--- community-x86_64/plan9.sh	                        (rev 0)
+++ community-x86_64/plan9.sh	2017-04-26 10:52:27 UTC (rev 225659)
@@ -0,0 +1,2 @@
+export PLAN9=/usr/lib/plan9
+export PATH=$PATH:$PLAN9/bin



More information about the arch-commits mailing list