[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2020-09-21 Thread Antonio Rojas via arch-commits
Date: Monday, September 21, 2020 @ 16:12:43
  Author: arojas
Revision: 711233

Update to 2.11.2

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 15:43:11 UTC (rev 711232)
+++ PKGBUILD2020-09-21 16:12:43 UTC (rev 711233)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.11.1
-pkgrel=3
+pkgver=2.11.2
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;
@@ -15,21 +15,14 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
-
gammaray-qt5.15a.patch::"https://github.com/KDAB/GammaRay/commit/ec9fe408.patch;
-
gammaray-qt5.15b.patch::"https://github.com/KDAB/GammaRay/commit/7cd17bca.patch;)
-sha256sums=('87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0'
-'SKIP'
-'e98094b3ca0594e069fc08cdbfa520dd53208ccac454255da5e84d6bd39685f2'
-'4fa605325a0e98ff25fea4cd1b46796d1fd1d668a04dbfc28569140a2c8f104d')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('bba4f21a2bc81ec8ab50dce5218c7a375b92d64253c690490a6fcb384c2ff9f3'
+'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-
-  patch -d $pkgname-$pkgver -p1 -i ../gammaray-qt5.15a.patch
-  patch -d $pkgname-$pkgver -p1 -i ../gammaray-qt5.15b.patch # Fix build with 
Qt 5.15
 }
 
 build() {


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2020-05-26 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 26, 2020 @ 18:10:09
  Author: arojas
Revision: 635146

Qt 5.15 rebuild

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   24 +---
 1 file changed, 13 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-26 17:54:20 UTC (rev 635145)
+++ PKGBUILD2020-05-26 18:10:09 UTC (rev 635146)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.11.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;
@@ -15,30 +15,32 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
+
gammaray-qt5.15a.patch::"https://github.com/KDAB/GammaRay/commit/ec9fe408.patch;
+
gammaray-qt5.15b.patch::"https://github.com/KDAB/GammaRay/commit/7cd17bca.patch;)
 sha256sums=('87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0'
-'SKIP')
+'SKIP'
+'e98094b3ca0594e069fc08cdbfa520dd53208ccac454255da5e84d6bd39685f2'
+'4fa605325a0e98ff25fea4cd1b46796d1fd1d668a04dbfc28569140a2c8f104d')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
-  mkdir -p build
-
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
+
+  patch -d $pkgname-$pkgver -p1 -i ../gammaray-qt5.15a.patch
+  patch -d $pkgname-$pkgver -p1 -i ../gammaray-qt5.15b.patch # Fix build with 
Qt 5.15
 }
 
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
 -DGAMMARAY_INSTALL_QT_LAYOUT=ON \
 -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt/mkspecs/modules \
 -DPLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/gammaray
-  make
+  cmake --build build
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" cmake --install build
 }


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2020-04-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, April 22, 2020 @ 16:40:11
  Author: arojas
Revision: 617672

Rebuild with Qt 5.14.2

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-22 15:53:16 UTC (rev 617671)
+++ PKGBUILD2020-04-22 16:40:11 UTC (rev 617672)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.11.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 21:14:10
  Author: arojas
Revision: 591053

