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

Sven-Hendrik Haase svenstaro at archlinux.org
Tue Sep 2 15:26:13 UTC 2014


    Date: Tuesday, September 2, 2014 @ 17:26:13
  Author: svenstaro
Revision: 118195

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

Added:
  gluon/repos/community-i686/PKGBUILD
    (from rev 118194, gluon/trunk/PKGBUILD)
  gluon/repos/community-i686/gcc47.patch
    (from rev 118194, gluon/trunk/gcc47.patch)
  gluon/repos/community-i686/gluon.install
    (from rev 118194, gluon/trunk/gluon.install)
  gluon/repos/community-x86_64/PKGBUILD
    (from rev 118194, gluon/trunk/PKGBUILD)
  gluon/repos/community-x86_64/gcc47.patch
    (from rev 118194, gluon/trunk/gcc47.patch)
  gluon/repos/community-x86_64/gluon.install
    (from rev 118194, gluon/trunk/gluon.install)
Deleted:
  gluon/repos/community-i686/PKGBUILD
  gluon/repos/community-i686/gcc47.patch
  gluon/repos/community-i686/gluon.install
  gluon/repos/community-x86_64/PKGBUILD
  gluon/repos/community-x86_64/gcc47.patch
  gluon/repos/community-x86_64/gluon.install

--------------------------------+
 /PKGBUILD                      |   86 +++++++++++++++++++++++++++++++++++++++
 /gcc47.patch                   |   62 ++++++++++++++++++++++++++++
 /gluon.install                 |   30 +++++++++++++
 community-i686/PKGBUILD        |   42 -------------------
 community-i686/gcc47.patch     |   31 --------------
 community-i686/gluon.install   |   15 ------
 community-x86_64/PKGBUILD      |   42 -------------------
 community-x86_64/gcc47.patch   |   31 --------------
 community-x86_64/gluon.install |   15 ------
 9 files changed, 178 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-09-02 15:25:59 UTC (rev 118194)
+++ community-i686/PKGBUILD	2014-09-02 15:26:13 UTC (rev 118195)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail.com>
-
-pkgname=gluon
-pkgver=0.71.0
-_pkgver=0.71
-pkgrel=5
-pkgdesc="A free and open source platform for creating and distributing games"
-arch=('i686' 'x86_64')
-url="http://gluon.gamingfreedom.org/"
-license=('LGPL')
-depends=('kdelibs' 'libsndfile' 'alure')
-makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform')
-install=gluon.install
-source=("http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz"
-        'gcc47.patch')
-md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe'
-         '92adbf8b23f4af2a15a005b031c81c5f')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 -i "$srcdir"/gcc47.patch
-
-  cd "$srcdir"
-  mkdir build
-  cd build
-  cmake ../$pkgname-$pkgver \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_SKIP_RPATH=ON
-  make
-}
-
-package() {
-  cd "$srcdir"/build
-  make DESTDIR="$pkgdir" install
-
-  if [[ "$CARCH" == "x86_64" ]]; then
-    mv "${pkgdir}"/usr/lib64 "${pkgdir}"/usr/lib
-  fi
-}

Copied: gluon/repos/community-i686/PKGBUILD (from rev 118194, gluon/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-09-02 15:26:13 UTC (rev 118195)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail.com>
+
+pkgname=gluon
+pkgver=0.71.0
+_pkgver=0.71
+pkgrel=6
+pkgdesc="A free and open source platform for creating and distributing games"
+arch=('i686' 'x86_64')
+url="http://gluon.gamingfreedom.org/"
+license=('LGPL')
+depends=('kdelibs' 'libsndfile' 'alure')
+makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform')
+install=gluon.install
+source=("http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz"
+        'gcc47.patch')
+md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe'
+         '92adbf8b23f4af2a15a005b031c81c5f')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 -i "$srcdir"/gcc47.patch
+
+  cd "$srcdir"
+  mkdir build
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON
+  grep -rl "Qt4::moc"|xargs sed -i "s/Qt4::moc/moc-qt4/" # No idea what's up here but I can't be bothered to fix it properly
+  make
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+
+  if [[ "$CARCH" == "x86_64" ]]; then
+    mv "${pkgdir}"/usr/lib64 "${pkgdir}"/usr/lib
+  fi
+}

