[arch-commits] Commit in pokerth/repos (6 files)

Evangelos Foutras foutrelis at archlinux.org
Thu Oct 15 17:05:52 UTC 2015


    Date: Thursday, October 15, 2015 @ 19:05:52
  Author: foutrelis
Revision: 144185

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

Added:
  pokerth/repos/community-staging-i686/
  pokerth/repos/community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
    (from rev 144184, pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
  pokerth/repos/community-staging-i686/PKGBUILD
    (from rev 144184, pokerth/trunk/PKGBUILD)
  pokerth/repos/community-staging-x86_64/
  pokerth/repos/community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
    (from rev 144184, pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
  pokerth/repos/community-staging-x86_64/PKGBUILD
    (from rev 144184, pokerth/trunk/PKGBUILD)

----------------------------------------------------------------------------+
 community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch   |   24 +++++
 community-staging-i686/PKGBUILD                                            |   45 ++++++++++
 community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch |   24 +++++
 community-staging-x86_64/PKGBUILD                                          |   45 ++++++++++
 4 files changed, 138 insertions(+)

Copied: pokerth/repos/community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch (from rev 144184, pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
===================================================================
--- community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch	                        (rev 0)
+++ community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch	2015-10-15 17:05:52 UTC (rev 144185)
@@ -0,0 +1,24 @@
+From 731f5f05f54065a67fa7c9f9bc8fe992390cb979 Mon Sep 17 00:00:00 2001
+From: Felix Hammer <f.hammer at web.de>
+Date: Fri, 7 Aug 2015 00:57:51 +0200
+Subject: [PATCH] Qt 5.5.0 patch for qtsingleapplication
+
+---
+ src/third_party/qtsingleapplication/qtlocalpeer.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/third_party/qtsingleapplication/qtlocalpeer.cpp b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+index 43e6bf4..e0ddc07 100644
+--- a/src/third_party/qtsingleapplication/qtlocalpeer.cpp
++++ b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+@@ -31,6 +31,7 @@
+ 
+ #include <QCoreApplication>
+ #include <QTime>
++#include <QDataStream>
+ 
+ #if defined(Q_OS_WIN)
+ #include <QLibrary>
+-- 
+2.5.3
+

Copied: pokerth/repos/community-staging-i686/PKGBUILD (from rev 144184, pokerth/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-10-15 17:05:52 UTC (rev 144185)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Mateusz Herych <heniekk at gmail.com>
+# Contributor: Bartłomiej Piotrowski <barthalion at gmail.com>
+# Contributor: Vasco Costa <vasco.costa at meiodigital.com>
+# Contributor: Federico Cinelli <cinelli at aur.archlinux.org>
+
+pkgname=pokerth
+_realname=PokerTH
+pkgver=1.1.1
+pkgrel=7
+pkgdesc="Open source Texas Hold'em Poker simulator"
+arch=('i686' 'x86_64')
+url="http://www.pokerth.net/"
+license=('GPL' 'custom')
+depends=('curl' 'boost-libs' 'gsasl' 'gnutls' 'protobuf' 'libxkbcommon-x11'
+         'qt5-base' 'sdl_mixer' 'libircclient' 'tinyxml')
+makedepends=('boost')
+source=("http://downloads.sourceforge.net/sourceforge/pokerth/$_realname-$pkgver-src.tar.bz2"
+        '0001-Qt-5.5.0-patch-for-qtsingleapplication.patch')
+md5sums=('a7f76f95782099f966e5f2b6809f502a'
+         'f4ecab0a6435f1b3b0654145b75d6e7c')
+
+prepare() {
+  cd "$srcdir/$_realname-$pkgver-src"
+
+  # https://github.com/pokerth/pokerth/commit/731f5f05f540
+  patch -Np1 -i ../0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
+}
+
+build() {
+  cd "$srcdir/$_realname-$pkgver-src"
+
+  qmake-qt5 "$pkgname.pro"
+  make
+}
+
+package() {
+  cd "$srcdir/$_realname-$pkgver-src"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -Dm644 "docs/pokerth.1" "$pkgdir/usr/share/man/man1/pokerth.1"
+  install -Dm644 "data/data-copyright.txt" "$pkgdir/usr/share/licenses/pokerth/data-copyright.txt"
+}

Copied: pokerth/repos/community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch (from rev 144184, pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
===================================================================
--- community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch	                        (rev 0)
+++ community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch	2015-10-15 17:05:52 UTC (rev 144185)
@@ -0,0 +1,24 @@
+From 731f5f05f54065a67fa7c9f9bc8fe992390cb979 Mon Sep 17 00:00:00 2001
+From: Felix Hammer <f.hammer at web.de>
+Date: Fri, 7 Aug 2015 00:57:51 +0200
+Subject: [PATCH] Qt 5.5.0 patch for qtsingleapplication
+
+---
+ src/third_party/qtsingleapplication/qtlocalpeer.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/third_party/qtsingleapplication/qtlocalpeer.cpp b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+index 43e6bf4..e0ddc07 100644
+--- a/src/third_party/qtsingleapplication/qtlocalpeer.cpp
++++ b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+@@ -31,6 +31,7 @@
+ 
+ #include <QCoreApplication>
+ #include <QTime>
++#include <QDataStream>
+ 
+ #if defined(Q_OS_WIN)
+ #include <QLibrary>
+-- 
+2.5.3
+

Copied: pokerth/repos/community-staging-x86_64/PKGBUILD (from rev 144184, pokerth/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-10-15 17:05:52 UTC (rev 144185)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Mateusz Herych <heniekk at gmail.com>
+# Contributor: Bartłomiej Piotrowski <barthalion at gmail.com>
+# Contributor: Vasco Costa <vasco.costa at meiodigital.com>
+# Contributor: Federico Cinelli <cinelli at aur.archlinux.org>
+
+pkgname=pokerth
+_realname=PokerTH
+pkgver=1.1.1
+pkgrel=7
+pkgdesc="Open source Texas Hold'em Poker simulator"
+arch=('i686' 'x86_64')
+url="http://www.pokerth.net/"
+license=('GPL' 'custom')
+depends=('curl' 'boost-libs' 'gsasl' 'gnutls' 'protobuf' 'libxkbcommon-x11'
+         'qt5-base' 'sdl_mixer' 'libircclient' 'tinyxml')
+makedepends=('boost')
+source=("http://downloads.sourceforge.net/sourceforge/pokerth/$_realname-$pkgver-src.tar.bz2"
+        '0001-Qt-5.5.0-patch-for-qtsingleapplication.patch')
+md5sums=('a7f76f95782099f966e5f2b6809f502a'
+         'f4ecab0a6435f1b3b0654145b75d6e7c')
+
+prepare() {
+  cd "$srcdir/$_realname-$pkgver-src"
+
+  # https://github.com/pokerth/pokerth/commit/731f5f05f540
+  patch -Np1 -i ../0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
+}
+
+build() {
+  cd "$srcdir/$_realname-$pkgver-src"
+
+  qmake-qt5 "$pkgname.pro"
+  make
+}
+
+package() {
+  cd "$srcdir/$_realname-$pkgver-src"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -Dm644 "docs/pokerth.1" "$pkgdir/usr/share/man/man1/pokerth.1"
+  install -Dm644 "data/data-copyright.txt" "$pkgdir/usr/share/licenses/pokerth/data-copyright.txt"
+}



More information about the arch-commits mailing list