Update to 2.11.1

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 19:34:18 UTC (rev 591052)
+++ PKGBUILD2020-03-06 21:14:10 UTC (rev 591053)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.11.0
-pkgrel=5
+pkgver=2.11.1
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;
@@ -15,13 +15,9 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
-
gammaray-qt-5.14.patch::"https://github.com/KDAB/GammaRay/commit/3bde5464.patch;
-
gammaray-qt-5.14b.patch::"https://github.com/KDAB/GammaRay/commit/7cd6950e.patch;)
-sha256sums=('ab0488d2178c532816d491ab361ac3d362590f0e63912f7198f34c1b582209ca'
-'SKIP'
-'fcec0545414bc77dd3fc6a16be3e4a798d230a43a89fefeb138d32374600d2c2'
-'05c01038cfd6319b3b1b67a5189c0cd346255d5690d84dff18224ff544b1c7d8')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0'
+'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
@@ -29,9 +25,6 @@
 
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-
-  patch -p1 -d $pkgname-$pkgver -i ../gammaray-qt-5.14.patch # Fix build with 
Qt 5.14
-  patch -p1 -d $pkgname-$pkgver -i ../gammaray-qt-5.14b.patch
 }
 
 build() {


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2020-01-11 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, January 11, 2020 @ 15:58:22
  Author: svenstaro
Revision: 551921

upgpkg: gammaray 2.11.0-5: glslang-8.13.3559 rebuild

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-11 15:55:50 UTC (rev 551920)
+++ PKGBUILD2020-01-11 15:58:22 UTC (rev 551921)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.11.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2019-11-09 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, November 9, 2019 @ 13:16:43
  Author: svenstaro
Revision: 524822

upgpkg: gammaray 2.11.0-3

glslang 7.13 rebuild

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-09 12:57:51 UTC (rev 524821)
+++ PKGBUILD2019-11-09 13:16:43 UTC (rev 524822)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.11.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2019-09-11 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, September 11, 2019 @ 17:51:34
  Author: svenstaro
Revision: 509297

upgpkg: gammaray 2.11.0-2

glslang rebuild

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-11 17:50:38 UTC (rev 509296)
+++ PKGBUILD2019-09-11 17:51:34 UTC (rev 509297)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2019-07-05 Thread Antonio Rojas via arch-commits
Date: Friday, July 5, 2019 @ 17:37:08
  Author: arojas
Revision: 487483

Update to 2.11.0

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   20 ++--
 1 file changed, 6 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-05 17:24:41 UTC (rev 487482)
+++ PKGBUILD2019-07-05 17:37:08 UTC (rev 487483)
@@ -1,14 +1,14 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.10.0
-pkgrel=2
+pkgver=2.11.0
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;
 license=(GPL)
 depends=(syntax-highlighting qt5-tools qt5-svg qt5-3d)
-makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
+makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen glslang)
 optdepends=('qt5-wayland: Wayland compositor inspector plugin'
 'qt5-webengine: web inspector plugin'
 'qt5-scxml: state machine viewer plugin'
@@ -15,13 +15,9 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
-
gammaray-qt-5.13a.patch::"https://github.com/KDAB/GammaRay/commit/621dbd9.patch;
-
gammaray-qt-5.13b.patch::"https://github.com/KDAB/GammaRay/commit/3cb4f283.patch;)
-sha256sums=('0554e43067c2eba3517cf746a921385cf15675db79f879e1c3a7851c4951ffbe'
-'SKIP'
-'b2922a5207821402f013588dd89a17625704964518f4bdc6a3a622425aed50b2'
-'4be04460e980f1308d40d9621af3171e688d7420e69c9d59cc5743562d4188cd')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('ab0488d2178c532816d491ab361ac3d362590f0e63912f7198f34c1b582209ca'
+'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
@@ -29,10 +25,6 @@
 
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../gammaray-qt-5.13a.patch # Fix build with Qt 5.13
-  patch -p1 -i ../gammaray-qt-5.13b.patch
 }
 
 build() {


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2019-06-19 Thread Antonio Rojas via arch-commits
Date: Wednesday, June 19, 2019 @ 16:53:15
  Author: arojas
Revision: 482414

Qt 5.13 rebuild, fix mkspecs install dir

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 12 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-19 16:49:30 UTC (rev 482413)
+++ PKGBUILD2019-06-19 16:53:15 UTC (rev 482414)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/;
@@ -15,9 +15,13 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
+
gammaray-qt-5.13a.patch::"https://github.com/KDAB/GammaRay/commit/621dbd9.patch;
+
gammaray-qt-5.13b.patch::"https://github.com/KDAB/GammaRay/commit/3cb4f283.patch;)
 sha256sums=('0554e43067c2eba3517cf746a921385cf15675db79f879e1c3a7851c4951ffbe'
-'SKIP')
+'SKIP'
+'b2922a5207821402f013588dd89a17625704964518f4bdc6a3a622425aed50b2'
+'4be04460e980f1308d40d9621af3171e688d7420e69c9d59cc5743562d4188cd')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
@@ -25,6 +29,10 @@
 
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../gammaray-qt-5.13a.patch # Fix build with Qt 5.13
+  patch -p1 -i ../gammaray-qt-5.13b.patch
 }
 
 build() {
@@ -33,6 +41,7 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DGAMMARAY_INSTALL_QT_LAYOUT=ON \
+-DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt/mkspecs/modules \
 -DPLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/gammaray
   make
 }


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2018-12-16 Thread Antonio Rojas via arch-commits
Date: Sunday, December 16, 2018 @ 23:36:12
  Author: arojas
Revision: 416473

