[arch-commits] Commit in spring/repos (8 files)

2017-09-13 Thread Sven-Hendrik Haase
Date: Wednesday, September 13, 2017 @ 18:28:59
  Author: svenstaro
Revision: 257475

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
(from rev 257474, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
  spring/repos/community-staging-i686/PKGBUILD
(from rev 257474, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/gold-linker.patch
(from rev 257474, spring/trunk/gold-linker.patch)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch
(from rev 257474, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 257474, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/gold-linker.patch
(from rev 257474, spring/trunk/gold-linker.patch)

+
 community-staging-i686/0001-fix-build-with-curl-7.50.0.patch   |   49 
 community-staging-i686/PKGBUILD|   55 
++
 community-staging-i686/gold-linker.patch   |   51 +
 community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch |   49 
 community-staging-x86_64/PKGBUILD  |   55 
++
 community-staging-x86_64/gold-linker.patch |   51 +
 6 files changed, 310 insertions(+)

Copied: 
spring/repos/community-staging-i686/0001-fix-build-with-curl-7.50.0.patch (from 
rev 257474, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
===
--- community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
(rev 0)
+++ community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
2017-09-13 18:28:59 UTC (rev 257475)
@@ -0,0 +1,49 @@
+From 3a4f9f6fcd3934840f12ea2637e13745b681 Mon Sep 17 00:00:00 2001
+From: Johan Rehnberg 
+Date: Wed, 27 Jul 2016 11:13:18 +0200
+Subject: [PATCH] fix build with curl 7.50.0
+
+See the following commits for some details:
+https://github.com/curl/curl/commit/9adf3c4
+https://github.com/curl/curl/commit/434f8d0
+---
+ src/Downloader/Http/HttpDownloader.cpp | 1 -
+ src/Downloader/Http/HttpDownloader.h   | 3 +--
+ 2 files changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/src/Downloader/Http/HttpDownloader.cpp 
b/src/Downloader/Http/HttpDownloader.cpp
+index 6e13c12..dd33bba 100644
+--- a/src/Downloader/Http/HttpDownloader.cpp
 b/src/Downloader/Http/HttpDownloader.cpp
+@@ -22,7 +22,6 @@
+ #endif
+ 
+ #include 
+-#include 
+ #include 
+ #include 
+ #include 
+diff --git a/src/Downloader/Http/HttpDownloader.h 
b/src/Downloader/Http/HttpDownloader.h
+index 77bbcee..47e0e79 100644
+--- a/src/Downloader/Http/HttpDownloader.h
 b/src/Downloader/Http/HttpDownloader.h
+@@ -5,6 +5,7 @@
+ 
+ #include "../IDownloader.h"
+ 
++#include 
+ #include 
+ #include 
+ 
+@@ -13,8 +14,6 @@ class HashSHA1;
+ class CFile;
+ class FileData;
+ class DownloadData;
+-typedef void CURLM;
+-typedef void CURL;
+ 
+ class CHttpDownloader: public IDownloader
+ {
+-- 
+2.9.2
+

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 257474, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 18:28:59 UTC (rev 257475)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=spring
+pkgver=103.0
+pkgrel=8
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url="http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+gold-linker.patch
+0001-fix-build-with-curl-7.50.0.patch)
+md5sums=('e71a3dc16262b06b159157ecd52bbbe5'
+ '4837a3a273e346d159c3a9ad75ac1a1e'
+ '8e4652c98c66016959fdd0dd1f6fc283')
+
+prepare() {
+  cd spring_$pkgver
+
+  # https://springrts.com/mantis/view.php?id=5413
+  patch -Np1 -i ../gold-linker.patch
+
+  patch -Np1 -d tools/pr-downloader <../0001-fix-build-with-curl-7.50.0.patch
+
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
+-DCMAKE_SKIP_RPATH=YES
+  make

[arch-commits] Commit in spring/repos (8 files)

2017-08-03 Thread Evangelos Foutras
Date: Thursday, August 3, 2017 @ 21:17:13
  Author: foutrelis
Revision: 247970

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
(from rev 247969, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
  spring/repos/community-staging-i686/PKGBUILD
(from rev 247969, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/gold-linker.patch
(from rev 247969, spring/trunk/gold-linker.patch)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch
(from rev 247969, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 247969, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/gold-linker.patch
(from rev 247969, spring/trunk/gold-linker.patch)

+
 community-staging-i686/0001-fix-build-with-curl-7.50.0.patch   |   49 
 community-staging-i686/PKGBUILD|   55 
++
 community-staging-i686/gold-linker.patch   |   51 +
 community-staging-x86_64/0001-fix-build-with-curl-7.50.0.patch |   49 
 community-staging-x86_64/PKGBUILD  |   55 
++
 community-staging-x86_64/gold-linker.patch |   51 +
 6 files changed, 310 insertions(+)

Copied: 
spring/repos/community-staging-i686/0001-fix-build-with-curl-7.50.0.patch (from 
rev 247969, spring/trunk/0001-fix-build-with-curl-7.50.0.patch)
===
--- community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
(rev 0)
+++ community-staging-i686/0001-fix-build-with-curl-7.50.0.patch
2017-08-03 21:17:13 UTC (rev 247970)
@@ -0,0 +1,49 @@
+From 3a4f9f6fcd3934840f12ea2637e13745b681 Mon Sep 17 00:00:00 2001
+From: Johan Rehnberg 
+Date: Wed, 27 Jul 2016 11:13:18 +0200
+Subject: [PATCH] fix build with curl 7.50.0
+
+See the following commits for some details:
+https://github.com/curl/curl/commit/9adf3c4
+https://github.com/curl/curl/commit/434f8d0
+---
+ src/Downloader/Http/HttpDownloader.cpp | 1 -
+ src/Downloader/Http/HttpDownloader.h   | 3 +--
+ 2 files changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/src/Downloader/Http/HttpDownloader.cpp 
b/src/Downloader/Http/HttpDownloader.cpp
+index 6e13c12..dd33bba 100644
+--- a/src/Downloader/Http/HttpDownloader.cpp
 b/src/Downloader/Http/HttpDownloader.cpp
+@@ -22,7 +22,6 @@
+ #endif
+ 
+ #include 
+-#include 
+ #include 
+ #include 
+ #include 
+diff --git a/src/Downloader/Http/HttpDownloader.h 
b/src/Downloader/Http/HttpDownloader.h
+index 77bbcee..47e0e79 100644
+--- a/src/Downloader/Http/HttpDownloader.h
 b/src/Downloader/Http/HttpDownloader.h
+@@ -5,6 +5,7 @@
+ 
+ #include "../IDownloader.h"
+ 
++#include 
+ #include 
+ #include 
+ 
+@@ -13,8 +14,6 @@ class HashSHA1;
+ class CFile;
+ class FileData;
+ class DownloadData;
+-typedef void CURLM;
+-typedef void CURL;
+ 
+ class CHttpDownloader: public IDownloader
+ {
+-- 
+2.9.2
+

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 247969, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-03 21:17:13 UTC (rev 247970)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=spring
+pkgver=103.0
+pkgrel=7
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url="http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+gold-linker.patch
+0001-fix-build-with-curl-7.50.0.patch)
+md5sums=('e71a3dc16262b06b159157ecd52bbbe5'
+ '4837a3a273e346d159c3a9ad75ac1a1e'
+ '8e4652c98c66016959fdd0dd1f6fc283')
+
+prepare() {
+  cd spring_$pkgver
+
+  # https://springrts.com/mantis/view.php?id=5413
+  patch -Np1 -i ../gold-linker.patch
+
+  patch -Np1 -d tools/pr-downloader <../0001-fix-build-with-curl-7.50.0.patch
+
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+

[arch-commits] Commit in spring/repos (8 files)

2016-07-20 Thread Sven-Hendrik Haase
Date: Wednesday, July 20, 2016 @ 12:06:22
  Author: svenstaro
Revision: 183624

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

Added:
  spring/repos/community-i686/PKGBUILD
(from rev 183623, spring/trunk/PKGBUILD)
  spring/repos/community-i686/spring.install
(from rev 183623, spring/trunk/spring.install)
  spring/repos/community-x86_64/PKGBUILD
(from rev 183623, spring/trunk/PKGBUILD)
  spring/repos/community-x86_64/spring.install
(from rev 183623, spring/trunk/spring.install)
Deleted:
  spring/repos/community-i686/PKGBUILD
  spring/repos/community-i686/spring.install
  spring/repos/community-x86_64/PKGBUILD
  spring/repos/community-x86_64/spring.install

-+
 /PKGBUILD   |   92 ++
 /spring.install |   24 +
 community-i686/PKGBUILD |   46 ---
 community-i686/spring.install   |   12 
 community-x86_64/PKGBUILD   |   46 ---
 community-x86_64/spring.install |   12 
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-20 12:06:16 UTC (rev 183623)
+++ community-i686/PKGBUILD 2016-07-20 12:06:22 UTC (rev 183624)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Arkham 
-# Contributor: Christoph Zeiler 
-
-pkgname=spring
-pkgver=102.0
-pkgrel=1
-pkgdesc='A free 3D real-time-strategy (RTS) game engine'
-arch=('i686' 'x86_64')
-url="http://springrts.com/;
-license=('GPL')
-depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
- 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
-makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
-optdepends=('python2: python-based bots'
-'java-runtime: java-based bots')
-install=spring.install
-source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
-md5sums=('e4f973617fca0c959619467f7340bfb9')
-
-prepare() {
-  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
-}
-
-build() {
-  cd spring_${pkgver}
-
-  cmake. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DDATADIR=share/spring \
--DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
--DCMAKE_SKIP_RPATH=YES
-  make
-}
-
-package() {
-  cd spring_${pkgver}
-
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir/etc/spring"
-  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
-}
-
-# vim sw=2:ts=2 et:

Copied: spring/repos/community-i686/PKGBUILD (from rev 183623, 
spring/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-20 12:06:22 UTC (rev 183624)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=spring
+pkgver=103.0
+pkgrel=1
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url="http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
+md5sums=('e71a3dc16262b06b159157ecd52bbbe5')
+
+prepare() {
+  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${pkgver}
+
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir/etc/spring"
+  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
+}
+
+# vim sw=2:ts=2 et:

Deleted: community-i686/spring.install
===
--- community-i686/spring.install   2016-07-20 12:06:16 UTC (rev 183623)
+++ community-i686/spring.install   2016-07-20 12:06:22 UTC (rev 183624)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: spring/repos/community-i686/spring.install (from rev 183623, 
spring/trunk/spring.install)
===
--- community-i686/spring.install   (rev 0)
+++ community-i686/spring.install   2016-07-20 12:06:22 UTC 

[arch-commits] Commit in spring/repos (8 files)

2016-07-15 Thread Sven-Hendrik Haase
Date: Friday, July 15, 2016 @ 20:05:31
  Author: svenstaro
Revision: 182953

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

Added:
  spring/repos/community-i686/PKGBUILD
(from rev 182952, spring/trunk/PKGBUILD)
  spring/repos/community-i686/spring.install
(from rev 182952, spring/trunk/spring.install)
  spring/repos/community-x86_64/PKGBUILD
(from rev 182952, spring/trunk/PKGBUILD)
  spring/repos/community-x86_64/spring.install
(from rev 182952, spring/trunk/spring.install)
Deleted:
  spring/repos/community-i686/PKGBUILD
  spring/repos/community-i686/spring.install
  spring/repos/community-x86_64/PKGBUILD
  spring/repos/community-x86_64/spring.install

-+
 /PKGBUILD   |   92 ++
 /spring.install |   24 +
 community-i686/PKGBUILD |   46 ---
 community-i686/spring.install   |   12 
 community-x86_64/PKGBUILD   |   46 ---
 community-x86_64/spring.install |   12 
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-15 20:05:26 UTC (rev 182952)
+++ community-i686/PKGBUILD 2016-07-15 20:05:31 UTC (rev 182953)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Arkham 
-# Contributor: Christoph Zeiler 
-
-pkgname=spring
-pkgver=101.0
-pkgrel=2
-pkgdesc='A free 3D real-time-strategy (RTS) game engine'
-arch=('i686' 'x86_64')
-url="http://springrts.com/;
-license=('GPL')
-depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
- 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
-makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
-optdepends=('python2: python-based bots'
-'java-runtime: java-based bots')
-install=spring.install
-source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
-md5sums=('26d7558c86f0af615211f629eaccffa6')
-
-prepare() {
-  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
-}
-
-build() {
-  cd spring_${pkgver}
-
-  cmake. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DDATADIR=share/spring \
--DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
--DCMAKE_SKIP_RPATH=YES
-  make
-}
-
-package() {
-  cd spring_${pkgver}
-
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir/etc/spring"
-  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
-}
-
-# vim sw=2:ts=2 et:

Copied: spring/repos/community-i686/PKGBUILD (from rev 182952, 
spring/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-15 20:05:31 UTC (rev 182953)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=spring
+pkgver=102.0
+pkgrel=1
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url="http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
+md5sums=('e4f973617fca0c959619467f7340bfb9')
+
+prepare() {
+  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${pkgver}
+
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir/etc/spring"
+  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
+}
+
+# vim sw=2:ts=2 et:

Deleted: community-i686/spring.install
===
--- community-i686/spring.install   2016-07-15 20:05:26 UTC (rev 182952)
+++ community-i686/spring.install   2016-07-15 20:05:31 UTC (rev 182953)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: spring/repos/community-i686/spring.install (from rev 182952, 
spring/trunk/spring.install)
===
--- community-i686/spring.install   (rev 0)
+++ community-i686/spring.install   2016-07-15 20:05:31 UTC (rev 

[arch-commits] Commit in spring/repos (8 files)

2016-03-26 Thread Sven-Hendrik Haase
Date: Sunday, March 27, 2016 @ 04:53:42
  Author: svenstaro
Revision: 168524

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

Added:
  spring/repos/community-i686/PKGBUILD
(from rev 168523, spring/trunk/PKGBUILD)
  spring/repos/community-i686/spring.install
(from rev 168523, spring/trunk/spring.install)
  spring/repos/community-x86_64/PKGBUILD
(from rev 168523, spring/trunk/PKGBUILD)
  spring/repos/community-x86_64/spring.install
(from rev 168523, spring/trunk/spring.install)
Deleted:
  spring/repos/community-i686/PKGBUILD
  spring/repos/community-i686/spring.install
  spring/repos/community-x86_64/PKGBUILD
  spring/repos/community-x86_64/spring.install

-+
 /PKGBUILD   |   92 ++
 /spring.install |   24 +
 community-i686/PKGBUILD |   45 --
 community-i686/spring.install   |   12 
 community-x86_64/PKGBUILD   |   45 --
 community-x86_64/spring.install |   12 
 6 files changed, 116 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-27 02:53:32 UTC (rev 168523)
+++ community-i686/PKGBUILD 2016-03-27 02:53:42 UTC (rev 168524)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Arkham 
-# Contributor: Christoph Zeiler 
-
-pkgname=spring
-pkgver=100.0
-pkgrel=5
-pkgdesc='A free 3D real-time-strategy (RTS) game engine'
-arch=('i686' 'x86_64')
-url="http://springrts.com/;
-license=('GPL')
-depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
- 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
-makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
-optdepends=('python2: python-based bots'
-'java-runtime: java-based bots')
-install=spring.install
-source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
-md5sums=('d4d4a4f928b0004c3165d373526f958e')
-
-prepare() {
-  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
-}
-
-build() {
-  cd spring_${pkgver}
-
-  cmake. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DDATADIR=share/spring \
--DCMAKE_SKIP_RPATH=YES
-  make
-}
-
-package() {
-  cd spring_${pkgver}
-
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir/etc/spring"
-  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
-}
-
-# vim sw=2:ts=2 et:

Copied: spring/repos/community-i686/PKGBUILD (from rev 168523, 
spring/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-27 02:53:42 UTC (rev 168524)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=spring
+pkgver=101.0
+pkgrel=1
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url="http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'jdk8-openjdk' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
+md5sums=('26d7558c86f0af615211f629eaccffa6')
+
+prepare() {
+  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DJAVA_HOME=/usr/lib/jvm/java-8-openjdk \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${pkgver}
+
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir/etc/spring"
+  echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
+}
+
+# vim sw=2:ts=2 et:

Deleted: community-i686/spring.install
===
--- community-i686/spring.install   2016-03-27 02:53:32 UTC (rev 168523)
+++ community-i686/spring.install   2016-03-27 02:53:42 UTC (rev 168524)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: spring/repos/community-i686/spring.install (from rev 168523, 
spring/trunk/spring.install)
===
--- community-i686/spring.install   (rev 0)
+++ community-i686/spring.install   2016-03-27 02:53:42 UTC (rev 168524)
@@ -0,0 +1,12 @@
+post_install() {
+ 

[arch-commits] Commit in spring/repos (8 files)

2015-07-16 Thread Sven-Hendrik Haase
Date: Thursday, July 16, 2015 @ 12:47:14
  Author: svenstaro
Revision: 136992

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

Added:
  spring/repos/community-i686/PKGBUILD
(from rev 136991, spring/trunk/PKGBUILD)
  spring/repos/community-i686/spring.install
(from rev 136991, spring/trunk/spring.install)
  spring/repos/community-x86_64/PKGBUILD
(from rev 136991, spring/trunk/PKGBUILD)
  spring/repos/community-x86_64/spring.install
(from rev 136991, spring/trunk/spring.install)
Deleted:
  spring/repos/community-i686/PKGBUILD
  spring/repos/community-i686/spring.install
  spring/repos/community-x86_64/PKGBUILD
  spring/repos/community-x86_64/spring.install

-+
 /PKGBUILD   |   90 ++
 /spring.install |   24 ++
 community-i686/PKGBUILD |   45 ---
 community-i686/spring.install   |   12 -
 community-x86_64/PKGBUILD   |   45 ---
 community-x86_64/spring.install |   12 -
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-16 10:47:08 UTC (rev 136991)
+++ community-i686/PKGBUILD 2015-07-16 10:47:14 UTC (rev 136992)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Arkham arkham at archlinux dot us
-# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
-
-pkgname=spring
-pkgver=99.0
-pkgrel=1
-pkgdesc='A free 3D real-time-strategy (RTS) game engine'
-arch=('i686' 'x86_64')
-url=http://springrts.com/;
-license=('GPL')
-depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
- 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
-makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
-optdepends=('python2: python-based bots'
-'java-runtime: java-based bots')
-install=spring.install
-source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
-md5sums=('3c9d8e0f7616060550e6452236d7626f')
-
-prepare() {
-  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
-}
-
-build() {
-  cd spring_${pkgver}
-
-  cmake. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DDATADIR=share/spring \
--DCMAKE_SKIP_RPATH=YES
-  make
-}
-
-package() {
-  cd spring_${pkgver}
-
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/etc/spring
-  echo '$HOME/.spring'  $pkgdir/etc/spring/datadir
-}
-
-# vim sw=2:ts=2 et:

Copied: spring/repos/community-i686/PKGBUILD (from rev 136991, 
spring/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-16 10:47:14 UTC (rev 136992)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+
+pkgname=spring
+pkgver=100.0
+pkgrel=1
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url=http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2' 
'libunwind'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma)
+md5sums=('d4d4a4f928b0004c3165d373526f958e')
+
+prepare() {
+  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
+}
+
+build() {
+  cd spring_${pkgver}
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/spring
+  echo '$HOME/.spring'  $pkgdir/etc/spring/datadir
+}
+
+# vim sw=2:ts=2 et:

Deleted: community-i686/spring.install
===
--- community-i686/spring.install   2015-07-16 10:47:08 UTC (rev 136991)
+++ community-i686/spring.install   2015-07-16 10:47:14 UTC (rev 136992)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: spring/repos/community-i686/spring.install (from rev 136991, 
spring/trunk/spring.install)
===
--- community-i686/spring.install   (rev 0)
+++ community-i686/spring.install   2015-07-16 10:47:14 

[arch-commits] Commit in spring/repos (8 files)

2015-04-22 Thread Sven-Hendrik Haase
Date: Wednesday, April 22, 2015 @ 21:15:13
  Author: svenstaro
Revision: 131988

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

Added:
  spring/repos/community-staging-i686/
  
spring/repos/community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
(from rev 131987, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
  spring/repos/community-staging-i686/PKGBUILD
(from rev 131987, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/spring.install
(from rev 131987, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  
spring/repos/community-staging-x86_64/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
(from rev 131987, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 131987, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/spring.install
(from rev 131987, spring/trunk/spring.install)

--+
 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
   |   32 ++
 community-staging-i686/PKGBUILD
  |   51 ++
 community-staging-i686/spring.install  
  |   12 ++
 
community-staging-x86_64/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
 |   32 ++
 community-staging-x86_64/PKGBUILD  
  |   51 ++
 community-staging-x86_64/spring.install
  |   12 ++
 6 files changed, 190 insertions(+)

Copied: 
spring/repos/community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
 (from rev 131987, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
===
--- 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
  (rev 0)
+++ 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
  2015-04-22 19:15:13 UTC (rev 131988)
@@ -0,0 +1,32 @@
+From 9e0db5f602407de4e7875ca85761b41782c1bb9c Mon Sep 17 00:00:00 2001
+From: Johan Rehnberg cleanr...@gmail.com
+Date: Wed, 31 Dec 2014 11:35:19 +0100
+Subject: [PATCH] fix GetListOfSubModules to support GLOB returning both //
+ and /
+
+I needed this when building on archlinux with cmake 3.1.0 where GLOB returns 
/
+---
+ rts/build/cmake/Util.cmake | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/rts/build/cmake/Util.cmake b/rts/build/cmake/Util.cmake
+index 9f49e54..e23db7b 100644
+--- a/rts/build/cmake/Util.cmake
 b/rts/build/cmake/Util.cmake
+@@ -166,10 +166,11 @@ EndFunction (MakeGlobal)
+ # Find all CMakeLists.txt files in sub-directories
+ Macro(GetListOfSubModules list_var)
+   File(GLOB ${list_var} RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} 
FOLLOW_SYMLINKS ${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt)
+-
+   # Strip away the /CMakeLists.txt parts, so we end up with just a list 
of dirs,
+   # for example: AAI;RAI;KAIK
+-  String(REPLACE //CMakeLists.txt  ${list_var} ${${list_var}})
++  # GLOB can prefix with // or / (perhaps changed in cmake 3.1.0), 
this double replace will support both // and /
++  String(REPLACE /CMakeLists.txt  ${list_var} ${${list_var}})
++  String(REPLACE /  ${list_var} ${${list_var}})
+ EndMacro (GetListOfSubModules list_var)
+ 
+ 
+-- 
+2.2.1
+

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 131987, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-22 19:15:13 UTC (rev 131988)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+
+pkgname=spring
+pkgver=98.0
+pkgrel=5
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url=http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
+md5sums=('fbe60dff4d39918157869f45738e0a8a'
+ 

[arch-commits] Commit in spring/repos (8 files)

2015-01-31 Thread Evangelos Foutras
Date: Sunday, February 1, 2015 @ 01:28:13
  Author: foutrelis
Revision: 126893

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

Added:
  spring/repos/community-staging-i686/
  
spring/repos/community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
(from rev 126892, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
  spring/repos/community-staging-i686/PKGBUILD
(from rev 126892, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/spring.install
(from rev 126892, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  
spring/repos/community-staging-x86_64/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
(from rev 126892, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 126892, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/spring.install
(from rev 126892, spring/trunk/spring.install)

--+
 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
   |   32 ++
 community-staging-i686/PKGBUILD
  |   51 ++
 community-staging-i686/spring.install  
  |   12 ++
 
community-staging-x86_64/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
 |   32 ++
 community-staging-x86_64/PKGBUILD  
  |   51 ++
 community-staging-x86_64/spring.install
  |   12 ++
 6 files changed, 190 insertions(+)

Copied: 
spring/repos/community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
 (from rev 126892, 
spring/trunk/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
===
--- 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
  (rev 0)
+++ 
community-staging-i686/0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch
  2015-02-01 00:28:13 UTC (rev 126893)
@@ -0,0 +1,32 @@
+From 9e0db5f602407de4e7875ca85761b41782c1bb9c Mon Sep 17 00:00:00 2001
+From: Johan Rehnberg cleanr...@gmail.com
+Date: Wed, 31 Dec 2014 11:35:19 +0100
+Subject: [PATCH] fix GetListOfSubModules to support GLOB returning both //
+ and /
+
+I needed this when building on archlinux with cmake 3.1.0 where GLOB returns 
/
+---
+ rts/build/cmake/Util.cmake | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/rts/build/cmake/Util.cmake b/rts/build/cmake/Util.cmake
+index 9f49e54..e23db7b 100644
+--- a/rts/build/cmake/Util.cmake
 b/rts/build/cmake/Util.cmake
+@@ -166,10 +166,11 @@ EndFunction (MakeGlobal)
+ # Find all CMakeLists.txt files in sub-directories
+ Macro(GetListOfSubModules list_var)
+   File(GLOB ${list_var} RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} 
FOLLOW_SYMLINKS ${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt)
+-
+   # Strip away the /CMakeLists.txt parts, so we end up with just a list 
of dirs,
+   # for example: AAI;RAI;KAIK
+-  String(REPLACE //CMakeLists.txt  ${list_var} ${${list_var}})
++  # GLOB can prefix with // or / (perhaps changed in cmake 3.1.0), 
this double replace will support both // and /
++  String(REPLACE /CMakeLists.txt  ${list_var} ${${list_var}})
++  String(REPLACE /  ${list_var} ${${list_var}})
+ EndMacro (GetListOfSubModules list_var)
+ 
+ 
+-- 
+2.2.1
+

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 126892, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-01 00:28:13 UTC (rev 126893)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+
+pkgname=spring
+pkgver=98.0
+pkgrel=4
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url=http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+0001-fix-GetListOfSubModules-to-support-GLOB-returning-bo.patch)
+md5sums=('fbe60dff4d39918157869f45738e0a8a'
+ 

[arch-commits] Commit in spring/repos (8 files)

2014-08-16 Thread Sven-Hendrik Haase
Date: Saturday, August 16, 2014 @ 12:50:32
  Author: svenstaro
Revision: 117452

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/PKGBUILD
(from rev 117451, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/optional.patch
(from rev 117451, spring/trunk/optional.patch)
  spring/repos/community-staging-i686/spring.install
(from rev 117451, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 117451, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/optional.patch
(from rev 117451, spring/trunk/optional.patch)
  spring/repos/community-staging-x86_64/spring.install
(from rev 117451, spring/trunk/spring.install)

-+
 community-staging-i686/PKGBUILD |   48 ++
 community-staging-i686/optional.patch   |   19 +++
 community-staging-i686/spring.install   |   12 +++
 community-staging-x86_64/PKGBUILD   |   48 ++
 community-staging-x86_64/optional.patch |   19 +++
 community-staging-x86_64/spring.install |   12 +++
 6 files changed, 158 insertions(+)

Copied: spring/repos/community-staging-i686/PKGBUILD (from rev 117451, 
spring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-08-16 10:50:32 UTC (rev 117452)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+
+pkgname=spring
+pkgver=97.0
+pkgrel=2
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url=http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils' 'libx11')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${pkgver}_src.tar.lzma
+optional.patch)
+md5sums=('cf37518379c2a3a8c3c9cd689ee9b034'
+ 'd7904319b17c32299b44594ccb6ff4ea')
+
+build() {
+  bsdtar -xf ${pkgname}_${pkgver}_src.tar.lzma
+  
+  cd spring_${pkgver}
+
+  sed -i /ory(test)/d tools/unitsync/CMakeLists.txt
+  patch -Np1  $srcdir/optional.patch
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATADIR=share/spring \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/spring
+  echo '$HOME/.spring'  $pkgdir/etc/spring/datadir
+}
+
+# vim sw=2:ts=2 et:

Copied: spring/repos/community-staging-i686/optional.patch (from rev 117451, 
spring/trunk/optional.patch)
===
--- community-staging-i686/optional.patch   (rev 0)
+++ community-staging-i686/optional.patch   2014-08-16 10:50:32 UTC (rev 
117452)
@@ -0,0 +1,19 @@
+diff --git a/rts/System/ThreadPool.cpp b/rts/System/ThreadPool.cpp
+index 0ce4b11..34e53ab 100644
+--- a/rts/System/ThreadPool.cpp
 b/rts/System/ThreadPool.cpp
+@@ -136,12 +136,11 @@ static bool 
DoTask(boost::shared_lockboost::shared_mutex lk_)
+ static bool DoTask(std::shared_ptrITaskGroup tg)
+ {
+   auto p = tg-GetTask();
+-  const bool f = p;
+-  if (f) {
++  if (p) {
+   SCOPED_MT_TIMER(::ThreadWorkers (accumulated));
+   (*p)();
+   }
+-  return f;
++  return static_castbool(p);
+ }
+ 
+ 

Copied: spring/repos/community-staging-i686/spring.install (from rev 117451, 
spring/trunk/spring.install)
===
--- community-staging-i686/spring.install   (rev 0)
+++ community-staging-i686/spring.install   2014-08-16 10:50:32 UTC (rev 
117452)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: spring/repos/community-staging-x86_64/PKGBUILD (from rev 117451, 
spring/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-08-16 10:50:32 UTC (rev 117452)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler 

[arch-commits] Commit in spring/repos (8 files)

2014-07-09 Thread Sven-Hendrik Haase
Date: Thursday, July 10, 2014 @ 04:41:05
  Author: svenstaro
Revision: 115390

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

Added:
  spring/repos/community-i686/PKGBUILD
(from rev 115389, spring/trunk/PKGBUILD)
  spring/repos/community-i686/spring.install
(from rev 115389, spring/trunk/spring.install)
  spring/repos/community-x86_64/PKGBUILD
(from rev 115389, spring/trunk/PKGBUILD)
  spring/repos/community-x86_64/spring.install
(from rev 115389, spring/trunk/spring.install)
Deleted:
  spring/repos/community-i686/PKGBUILD
  spring/repos/community-i686/spring.install
  spring/repos/community-x86_64/PKGBUILD
  spring/repos/community-x86_64/spring.install

-+
 /PKGBUILD   |   92 ++
 /spring.install |   24 +
 community-i686/PKGBUILD |   44 --
 community-i686/spring.install   |   12 
 community-x86_64/PKGBUILD   |   44 --
 community-x86_64/spring.install |   12 
 6 files changed, 116 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-10 02:40:51 UTC (rev 115389)
+++ community-i686/PKGBUILD 2014-07-10 02:41:05 UTC (rev 115390)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Arkham arkham at archlinux dot us
-# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
-
-pkgname=spring
-pkgver=0.96.0
-_pkgver=96.0
-pkgrel=1
-pkgdesc='A free 3D real-time-strategy (RTS) game engine'
-arch=('i686' 'x86_64')
-url=http://springrts.com/;
-license=('GPL')
-depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl'
- 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils')
-makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
-optdepends=('python2: python-based bots'
-'java-runtime: java-based bots')
-install=spring.install
-source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${_pkgver}_src.tar.lzma)
-md5sums=('2aeaaed4cf316ea22761efc0ef849a73')
-
-build() {
-  bsdtar -xf ${pkgname}_${_pkgver}_src.tar.lzma
-  
-  cd spring_${_pkgver}
-
-  cmake. \
--DCMAKE_INSTALL_PREFIX=/usr \
-   -DDATADIR=share/spring \
--DCMAKE_SKIP_RPATH=YES
-  make
-}
-
-package() {
-  cd spring_${_pkgver}
-
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/etc/spring
-  echo '$HOME/.spring'  $pkgdir/etc/spring/datadir
-}
-
-# vim sw=2:ts=2 et:

Copied: spring/repos/community-i686/PKGBUILD (from rev 115389, 
spring/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-10 02:41:05 UTC (rev 115390)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Arkham arkham at archlinux dot us
+# Contributor: Christoph Zeiler archNOSPAM_at_moonblade.dot.org
+
+pkgname=spring
+pkgver=0.97.0
+_pkgver=97.0
+pkgrel=1
+pkgdesc='A free 3D real-time-strategy (RTS) game engine'
+arch=('i686' 'x86_64')
+url=http://springrts.com/;
+license=('GPL')
+depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl2'
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils')
+makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment' 
'mesa')
+optdepends=('python2: python-based bots'
+'java-runtime: java-based bots')
+install=spring.install
+source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${_pkgver}_src.tar.lzma)
+md5sums=('cf37518379c2a3a8c3c9cd689ee9b034')
+
+build() {
+  bsdtar -xf ${pkgname}_${_pkgver}_src.tar.lzma
+  
+  cd spring_${_pkgver}
+
+  sed -i /ory(test)/d tools/unitsync/CMakeLists.txt
+
+  cmake. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+   -DDATADIR=share/spring \
+-DCMAKE_SKIP_RPATH=YES
+  make
+}
+
+package() {
+  cd spring_${_pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/spring
+  echo '$HOME/.spring'  $pkgdir/etc/spring/datadir
+}
+
+# vim sw=2:ts=2 et:

Deleted: community-i686/spring.install
===
--- community-i686/spring.install   2014-07-10 02:40:51 UTC (rev 115389)
+++ community-i686/spring.install   2014-07-10 02:41:05 UTC (rev 115390)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: spring/repos/community-i686/spring.install (from rev 115389, 
spring/trunk/spring.install)
===
--- community-i686/spring.install   (rev 0)
+++ community-i686/spring.install 

[arch-commits] Commit in spring/repos (8 files)

2013-07-10 Thread Sven-Hendrik Haase
Date: Wednesday, July 10, 2013 @ 17:15:34
  Author: svenstaro
Revision: 93813

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/PKGBUILD
(from rev 93812, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/boost-1.50.patch
(from rev 93812, spring/trunk/boost-1.50.patch)
  spring/repos/community-staging-i686/spring.install
(from rev 93812, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 93812, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/boost-1.50.patch
(from rev 93812, spring/trunk/boost-1.50.patch)
  spring/repos/community-staging-x86_64/spring.install
(from rev 93812, spring/trunk/spring.install)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-i686/boost-1.50.patch   | 2539 
 community-staging-i686/spring.install |   12 
 community-staging-x86_64/PKGBUILD |   44 
 community-staging-x86_64/boost-1.50.patch | 2539 
 community-staging-x86_64/spring.install   |   12 
 6 files changed, 5190 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 93812:93813 to see the changes.


[arch-commits] Commit in spring/repos (8 files)

2013-03-28 Thread Sven-Hendrik Haase
Date: Thursday, March 28, 2013 @ 20:17:04
  Author: svenstaro
Revision: 87225

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/PKGBUILD
(from rev 87224, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/boost-1.50.patch
(from rev 87224, spring/trunk/boost-1.50.patch)
  spring/repos/community-staging-i686/spring.install
(from rev 87224, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 87224, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/boost-1.50.patch
(from rev 87224, spring/trunk/boost-1.50.patch)
  spring/repos/community-staging-x86_64/spring.install
(from rev 87224, spring/trunk/spring.install)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-i686/boost-1.50.patch   | 2539 
 community-staging-i686/spring.install |   12 
 community-staging-x86_64/PKGBUILD |   44 
 community-staging-x86_64/boost-1.50.patch | 2539 
 community-staging-x86_64/spring.install   |   12 
 6 files changed, 5190 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 87224:87225 to see the changes.


[arch-commits] Commit in spring/repos (8 files)

2013-01-25 Thread Sven-Hendrik Haase
Date: Friday, January 25, 2013 @ 20:31:20
  Author: svenstaro
Revision: 82921

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

Added:
  spring/repos/community-staging-i686/
  spring/repos/community-staging-i686/PKGBUILD
(from rev 82920, spring/trunk/PKGBUILD)
  spring/repos/community-staging-i686/boost-1.50.patch
(from rev 82920, spring/trunk/boost-1.50.patch)
  spring/repos/community-staging-i686/spring.install
(from rev 82920, spring/trunk/spring.install)
  spring/repos/community-staging-x86_64/
  spring/repos/community-staging-x86_64/PKGBUILD
(from rev 82920, spring/trunk/PKGBUILD)
  spring/repos/community-staging-x86_64/boost-1.50.patch
(from rev 82920, spring/trunk/boost-1.50.patch)
  spring/repos/community-staging-x86_64/spring.install
(from rev 82920, spring/trunk/spring.install)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-i686/boost-1.50.patch   | 2539 
 community-staging-i686/spring.install |   12 
 community-staging-x86_64/PKGBUILD |   45 
 community-staging-x86_64/boost-1.50.patch | 2539 
 community-staging-x86_64/spring.install   |   12 
 6 files changed, 5192 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 82920:82921 to see the changes.