[arch-commits] Commit in golangide/repos (12 files)
Alexander Rødseth
arodseth at nymeria.archlinux.org
Sat May 11 18:38:52 UTC 2013
Date: Saturday, May 11, 2013 @ 20:38:52
Author: arodseth
Revision: 90350
archrelease: copy trunk to community-x86_64, community-i686
Added:
golangide/repos/community-i686/PKGBUILD
(from rev 90349, golangide/trunk/PKGBUILD)
golangide/repos/community-i686/golangide.png
(from rev 90349, golangide/trunk/golangide.png)
golangide/repos/community-i686/golangide.sh
(from rev 90349, golangide/trunk/golangide.sh)
golangide/repos/community-x86_64/PKGBUILD
(from rev 90349, golangide/trunk/PKGBUILD)
golangide/repos/community-x86_64/golangide.png
(from rev 90349, golangide/trunk/golangide.png)
golangide/repos/community-x86_64/golangide.sh
(from rev 90349, 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
-------------------------------+
/PKGBUILD | 188 ++++++++++++++++++++++++++++++++++++++++
/golangide.sh | 14 ++
community-i686/PKGBUILD | 87 ------------------
community-i686/golangide.sh | 8 -
community-x86_64/PKGBUILD | 87 ------------------
community-x86_64/golangide.sh | 8 -
6 files changed, 202 insertions(+), 190 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2013-05-11 18:38:38 UTC (rev 90349)
+++ community-i686/PKGBUILD 2013-05-11 18:38:52 UTC (rev 90350)
@@ -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=17
-pkgrel=2
-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' 'qt4' 'qjson')
-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=('88fae4a43a82ecb12739bfe6612d736fa963d8beaf30dccfb305c335929c3871'
- '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 90349, golangide/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-11 18:38:52 UTC (rev 90350)
@@ -0,0 +1,94 @@
+#$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=18.1
+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' 'qt5-base' 'qt5-webkit')
+makedepends=('gendesk')
+options=('!strip')
+source=("$pkgname.tgz::https://github.com/visualfc/liteide/archive/x$pkgver.zip"
+ 'golangide.png'
+ 'golangide.sh')
+sha256sums=('4ca6438099314789f4cd8fd3acc8016d8e32594634a6d0f130f5666dcb0a3d6c'
+ '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
+ '93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04')
+_name=('Golang IDE')
+
+prepare() {
+ cd "$srcdir"
+
+ gendesk -n
+
+ cd "$srcdir/liteide-x$pkgver/build"
+ head -n-3 build_linux.sh > build_linux_fixed.sh
+ mv build_linux_fixed.sh build_linux.sh
+ head -n-4 webkit_linux.sh > webkit_linux_fixed.sh
+ mv webkit_linux_fixed.sh webkit_linux.sh
+ chmod +x build_linux.sh webkit_linux.sh
+}
+
+build() {
+ cd "$srcdir/liteide-x$pkgver/build"
+
+ msg2 'Compiling...'
+ 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-x$pkgver/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-x$pkgver/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 90349, golangide/trunk/golangide.png)
===================================================================
(Binary files differ)
Deleted: community-i686/golangide.sh
===================================================================
--- community-i686/golangide.sh 2013-05-11 18:38:38 UTC (rev 90349)
+++ community-i686/golangide.sh 2013-05-11 18:38:52 UTC (rev 90350)
@@ -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 90349, golangide/trunk/golangide.sh)
===================================================================
--- community-i686/golangide.sh (rev 0)
+++ community-i686/golangide.sh 2013-05-11 18:38:52 UTC (rev 90350)
@@ -0,0 +1,7 @@
+#!/bin/sh
+ELF=/usr/bin/liteide
+if [ ! -z $GOROOT -a -e $GOROOT ]; then
+ $ELF $@
+else
+ GOROOT=/usr/lib/go $ELF $@
+fi
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2013-05-11 18:38:38 UTC (rev 90349)
+++ community-x86_64/PKGBUILD 2013-05-11 18:38:52 UTC (rev 90350)
@@ -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=17
-pkgrel=2
-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' 'qt4' 'qjson')
-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=('88fae4a43a82ecb12739bfe6612d736fa963d8beaf30dccfb305c335929c3871'
- '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 90349, golangide/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-05-11 18:38:52 UTC (rev 90350)
@@ -0,0 +1,94 @@
+#$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=18.1
+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' 'qt5-base' 'qt5-webkit')
+makedepends=('gendesk')
+options=('!strip')
+source=("$pkgname.tgz::https://github.com/visualfc/liteide/archive/x$pkgver.zip"
+ 'golangide.png'
+ 'golangide.sh')
+sha256sums=('4ca6438099314789f4cd8fd3acc8016d8e32594634a6d0f130f5666dcb0a3d6c'
+ '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
+ '93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04')
+_name=('Golang IDE')
+
+prepare() {
+ cd "$srcdir"
+
+ gendesk -n
+
+ cd "$srcdir/liteide-x$pkgver/build"
+ head -n-3 build_linux.sh > build_linux_fixed.sh
+ mv build_linux_fixed.sh build_linux.sh
+ head -n-4 webkit_linux.sh > webkit_linux_fixed.sh
+ mv webkit_linux_fixed.sh webkit_linux.sh
+ chmod +x build_linux.sh webkit_linux.sh
+}
+
+build() {
+ cd "$srcdir/liteide-x$pkgver/build"
+
+ msg2 'Compiling...'
+ 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-x$pkgver/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-x$pkgver/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 90349, golangide/trunk/golangide.png)
===================================================================
(Binary files differ)
Deleted: community-x86_64/golangide.sh
===================================================================
--- community-x86_64/golangide.sh 2013-05-11 18:38:38 UTC (rev 90349)
+++ community-x86_64/golangide.sh 2013-05-11 18:38:52 UTC (rev 90350)
@@ -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 90349, golangide/trunk/golangide.sh)
===================================================================
--- community-x86_64/golangide.sh (rev 0)
+++ community-x86_64/golangide.sh 2013-05-11 18:38:52 UTC (rev 90350)
@@ -0,0 +1,7 @@
+#!/bin/sh
+ELF=/usr/bin/liteide
+if [ ! -z $GOROOT -a -e $GOROOT ]; then
+ $ELF $@
+else
+ GOROOT=/usr/lib/go $ELF $@
+fi
More information about the arch-commits
mailing list