Update to 2.10.0

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-16 23:06:56 UTC (rev 416472)
+++ PKGBUILD2018-12-16 23:36:12 UTC (rev 416473)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.9.1
-pkgrel=2
+pkgver=2.10.0
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="http://www.kdab.com/gammaray/;
@@ -15,13 +15,9 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
-
gammaray-qt5.12a.patch::"https://github.com/KDAB/GammaRay/commit/2cd4585e.patch;
-
gammaray-qt5.12b.patch::"https://github.com/KDAB/GammaRay/commit/d0c9f9c8.patch;)
-sha256sums=('ba1f6f2b777c550511a17f704b9c340df139de8ba8fa0d72782ea51d0086fa47'
-'SKIP'
-'7cfc822fd18595b9d274a030fd833d39251ea2c271653f79b1f246eb960d38e3'
-'629e169addfc68cab7e4eb4893e4631dbd96b2838af717fa8bb5b0bb5b3cb9d7')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('0554e43067c2eba3517cf746a921385cf15675db79f879e1c3a7851c4951ffbe'
+'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
@@ -29,10 +25,6 @@
 
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-# Fix build with Qt 5.12
-  cd $pkgname-$pkgver
-  patch -p1 -i ../gammaray-qt5.12a.patch
-  patch -p1 -i ../gammaray-qt5.12b.patch
 }
 
 build() {


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2018-12-05 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 5, 2018 @ 17:05:43
  Author: arojas
Revision: 411564

Qt 5.12 rebuild

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 11 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-05 16:56:45 UTC (rev 411563)
+++ PKGBUILD2018-12-05 17:05:43 UTC (rev 411564)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="http://www.kdab.com/gammaray/;
@@ -15,9 +15,13 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
+
gammaray-qt5.12a.patch::"https://github.com/KDAB/GammaRay/commit/2cd4585e.patch;
+
gammaray-qt5.12b.patch::"https://github.com/KDAB/GammaRay/commit/d0c9f9c8.patch;)
 sha256sums=('ba1f6f2b777c550511a17f704b9c340df139de8ba8fa0d72782ea51d0086fa47'
-'SKIP')
+'SKIP'
+'7cfc822fd18595b9d274a030fd833d39251ea2c271653f79b1f246eb960d38e3'
+'629e169addfc68cab7e4eb4893e4631dbd96b2838af717fa8bb5b0bb5b3cb9d7')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
@@ -25,6 +29,10 @@
 
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
+# Fix build with Qt 5.12
+  cd $pkgname-$pkgver
+  patch -p1 -i ../gammaray-qt5.12a.patch
+  patch -p1 -i ../gammaray-qt5.12b.patch
 }
 
 build() {


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 07:59:10
  Author: arojas
Revision: 372244

Update to 2.9.1

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:58:59 UTC (rev 372243)
+++ PKGBUILD2018-08-17 07:59:10 UTC (rev 372244)
@@ -1,21 +1,22 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.9.0
-pkgrel=3
+pkgver=2.9.1
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="http://www.kdab.com/gammaray/;
 license=(GPL)
-depends=(syntax-highlighting qt5-script qt5-tools qt5-svg qt5-3d)
-makedepends=(cmake kcoreaddons qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
+depends=(syntax-highlighting qt5-tools qt5-svg qt5-3d)
+makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
 optdepends=('qt5-wayland: Wayland compositor inspector plugin'
 'qt5-webengine: web inspector plugin'
 'qt5-scxml: state machine viewer plugin'
 'qt5-connectivity: bluetooth plugin'
+'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
 
source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
-sha256sums=('5ab3fb4ac3d7e82f37ed7c62e063505d52334338460cf31d91c99d485d1d7bc2'
+sha256sums=('ba1f6f2b777c550511a17f704b9c340df139de8ba8fa0d72782ea51d0086fa47'
 'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 


[arch-commits] Commit in gammaray/trunk (PKGBUILD)

2018-05-27 Thread Antonio Rojas via arch-commits
Date: Sunday, May 27, 2018 @ 08:37:02
  Author: arojas
Revision: 331459

Qt 5.11 rebuild

Modified:
  gammaray/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-27 08:36:59 UTC (rev 331458)
+++ PKGBUILD2018-05-27 08:37:02 UTC (rev 331459)
@@ -2,7 +2,7 @@
 
 pkgname=gammaray
 pkgver=2.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="http://www.kdab.com/gammaray/;