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

Alexander Rødseth arodseth at nymeria.archlinux.org
Thu Feb 7 22:46:24 UTC 2013


    Date: Thursday, February 7, 2013 @ 23:46:23
  Author: arodseth
Revision: 83985

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

Added:
  golangide/repos/community-i686/PKGBUILD
    (from rev 83984, golangide/trunk/PKGBUILD)
  golangide/repos/community-i686/golangide.png
    (from rev 83984, golangide/trunk/golangide.png)
  golangide/repos/community-i686/golangide.sh
    (from rev 83984, golangide/trunk/golangide.sh)
  golangide/repos/community-x86_64/PKGBUILD
    (from rev 83984, golangide/trunk/PKGBUILD)
  golangide/repos/community-x86_64/golangide.png
    (from rev 83984, golangide/trunk/golangide.png)
  golangide/repos/community-x86_64/golangide.sh
    (from rev 83984, golangide/trunk/golangide.sh)
Deleted:
  golangide/repos/community-i686/PKGBUILD
  golangide/repos/community-i686/golangide.png
  golangide/repos/community-i686/golangide.sh
  golangide/repos/community-x86_64/PKGBUILD
  golangide/repos/community-x86_64/golangide.png
  golangide/repos/community-x86_64/golangide.sh

-------------------------------+
 community-i686/PKGBUILD       |  174 ++++++++++++++++++++--------------------
 community-i686/golangide.sh   |   16 +--
 community-x86_64/PKGBUILD     |  174 ++++++++++++++++++++--------------------
 community-x86_64/golangide.sh |   16 +--
 4 files changed, 190 insertions(+), 190 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-02-07 22:46:08 UTC (rev 83984)
