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

2016-01-23 Thread Alexander Rødseth
Date: Saturday, January 23, 2016 @ 23:36:23
  Author: arodseth
Revision: 158716

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

Added:
  plan9port/repos/community-i686/PKGBUILD
(from rev 158715, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-i686/acme.desktop
(from rev 158715, plan9port/trunk/acme.desktop)
  plan9port/repos/community-i686/acme.png
(from rev 158715, plan9port/trunk/acme.png)
  plan9port/repos/community-i686/acme.sh
(from rev 158715, plan9port/trunk/acme.sh)
  plan9port/repos/community-i686/plan9.install
(from rev 158715, plan9port/trunk/plan9.install)
  plan9port/repos/community-i686/plan9.sh
(from rev 158715, plan9port/trunk/plan9.sh)
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 158715, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/acme.desktop
(from rev 158715, plan9port/trunk/acme.desktop)
  plan9port/repos/community-x86_64/acme.png
(from rev 158715, plan9port/trunk/acme.png)
  plan9port/repos/community-x86_64/acme.sh
(from rev 158715, plan9port/trunk/acme.sh)
  plan9port/repos/community-x86_64/plan9.install
(from rev 158715, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 158715, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-i686/PKGBUILD
  plan9port/repos/community-i686/acme.desktop
  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.desktop
  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  |  202 +++
 /acme.desktop  |   22 
 /acme.sh   |6 +
 /plan9.install |   16 +++
 /plan9.sh  |4 
 community-i686/PKGBUILD|   98 --
 community-i686/acme.desktop|   11 --
 community-i686/acme.sh |3 
 community-i686/plan9.install   |8 -
 community-i686/plan9.sh|2 
 community-x86_64/PKGBUILD  |   98 --
 community-x86_64/acme.desktop  |   11 --
 community-x86_64/acme.sh   |3 
 community-x86_64/plan9.install |8 -
 community-x86_64/plan9.sh  |2 
 15 files changed, 250 insertions(+), 244 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-23 22:36:03 UTC (rev 158715)
+++ community-i686/PKGBUILD 2016-01-23 22:36:23 UTC (rev 158716)
@@ -1,98 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: phrakture 
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon 
-
-pkgname=plan9port
-pkgver=20150629
-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=71de840f054e52a8a077b2333edc1f4243480359"
-'plan9.sh' 'acme.png' 'acme.desktop' 'acme.sh')
-sha256sums=('SKIP'
-'60df44d57b06962f6860ee501a947d165ab8ccd01dd01ba47c82bc729d2ed6d7'
-'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
-'57fdddb70ba969ff4aa2f6c5b68dec02abe937a69044fe6726e1900d5ffe'
-'9c6eb7881f7333077d701f5201f7a620214d6c5c91c11b2ea7964483214e6cb2')
-
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f --pkgname acme --name 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

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

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 14:06:31
  Author: arodseth
Revision: 136155

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

Added:
  plan9port/repos/community-i686/PKGBUILD
(from rev 136154, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-i686/acme.desktop
(from rev 136154, plan9port/trunk/acme.desktop)
  plan9port/repos/community-i686/acme.png
(from rev 136154, plan9port/trunk/acme.png)
  plan9port/repos/community-i686/acme.sh
(from rev 136154, plan9port/trunk/acme.sh)
  plan9port/repos/community-i686/plan9.install
(from rev 136154, plan9port/trunk/plan9.install)
  plan9port/repos/community-i686/plan9.sh
(from rev 136154, plan9port/trunk/plan9.sh)
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 136154, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/acme.desktop
(from rev 136154, plan9port/trunk/acme.desktop)
  plan9port/repos/community-x86_64/acme.png
(from rev 136154, plan9port/trunk/acme.png)
  plan9port/repos/community-x86_64/acme.sh
(from rev 136154, plan9port/trunk/acme.sh)
  plan9port/repos/community-x86_64/plan9.install
(from rev 136154, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 136154, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-i686/PKGBUILD
  plan9port/repos/community-i686/acme.desktop
  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.desktop
  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.desktop  |   22 
 /acme.sh   |6 +
 /plan9.install |   16 +++
 /plan9.sh  |4 
 community-i686/PKGBUILD|   89 -
 community-i686/acme.desktop|   11 --
 community-i686/acme.sh |3 
 community-i686/plan9.install   |8 -
 community-i686/plan9.sh|4 
 community-x86_64/PKGBUILD  |   89 -
 community-x86_64/acme.desktop  |   11 --
 community-x86_64/acme.sh   |3 
 community-x86_64/plan9.install |8 -
 community-x86_64/plan9.sh  |4 
 15 files changed, 244 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 11:47:29 UTC (rev 136154)
+++ community-i686/PKGBUILD 2015-06-30 12:06:31 UTC (rev 136155)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: phrakture 
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon 
-
-pkgname=plan9port
-pkgver=20140306
-pkgrel=2
-pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-makedepends=('gendesk')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman' 'staticlibs')
-source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz";
-'plan9.sh' 'acme.png' 'acme.desktop' 'acme.sh')
-sha256sums=('cbb826cde693abdaa2051c49e7ebf75119bf2a4791fe3b3229f1ac36a408eaeb'
-'8768c080a8ceb0a52a3f866bd8ffc4b26f9deb97c6877ceea78ec0b316325a6b'
-'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
-'57fdddb70ba969ff4aa2f6c5b68dec02abe937a69044fe6726e1900d5ffe'
-'fa6d13acba9db07b5b394ffe828548efa532ff8cc8e1d321b65ae6fc65e1f444')
-
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f --pkgname acme --name Acme --genericname Editor \
---comment 'Editor from Plan9' --categories 
'Application;Development;TextEditor'
-}
-
-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,^#!/