Deleted: community-i686/gcc47.patch
===================================================================
--- community-i686/gcc47.patch	2014-09-02 15:25:59 UTC (rev 118194)
+++ community-i686/gcc47.patch	2014-09-02 15:26:13 UTC (rev 118195)
@@ -1,31 +0,0 @@
-From: Christoph Feck <christoph at maxiom.de>
-Date: Fri, 23 Mar 2012 22:35:09 +0000
-Subject: Fix includes
-X-Git-Url: http://quickgit.kde.org/?p=gluon.git&a=commitdiff&h=bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
----
-Fix includes
----
-
-
---- a/input/linux/detectlinux.cpp
-+++ b/input/linux/detectlinux.cpp
-@@ -26,6 +26,7 @@
- 
- #include <QtCore/QDir>
- 
-+#include <unistd.h>
- // #include <libudev.h>
- 
- using namespace GluonInput;
-
---- a/input/linux/inputthread.cpp
-+++ b/input/linux/inputthread.cpp
-@@ -30,6 +30,7 @@
- // #include <QtCore/QStringList>
- 
- #include <fcntl.h>
-+#include <unistd.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <linux/input.h>
-

Copied: gluon/repos/community-i686/gcc47.patch (from rev 118194, gluon/trunk/gcc47.patch)
===================================================================
--- community-i686/gcc47.patch	                        (rev 0)
+++ community-i686/gcc47.patch	2014-09-02 15:26:13 UTC (rev 118195)
@@ -0,0 +1,31 @@
+From: Christoph Feck <christoph at maxiom.de>
+Date: Fri, 23 Mar 2012 22:35:09 +0000
+Subject: Fix includes
+X-Git-Url: http://quickgit.kde.org/?p=gluon.git&a=commitdiff&h=bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
+---
+Fix includes
+---
+
+
+--- a/input/linux/detectlinux.cpp
++++ b/input/linux/detectlinux.cpp
+@@ -26,6 +26,7 @@
+ 
+ #include <QtCore/QDir>
+ 
++#include <unistd.h>
+ // #include <libudev.h>
+ 
+ using namespace GluonInput;
+
+--- a/input/linux/inputthread.cpp
++++ b/input/linux/inputthread.cpp
+@@ -30,6 +30,7 @@
+ // #include <QtCore/QStringList>
+ 
+ #include <fcntl.h>
++#include <unistd.h>
+ #include <sys/stat.h>
+ #include <sys/types.h>
+ #include <linux/input.h>
+

Deleted: community-i686/gluon.install
===================================================================
--- community-i686/gluon.install	2014-09-02 15:25:59 UTC (rev 118194)
+++ community-i686/gluon.install	2014-09-02 15:26:13 UTC (rev 118195)
@@ -1,15 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor
-  update-mime-database usr/share/mime > /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor
-  update-mime-database usr/share/mime > /dev/null
-}

Copied: gluon/repos/community-i686/gluon.install (from rev 118194, gluon/trunk/gluon.install)
===================================================================
--- community-i686/gluon.install	                        (rev 0)
+++ community-i686/gluon.install	2014-09-02 15:26:13 UTC (rev 118195)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime > /dev/null
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-09-02 15:25:59 UTC (rev 118194)
+++ community-x86_64/PKGBUILD	2014-09-02 15:26:13 UTC (rev 118195)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail.com>
-
-pkgname=gluon
-pkgver=0.71.0
-_pkgver=0.71
-pkgrel=5
-pkgdesc="A free and open source platform for creating and distributing games"
-arch=('i686' 'x86_64')
-url="http://gluon.gamingfreedom.org/"
-license=('LGPL')
-depends=('kdelibs' 'libsndfile' 'alure')
-makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform')
-install=gluon.install
-source=("http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz"
-        'gcc47.patch')
-md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe'
-         '92adbf8b23f4af2a15a005b031c81c5f')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 -i "$srcdir"/gcc47.patch
-
-  cd "$srcdir"
-  mkdir build
-  cd build
-  cmake ../$pkgname-$pkgver \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_SKIP_RPATH=ON
-  make
-}
-
-package() {
-  cd "$srcdir"/build
-  make DESTDIR="$pkgdir" install
-
-  if [[ "$CARCH" == "x86_64" ]]; then
-    mv "${pkgdir}"/usr/lib64 "${pkgdir}"/usr/lib
-  fi
-}

