From c23787e40ad50bfe42d1bbb6a07b49117419e276 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Thu, 9 Aug 2018 00:10:05 +0100 Subject: [PATCH 01/18] Initial commit. --- .SRCINFO | 16 ++++++++++++++++ .gitignore | 4 ++++ PKGBUILD | 29 +++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..c6bba70 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = moonlight-qt + pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) + pkgver = 0.1.0 + pkgrel = 1 + url = https://moonlight-stream.com + arch = x86_64 + license = GPL + depends = qt5-base + depends = qt5-quickcontrols + depends = qt5-quickcontrols2 + optdepends = libva-intel-driver: hardware acceleration for Intel GPUs + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.1.0 + md5sums = SKIP + +pkgname = moonlight-qt + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f71c635 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!PKGBUILD +!.SRCINFO diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..faa4f37 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> + +pkgname=moonlight-qt +pkgver=0.1.0 +pkgrel=1 +pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' +arch=('x86_64') +license=('GPL') +url='https://moonlight-stream.com' +depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2') +optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') +source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") +md5sums=('SKIP') + +prepare() { + cd "$pkgname" + git submodule update --init --recursive +} + +build() { + cd "$pkgname" + qmake PREFIX="$pkgdir/usr" + make +} + +package() { + cd "$pkgname" + make install +} From 4a64b91bbfeb14bac5ef69c2beac56b82832d32a Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Sat, 1 Sep 2018 11:30:36 +0100 Subject: [PATCH 02/18] Updated to 0.3.0 and added auto-bump to most recent tag. --- .SRCINFO | 4 ++-- PKGBUILD | 12 ++++++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c6bba70..c67e4ee 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.1.0 + pkgver = 0.3.0 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = moonlight-qt depends = qt5-quickcontrols depends = qt5-quickcontrols2 optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.1.0 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index faa4f37..febb536 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.1.0 +pkgver=0.3.0 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') @@ -9,16 +9,20 @@ license=('GPL') url='https://moonlight-stream.com' depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2') optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') -source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") +source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git") md5sums=('SKIP') -prepare() { +pkgver() { cd "$pkgname" - git submodule update --init --recursive + git describe --long --tags | sed 's/^v//;s/-.*//' } build() { cd "$pkgname" + + git checkout v${pkgver} + git submodule update --init --recursive + qmake PREFIX="$pkgdir/usr" make } From 22df831433a69aad2703acc694092491a38520a3 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Tue, 11 Sep 2018 13:12:32 +0100 Subject: [PATCH 03/18] Removed auto-tag-tracking, added git to makedepends, and updated to v0.4.0. --- .SRCINFO | 7 +++++-- PKGBUILD | 17 +++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c67e4ee..5257334 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,18 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.3.0 + pkgver = 0.4.0 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 license = GPL + makedepends = git depends = qt5-base depends = qt5-quickcontrols depends = qt5-quickcontrols2 + depends = qt5-svg + depends = ffmpeg optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.4.0 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index febb536..b030189 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,29 +1,26 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.3.0 +pkgver=0.4.0 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') license=('GPL') url='https://moonlight-stream.com' -depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2') +depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg') +makedepends=('git') optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') -source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git") +source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") md5sums=('SKIP') -pkgver() { +prepare() { cd "$pkgname" - git describe --long --tags | sed 's/^v//;s/-.*//' + git submodule update --init --recursive + qmake PREFIX="$pkgdir/usr" } build() { cd "$pkgname" - - git checkout v${pkgver} - git submodule update --init --recursive - - qmake PREFIX="$pkgdir/usr" make } From 5bb461527688b878e5a10202e99b53d695b8a909 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Wed, 19 Sep 2018 11:05:39 +0100 Subject: [PATCH 04/18] Update to 0.5.0. --- .SRCINFO | 5 +++-- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5257334..76d8f89 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.4.0 + pkgver = 0.5.0 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -11,8 +11,9 @@ pkgbase = moonlight-qt depends = qt5-quickcontrols2 depends = qt5-svg depends = ffmpeg + depends = qt5-multimedia optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.4.0 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.5.0 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index b030189..c3990a7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,13 +1,13 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.4.0 +pkgver=0.5.0 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') license=('GPL') url='https://moonlight-stream.com' -depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg') +depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia') makedepends=('git') optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") From 141ebd9f631415545c87d2a8d5d439a200f2dd4d Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Mon, 15 Oct 2018 11:18:18 +0200 Subject: [PATCH 05/18] Updated to version 0.6.1. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 76d8f89..abb680b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.5.0 + pkgver = 0.6.1 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -13,7 +13,7 @@ pkgbase = moonlight-qt depends = ffmpeg depends = qt5-multimedia optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.5.0 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.6.1 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index c3990a7..333edb3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.5.0 +pkgver=0.6.1 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From ce40867c88e963808f1161bf3a8c0d6f43e88f10 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Tue, 30 Oct 2018 16:58:24 +0000 Subject: [PATCH 06/18] Updated to version 0.6.2. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index abb680b..a928e45 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.6.1 + pkgver = 0.6.2 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -13,7 +13,7 @@ pkgbase = moonlight-qt depends = ffmpeg depends = qt5-multimedia optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.6.1 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.6.2 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 333edb3..e96b72a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.6.1 +pkgver=0.6.2 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From 87872d3d4208a2135daf2821b12886fb153ebaac Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Mon, 19 Nov 2018 11:23:34 +0000 Subject: [PATCH 07/18] Updated to version 0.6.3. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a928e45..0b869bd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.6.2 + pkgver = 0.6.3 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -13,7 +13,7 @@ pkgbase = moonlight-qt depends = ffmpeg depends = qt5-multimedia optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.6.2 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.6.3 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index e96b72a..27bc7a1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.6.2 +pkgver=0.6.3 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From 248f858f31cf6f0adb31d4c77fb276db21feda15 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Fri, 14 Dec 2018 18:36:15 +0000 Subject: [PATCH 08/18] Updated to version 0.7.0. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0b869bd..42fd5aa 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.6.3 + pkgver = 0.7.0 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -13,7 +13,7 @@ pkgbase = moonlight-qt depends = ffmpeg depends = qt5-multimedia optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.6.3 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.7.0 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 27bc7a1..31d1d88 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.6.3 +pkgver=0.7.0 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From f237d9251a1c19c16b9c63ed1b4e1c88f1a8a41c Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Fri, 11 Jan 2019 10:44:25 +0000 Subject: [PATCH 09/18] Updated to version 0.8.1. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 42fd5aa..d33d52a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.7.0 + pkgver = 0.8.1 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -13,7 +13,7 @@ pkgbase = moonlight-qt depends = ffmpeg depends = qt5-multimedia optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.7.0 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.8.1 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 31d1d88..666d20a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.7.0 +pkgver=0.8.1 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From 7d619903509b52387f7ab00eb37285d34c348fdd Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Mon, 18 Feb 2019 13:15:33 +0000 Subject: [PATCH 10/18] Updated to 0.9.1. --- .SRCINFO | 5 +++-- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d33d52a..97e261b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.8.1 + pkgver = 0.9.1 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -12,8 +12,9 @@ pkgbase = moonlight-qt depends = qt5-svg depends = ffmpeg depends = qt5-multimedia + depends = sdl2_ttf optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.8.1 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.9.1 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 666d20a..45dd3dc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,13 +1,13 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.8.1 +pkgver=0.9.1 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') license=('GPL') url='https://moonlight-stream.com' -depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia') +depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia' 'sdl2_ttf') makedepends=('git') optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") From 8d8648d00bbf5a684b0b998a34a9f0f82634e370 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Wed, 10 Apr 2019 14:33:33 +0100 Subject: [PATCH 11/18] Updated to 0.10.0. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 97e261b..bf7f811 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.9.1 + pkgver = 0.10.0 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = moonlight-qt depends = qt5-multimedia depends = sdl2_ttf optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.9.1 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.10.0 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 45dd3dc..6978bee 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.9.1 +pkgver=0.10.0 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From 8aa5fb7de752a5008ef5f25d02b2ff2607457840 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Mon, 29 Apr 2019 09:56:01 +0100 Subject: [PATCH 12/18] Updated to 0.10.1. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bf7f811..e1ec71f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.10.0 + pkgver = 0.10.1 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = moonlight-qt depends = qt5-multimedia depends = sdl2_ttf optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.10.0 + source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.10.1 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 6978bee..6a82fc7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From 7c9019981997a2a0c8858c16ee02e49497731ebc Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Mon, 27 May 2019 23:02:16 +0100 Subject: [PATCH 13/18] Updated to 1.0.1. --- .SRCINFO | 4 ++-- PKGBUILD | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e1ec71f..7dc96f8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 0.10.1 + pkgver = 1.0.1 pkgrel = 1 url = https://moonlight-stream.com arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = moonlight-qt depends = qt5-multimedia depends = sdl2_ttf optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = moonlight-qt::git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v0.10.1 + source = git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v1.0.1 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 6a82fc7..e2221f1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=0.10.1 +pkgver=1.0.1 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') @@ -10,18 +10,18 @@ url='https://moonlight-stream.com' depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia' 'sdl2_ttf') makedepends=('git') optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') -source=($pkgname::"git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") +source=("git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") md5sums=('SKIP') prepare() { cd "$pkgname" git submodule update --init --recursive - qmake PREFIX="$pkgdir/usr" + qmake PREFIX="$pkgdir/usr" moonlight-qt.pro } build() { cd "$pkgname" - make + make release } package() { From 7415a1084547bf92c5fd71236e089a92450dfc25 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Sun, 23 Jun 2019 12:38:36 +0100 Subject: [PATCH 14/18] Removed unnecessary dependencies. --- .SRCINFO | 6 ++---- PKGBUILD | 6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7dc96f8..31e8942 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,17 +1,15 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) pkgver = 1.0.1 - pkgrel = 1 - url = https://moonlight-stream.com + pkgrel = 2 + url = https://moonlight-stream.org arch = x86_64 license = GPL makedepends = git depends = qt5-base - depends = qt5-quickcontrols depends = qt5-quickcontrols2 depends = qt5-svg depends = ffmpeg - depends = qt5-multimedia depends = sdl2_ttf optdepends = libva-intel-driver: hardware acceleration for Intel GPUs source = git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v1.0.1 diff --git a/PKGBUILD b/PKGBUILD index e2221f1..082f728 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,12 +2,12 @@ pkgname=moonlight-qt pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') license=('GPL') -url='https://moonlight-stream.com' -depends=('qt5-base' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'qt5-multimedia' 'sdl2_ttf') +url='https://moonlight-stream.org' +depends=('qt5-base' 'qt5-quickcontrols2' 'qt5-svg' 'ffmpeg' 'sdl2_ttf') makedepends=('git') optdepends=('libva-intel-driver: hardware acceleration for Intel GPUs') source=("git+https://github.com/moonlight-stream/${pkgname}.git#tag=v${pkgver}") From f6feabef4dea92cd1ad3667a5f6dcaab35662de2 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Mon, 19 Aug 2019 12:35:28 +0100 Subject: [PATCH 15/18] Updated to v1.1.0. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 31e8942..28874c5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 1.0.1 + pkgver = 1.1.0 pkgrel = 2 url = https://moonlight-stream.org arch = x86_64 @@ -12,7 +12,7 @@ pkgbase = moonlight-qt depends = ffmpeg depends = sdl2_ttf optdepends = libva-intel-driver: hardware acceleration for Intel GPUs - source = git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v1.0.1 + source = git+https://github.com/moonlight-stream/moonlight-qt.git#tag=v1.1.0 md5sums = SKIP pkgname = moonlight-qt diff --git a/PKGBUILD b/PKGBUILD index 082f728..c2edec8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=1.0.1 +pkgver=1.1.0 pkgrel=2 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From 10ce129c5f81067d3ad22d8a50e5ee1c1018c0c7 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Sun, 6 Oct 2019 21:56:11 +0100 Subject: [PATCH 16/18] Updated to 1.1.1. --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 28874c5..01fa186 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 1.1.0 - pkgrel = 2 + pkgver = 1.1.1 + pkgrel = 1 url = https://moonlight-stream.org arch = x86_64 license = GPL diff --git a/PKGBUILD b/PKGBUILD index c2edec8..38111d4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=1.1.0 -pkgrel=2 +pkgver=1.1.1 +pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') license=('GPL') From df9ade18e6cf55a13b78adc2e383f2c562c7fa44 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Sun, 29 Dec 2019 15:14:48 +0000 Subject: [PATCH 17/18] Updated to 1.2.1. --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 01fa186..2f74d80 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 1.1.1 + pkgver = 1.2.1 pkgrel = 1 url = https://moonlight-stream.org arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 38111d4..16c12c4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=1.1.1 +pkgver=1.2.1 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64') From f305b296528f6abdeb60c73061b7b376192fc792 Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Wed, 3 Jun 2020 16:20:42 +0100 Subject: [PATCH 18/18] Version 2.1.0. --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2f74d80..2c8a339 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = moonlight-qt pkgdesc = GameStream client for PCs (Windows, Mac, and Linux) - pkgver = 1.2.1 + pkgver = 2.1.0 pkgrel = 1 url = https://moonlight-stream.org arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 16c12c4..b013fde 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Herzberg <{firstname}@{firstinitial}{lastname}.de> pkgname=moonlight-qt -pkgver=1.2.1 +pkgver=2.1.0 pkgrel=1 pkgdesc='GameStream client for PCs (Windows, Mac, and Linux)' arch=('x86_64')