+++ community-i686/PKGBUILD	2013-02-07 22:46:23 UTC (rev 83985)
@@ -1,87 +0,0 @@
-#$Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: spambanane <happy.house at gmx.de>
-# Contributor: Matteo <matteo.dek at gmail.com>
-
-pkgname=golangide
-pkgver=16
-pkgrel=1
-pkgdesc='IDE for editing and building projects written in the Go programming language (now LiteIDE X)'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'libpng12' 'glib2' 'qt' 'qjson' 'qtwebkit')
-makedepends=('gendesk')
-options=('!strip')
-_name=('Golang IDE')
-# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-386-webkit.tar.bz2
-# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-amd64-webkit.tar.bz2
-source=("$pkgname.tgz::https://nodeload.github.com/visualfc/liteide/tar.gz/master"
-        'golangide.png'
-        'golangide.sh')
-sha256sums=('ad40b86cace58bf85bf94e09d9dfc353cbdb31f09566bfd9487d15f321fbe078'
-            '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
-            'aa5ea27f9c3626431a9cb45e5267771a1eeff48b2e3927c0574eaef9302cfd74')
-
-build() {
-  cd "$srcdir"
-  msg2 'Generating .desktop file...'
-  gendesk -n
-
-  msg2 'Compiling...'
-  cd liteide-master/build
-  chmod +x build_linux.sh webkit_linux.sh
-  QTDIR=/usr ./build_linux.sh
-  QTDIR=/usr ./webkit_linux.sh
-
-  # Fixing insecure RPATH, need to test if this is still needed
-  msg2 'Fixing...'
-  cd ../liteidex
-  find . -name "*.so" -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-}
-
-package() {
-  msg2 'Creating directories...'
-  mkdir -p "$pkgdir/usr/lib/liteide"
-  mkdir -p "$pkgdir/usr/share/liteide"
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-
-  cd "$srcdir/liteide-master/build/liteide"
-
-  msg2 'Packaging executables...'
-  for binary in goastview goapi goexec godocview liteide; do
-    install -Dm755 "bin/$binary" "$pkgdir/usr/bin/$binary"
-  done
-  install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
-
-  cd "$srcdir/liteide-master/liteidex"
-
-  msg2 'Packaging resources...'
-  cp -r deploy/* "$pkgdir/usr/share/liteide"
-  cp -r os_deploy/* "$pkgdir/usr/share/liteide"
-
-  msg2 'Packaging libraries and plugins...'
-  cp -r liteide/lib/liteide/* "$pkgdir/usr/lib/liteide"
-  cp -r liteide/bin/libliteapp.* "$pkgdir/usr/lib/"
-  chmod -x "$pkgdir/usr/lib/liteide/plugins/"*
-
-  msg2 'Packaging license and license exception...'
-  install -Dm644 LICENSE.LGPL \
-    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 LGPL_EXCEPTION.TXT \
-    "$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION"
-
-  cd ../..
-
-  msg2 'Packaging menu entry and icon...'
-  install -Dm644 "$pkgname.desktop" \
-    "$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgname.png" \
-    "$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-  msg2 'Cleaning up...'
-  rm -rf "$pkgdir/usr/share/$pkgname/doc"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: golangide/repos/community-i686/PKGBUILD (from rev 83984, golangide/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-02-07 22:46:23 UTC (rev 83985)
@@ -0,0 +1,87 @@
+#$Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: spambanane <happy.house at gmx.de>
+# Contributor: Matteo <matteo.dek at gmail.com>
+
+pkgname=golangide
+pkgver=17
+pkgrel=1
+pkgdesc='IDE for editing and building projects written in the Go programming language (now LiteIDE X)'
+license=('LGPL')
+arch=('x86_64' 'i686')
+url='https://github.com/visualfc/liteide'
+depends=('go' 'libpng12' 'glib2' 'qt' 'qjson' 'qtwebkit')
+makedepends=('gendesk')
+options=('!strip')
+_name=('Golang IDE')
+# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-386-webkit.tar.bz2
+# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-amd64-webkit.tar.bz2
+source=("$pkgname.tgz::https://nodeload.github.com/visualfc/liteide/tar.gz/master"
+        'golangide.png'
+        'golangide.sh')
+sha256sums=('abc30259bc5d87d23713479e2e464cadd152e588a95400415f6a1247004cfeff'
+            '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
+            'aa5ea27f9c3626431a9cb45e5267771a1eeff48b2e3927c0574eaef9302cfd74')
+
+build() {
+  cd "$srcdir"
+  msg2 'Generating .desktop file...'
+  gendesk -n
+
+  msg2 'Compiling...'
+  cd liteide-master/build
+  chmod +x build_linux.sh webkit_linux.sh
+  QTDIR=/usr ./build_linux.sh
+  QTDIR=/usr ./webkit_linux.sh
+
+  # Fixing insecure RPATH, need to test if this is still needed
+  msg2 'Fixing...'
+  cd ../liteidex
+  find . -name "*.so" -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
+  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
+}
+
+package() {
+  msg2 'Creating directories...'
+  mkdir -p "$pkgdir/usr/lib/liteide"
+  mkdir -p "$pkgdir/usr/share/liteide"
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+
+  cd "$srcdir/liteide-master/build/liteide"
+
+  msg2 'Packaging executables...'
+  for binary in goastview goapi goexec godocview liteide; do
+    install -Dm755 "bin/$binary" "$pkgdir/usr/bin/$binary"
+  done
+  install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
+
+  cd "$srcdir/liteide-master/liteidex"
+
+  msg2 'Packaging resources...'
+  cp -r deploy/* "$pkgdir/usr/share/liteide"
+  cp -r os_deploy/* "$pkgdir/usr/share/liteide"
+
+  msg2 'Packaging libraries and plugins...'
+  cp -r liteide/lib/liteide/* "$pkgdir/usr/lib/liteide"
+  cp -r liteide/bin/libliteapp.* "$pkgdir/usr/lib/"
+  chmod -x "$pkgdir/usr/lib/liteide/plugins/"*
+
+  msg2 'Packaging license and license exception...'
+  install -Dm644 LICENSE.LGPL \
+    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LGPL_EXCEPTION.TXT \
+    "$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION"
+
+  cd ../..
+
+  msg2 'Packaging menu entry and icon...'
+  install -Dm644 "$pkgname.desktop" \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "$pkgname.png" \
+    "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+  msg2 'Cleaning up...'
+  rm -rf "$pkgdir/usr/share/$pkgname/doc"
+}
+
+# vim:set ts=2 sw=2 et:

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

Copied: golangide/repos/community-i686/golangide.png (from rev 83984, golangide/trunk/golangide.png)
===================================================================
(Binary files differ)

Deleted: community-i686/golangide.sh
===================================================================
--- community-i686/golangide.sh	2013-02-07 22:46:08 UTC (rev 83984)
+++ community-i686/golangide.sh	2013-02-07 22:46:23 UTC (rev 83985)
@@ -1,8 +0,0 @@
-#!/bin/sh
-ELF=/usr/bin/liteide
-# The libqjson issue has been reported upstream
-if [ ! -z $GOROOT -a -e $GOROOT ]; then
-  LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
-else
-  GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
-fi

Copied: golangide/repos/community-i686/golangide.sh (from rev 83984, golangide/trunk/golangide.sh)
===================================================================
--- community-i686/golangide.sh	                        (rev 0)
+++ community-i686/golangide.sh	2013-02-07 22:46:23 UTC (rev 83985)
@@ -0,0 +1,8 @@
+#!/bin/sh
+ELF=/usr/bin/liteide
+# The libqjson issue has been reported upstream
+if [ ! -z $GOROOT -a -e $GOROOT ]; then
+  LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
+else
+  GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
+fi

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-02-07 22:46:08 UTC (rev 83984)
+++ community-x86_64/PKGBUILD	2013-02-07 22:46:23 UTC (rev 83985)
@@ -1,87 +0,0 @@
-#$Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: spambanane <happy.house at gmx.de>
-# Contributor: Matteo <matteo.dek at gmail.com>
-
-pkgname=golangide
-pkgver=16
-pkgrel=1
-pkgdesc='IDE for editing and building projects written in the Go programming language (now LiteIDE X)'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'libpng12' 'glib2' 'qt' 'qjson' 'qtwebkit')
-makedepends=('gendesk')
-options=('!strip')
-_name=('Golang IDE')
-# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-386-webkit.tar.bz2
-# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-amd64-webkit.tar.bz2
-source=("$pkgname.tgz::https://nodeload.github.com/visualfc/liteide/tar.gz/master"
-        'golangide.png'
-        'golangide.sh')
-sha256sums=('ad40b86cace58bf85bf94e09d9dfc353cbdb31f09566bfd9487d15f321fbe078'
-            '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
-            'aa5ea27f9c3626431a9cb45e5267771a1eeff48b2e3927c0574eaef9302cfd74')
-
-build() {
-  cd "$srcdir"
-  msg2 'Generating .desktop file...'
-  gendesk -n
-
-  msg2 'Compiling...'
-  cd liteide-master/build
-  chmod +x build_linux.sh webkit_linux.sh
-  QTDIR=/usr ./build_linux.sh
-  QTDIR=/usr ./webkit_linux.sh
-
-  # Fixing insecure RPATH, need to test if this is still needed
-  msg2 'Fixing...'
-  cd ../liteidex
-  find . -name "*.so" -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-}
-
-package() {
-  msg2 'Creating directories...'
-  mkdir -p "$pkgdir/usr/lib/liteide"
-  mkdir -p "$pkgdir/usr/share/liteide"
-  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
-
-  cd "$srcdir/liteide-master/build/liteide"
-
-  msg2 'Packaging executables...'
-  for binary in goastview goapi goexec godocview liteide; do
-    install -Dm755 "bin/$binary" "$pkgdir/usr/bin/$binary"
-  done
-  install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
-
-  cd "$srcdir/liteide-master/liteidex"
-
-  msg2 'Packaging resources...'
-  cp -r deploy/* "$pkgdir/usr/share/liteide"
-  cp -r os_deploy/* "$pkgdir/usr/share/liteide"
-
-  msg2 'Packaging libraries and plugins...'
-  cp -r liteide/lib/liteide/* "$pkgdir/usr/lib/liteide"
-  cp -r liteide/bin/libliteapp.* "$pkgdir/usr/lib/"
-  chmod -x "$pkgdir/usr/lib/liteide/plugins/"*
-
-  msg2 'Packaging license and license exception...'
-  install -Dm644 LICENSE.LGPL \
-    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 LGPL_EXCEPTION.TXT \
-    "$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION"
-
-  cd ../..
-
-  msg2 'Packaging menu entry and icon...'
-  install -Dm644 "$pkgname.desktop" \
-    "$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgname.png" \
-    "$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-  msg2 'Cleaning up...'
-  rm -rf "$pkgdir/usr/share/$pkgname/doc"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: golangide/repos/community-x86_64/PKGBUILD (from rev 83984, golangide/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-02-07 22:46:23 UTC (rev 83985)
@@ -0,0 +1,87 @@
+#$Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: spambanane <happy.house at gmx.de>
+# Contributor: Matteo <matteo.dek at gmail.com>
+
+pkgname=golangide
+pkgver=17
+pkgrel=1
+pkgdesc='IDE for editing and building projects written in the Go programming language (now LiteIDE X)'
+license=('LGPL')
+arch=('x86_64' 'i686')
+url='https://github.com/visualfc/liteide'
+depends=('go' 'libpng12' 'glib2' 'qt' 'qjson' 'qtwebkit')
+makedepends=('gendesk')
+options=('!strip')
+_name=('Golang IDE')
+# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-386-webkit.tar.bz2
+# http://$pkgname.googlecode.com/files/liteidex$pkgver.linux-amd64-webkit.tar.bz2
+source=("$pkgname.tgz::https://nodeload.github.com/visualfc/liteide/tar.gz/master"
+        'golangide.png'
+        'golangide.sh')
+sha256sums=('abc30259bc5d87d23713479e2e464cadd152e588a95400415f6a1247004cfeff'
+            '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
+            'aa5ea27f9c3626431a9cb45e5267771a1eeff48b2e3927c0574eaef9302cfd74')
+
+build() {
+  cd "$srcdir"
+  msg2 'Generating .desktop file...'
+  gendesk -n
+
+  msg2 'Compiling...'
+  cd liteide-master/build
+  chmod +x build_linux.sh webkit_linux.sh
+  QTDIR=/usr ./build_linux.sh
+  QTDIR=/usr ./webkit_linux.sh
+
+  # Fixing insecure RPATH, need to test if this is still needed
+  msg2 'Fixing...'
+  cd ../liteidex
+  find . -name "*.so" -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
+  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
+}
+
+package() {
+  msg2 'Creating directories...'
+  mkdir -p "$pkgdir/usr/lib/liteide"
+  mkdir -p "$pkgdir/usr/share/liteide"
+  mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+
+  cd "$srcdir/liteide-master/build/liteide"
+
+  msg2 'Packaging executables...'
+  for binary in goastview goapi goexec godocview liteide; do
+    install -Dm755 "bin/$binary" "$pkgdir/usr/bin/$binary"
+  done
+  install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
+
+  cd "$srcdir/liteide-master/liteidex"
+
+  msg2 'Packaging resources...'
+  cp -r deploy/* "$pkgdir/usr/share/liteide"
+  cp -r os_deploy/* "$pkgdir/usr/share/liteide"
+
+  msg2 'Packaging libraries and plugins...'
+  cp -r liteide/lib/liteide/* "$pkgdir/usr/lib/liteide"
+  cp -r liteide/bin/libliteapp.* "$pkgdir/usr/lib/"
+  chmod -x "$pkgdir/usr/lib/liteide/plugins/"*
+
+  msg2 'Packaging license and license exception...'
+  install -Dm644 LICENSE.LGPL \
+    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LGPL_EXCEPTION.TXT \
+    "$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION"
+
+  cd ../..
+
+  msg2 'Packaging menu entry and icon...'
+  install -Dm644 "$pkgname.desktop" \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "$pkgname.png" \
+    "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+  msg2 'Cleaning up...'
+  rm -rf "$pkgdir/usr/share/$pkgname/doc"
+}
+
+# vim:set ts=2 sw=2 et:

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

Copied: golangide/repos/community-x86_64/golangide.png (from rev 83984, golangide/trunk/golangide.png)
===================================================================
(Binary files differ)

Deleted: community-x86_64/golangide.sh
===================================================================
--- community-x86_64/golangide.sh	2013-02-07 22:46:08 UTC (rev 83984)
+++ community-x86_64/golangide.sh	2013-02-07 22:46:23 UTC (rev 83985)
@@ -1,8 +0,0 @@
-#!/bin/sh
-ELF=/usr/bin/liteide
-# The libqjson issue has been reported upstream
-if [ ! -z $GOROOT -a -e $GOROOT ]; then
-  LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
-else
-  GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
-fi

Copied: golangide/repos/community-x86_64/golangide.sh (from rev 83984, golangide/trunk/golangide.sh)
===================================================================
--- community-x86_64/golangide.sh	                        (rev 0)
+++ community-x86_64/golangide.sh	2013-02-07 22:46:23 UTC (rev 83985)
@@ -0,0 +1,8 @@
+#!/bin/sh
+ELF=/usr/bin/liteide
+# The libqjson issue has been reported upstream
+if [ ! -z $GOROOT -a -e $GOROOT ]; then
+  LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
+else
+  GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
+fi




More information about the arch-commits mailing list