Copied: gluon/repos/community-x86_64/PKGBUILD (from rev 118194, gluon/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-09-02 15:26:13 UTC (rev 118195)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail.com>
+
+pkgname=gluon
+pkgver=0.71.0
+_pkgver=0.71
+pkgrel=6
+pkgdesc="A free and open source platform for creating and distributing games"
+arch=('i686' 'x86_64')
+url="http://gluon.gamingfreedom.org/"
+license=('LGPL')
+depends=('kdelibs' 'libsndfile' 'alure')
+makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform')
+install=gluon.install
+source=("http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz"
+        'gcc47.patch')
+md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe'
+         '92adbf8b23f4af2a15a005b031c81c5f')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 -i "$srcdir"/gcc47.patch
+
+  cd "$srcdir"
+  mkdir build
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON
+  grep -rl "Qt4::moc"|xargs sed -i "s/Qt4::moc/moc-qt4/" # No idea what's up here but I can't be bothered to fix it properly
+  make
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+
+  if [[ "$CARCH" == "x86_64" ]]; then
+    mv "${pkgdir}"/usr/lib64 "${pkgdir}"/usr/lib
+  fi
+}

Deleted: community-x86_64/gcc47.patch
===================================================================
--- community-x86_64/gcc47.patch	2014-09-02 15:25:59 UTC (rev 118194)
+++ community-x86_64/gcc47.patch	2014-09-02 15:26:13 UTC (rev 118195)
@@ -1,31 +0,0 @@
-From: Christoph Feck <christoph at maxiom.de>
-Date: Fri, 23 Mar 2012 22:35:09 +0000
-Subject: Fix includes
-X-Git-Url: http://quickgit.kde.org/?p=gluon.git&a=commitdiff&h=bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
----
-Fix includes
----
-
-
---- a/input/linux/detectlinux.cpp
-+++ b/input/linux/detectlinux.cpp
-@@ -26,6 +26,7 @@
- 
- #include <QtCore/QDir>
- 
-+#include <unistd.h>
- // #include <libudev.h>
- 
- using namespace GluonInput;
-
---- a/input/linux/inputthread.cpp
-+++ b/input/linux/inputthread.cpp
-@@ -30,6 +30,7 @@
- // #include <QtCore/QStringList>
- 
- #include <fcntl.h>
-+#include <unistd.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <linux/input.h>
-

Copied: gluon/repos/community-x86_64/gcc47.patch (from rev 118194, gluon/trunk/gcc47.patch)
===================================================================
--- community-x86_64/gcc47.patch	                        (rev 0)
+++ community-x86_64/gcc47.patch	2014-09-02 15:26:13 UTC (rev 118195)
@@ -0,0 +1,31 @@
+From: Christoph Feck <christoph at maxiom.de>
+Date: Fri, 23 Mar 2012 22:35:09 +0000
+Subject: Fix includes
+X-Git-Url: http://quickgit.kde.org/?p=gluon.git&a=commitdiff&h=bccbda88a6bc53ac20091bb6aefd2f1b501ba31a
+---
+Fix includes
+---
+
+
+--- a/input/linux/detectlinux.cpp
++++ b/input/linux/detectlinux.cpp
+@@ -26,6 +26,7 @@
+ 
+ #include <QtCore/QDir>
+ 
++#include <unistd.h>
+ // #include <libudev.h>
+ 
+ using namespace GluonInput;
+
+--- a/input/linux/inputthread.cpp
++++ b/input/linux/inputthread.cpp
+@@ -30,6 +30,7 @@
+ // #include <QtCore/QStringList>
+ 
+ #include <fcntl.h>
++#include <unistd.h>
+ #include <sys/stat.h>
+ #include <sys/types.h>
+ #include <linux/input.h>
+

Deleted: community-x86_64/gluon.install
===================================================================
--- community-x86_64/gluon.install	2014-09-02 15:25:59 UTC (rev 118194)
+++ community-x86_64/gluon.install	2014-09-02 15:26:13 UTC (rev 118195)
@@ -1,15 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor
-  update-mime-database usr/share/mime > /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor
-  update-mime-database usr/share/mime > /dev/null
-}

Copied: gluon/repos/community-x86_64/gluon.install (from rev 118194, gluon/trunk/gluon.install)
===================================================================
--- community-x86_64/gluon.install	                        (rev 0)
+++ community-x86_64/gluon.install	2014-09-02 15:26:13 UTC (rev 118195)
@@ -0,0 +1,15 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor
+  update-mime-database usr/share/mime > /dev/null
+}




More information about the arch-commits mailing list