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

2020-07-20 Thread Antonio Rojas via arch-commits
Date: Monday, July 20, 2020 @ 17:31:14
  Author: arojas
Revision: 664639

Update to 1.1

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-20 16:30:39 UTC (rev 664638)
+++ PKGBUILD2020-07-20 17:31:14 UTC (rev 664639)
@@ -3,7 +3,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=1.0
+pkgver=1.1
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('a92c7bbdaf8182ce38c1a49e34d30f5b79ec75bd70a4bfabeb9b7cb0e0971a85')
+sha256sums=('af77c4dbf7f9ba97fe0218648167395bca7bcb2b9c1886a9c98b1e343127ddd2')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5.15-palette.patch)

2020-06-10 Thread Antonio Rojas via arch-commits
Date: Wednesday, June 10, 2020 @ 17:45:36
  Author: arojas
Revision: 641834

Update to 1.0

Modified:
  qt5ct/trunk/PKGBUILD
Deleted:
  qt5ct/trunk/qt5.15-palette.patch

--+
 PKGBUILD |   15 +-
 qt5.15-palette.patch |  108 -
 2 files changed, 4 insertions(+), 119 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-10 17:39:01 UTC (rev 641833)
+++ PKGBUILD2020-06-10 17:45:36 UTC (rev 641834)
@@ -3,8 +3,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.41
-pkgrel=5
+pkgver=1.0
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.io/;
@@ -11,16 +11,9 @@
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
- qt5.15-palette.patch)
-sha256sums=('f24030e90d8b923b60c320b2db5b4c0fcc47f9f35ac4c52060ab3c6e423057dc'
-'98e87d63bd3873decf7364fe1ba70c075eee94f561a0aad06e78bd66b61149e1')
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('a92c7bbdaf8182ce38c1a49e34d30f5b79ec75bd70a4bfabeb9b7cb0e0971a85')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p3 -i ../qt5.15-palette.patch # Fix QPalette use with Qt 5.15
-}
-
 build() {
   cd $pkgname-$pkgver
   qmake-qt5 $pkgname.pro 

Deleted: qt5.15-palette.patch
===
--- qt5.15-palette.patch2020-06-10 17:39:01 UTC (rev 641833)
+++ qt5.15-palette.patch2020-06-10 17:45:36 UTC (rev 641834)
@@ -1,108 +0,0 @@
 a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-+++ b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-@@ -84,8 +84,8 @@
- 
- Qt5CTPlatformTheme::~Qt5CTPlatformTheme()
- {
--if(m_customPalette)
--delete m_customPalette;
-+if(m_palette)
-+delete m_palette;
- 
- }
- 
-@@ -134,7 +134,7 @@
- const QPalette *Qt5CTPlatformTheme::palette(QPlatformTheme::Palette type) 
const
- {
- Q_UNUSED(type);
--return (m_usePalette ? m_customPalette : nullptr);
-+return (m_usePalette ? m_palette : nullptr);
- }
- 
- const QFont *Qt5CTPlatformTheme::font(QPlatformTheme::Font type) const
-@@ -226,13 +226,12 @@
- if(m_update && qApp->style()->objectName() == "qt5ct-style") //ignore 
application style
- qApp->setStyle("qt5ct-style"); //recreate style object
- 
-+if(!m_palette)
-+m_palette = new QPalette(qApp->style()->standardPalette());
-+
- if(m_update && m_usePalette)
--{
--if(m_customPalette)
--qApp->setPalette(*m_customPalette);
--else
--qApp->setPalette(qApp->style()->standardPalette());
--}
-+qApp->setPalette(*m_palette);
-+
- 
- //do not override application style
- if(m_prevStyleSheet == qApp->styleSheet())
-@@ -244,12 +243,12 @@
- #endif
- QGuiApplication::setFont(m_generalFont); //apply font
- QIcon::setThemeName(m_iconTheme); //apply icons
--if(m_customPalette && m_usePalette)
--QGuiApplication::setPalette(*m_customPalette); //apply palette
--
--#ifdef QT_WIDGETS_LIB
--if(m_customPalette && m_usePalette && !m_update)
--qApp->setPalette(*m_customPalette);
-+if(m_palette && m_usePalette)
-+QGuiApplication::setPalette(*m_palette); //apply palette
-+
-+#ifdef QT_WIDGETS_LIB
-+if(m_palette && m_usePalette && !m_update)
-+qApp->setPalette(*m_palette);
- 
- if(hasWidgets())
- {
-@@ -288,10 +287,10 @@
- 
- void Qt5CTPlatformTheme::readSettings()
- {
--if(m_customPalette)
--{
--delete m_customPalette;
--m_customPalette = nullptr;
-+if(m_palette)
-+{
-+delete m_palette;
-+m_palette = nullptr;
- }
- 
- QSettings settings(Qt5CT::configFile(), QSettings::IniFormat);
-@@ -302,7 +301,7 @@
- if(!schemePath.isEmpty() && settings.value("custom_palette", 
false).toBool())
- {
- schemePath = Qt5CT::resolvePath(schemePath); //replace environment 
variables
--m_customPalette = new QPalette(loadColorScheme(schemePath));
-+m_palette = new QPalette(loadColorScheme(schemePath));
- }
- m_iconTheme = settings.value("icon_theme").toString();
- //load dialogs
 a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.h
-+++ b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.h
-@@ -110,7 +110,7 @@
- QString loadStyleSheets(const QStringList );
- QPalette loadColorScheme(const QString );
- QString m_style, m_iconTheme, m_userStyleSheet, m_prevStyleSheet;
--QPalette *m_customPalette = nullptr;
-+QPalette *m_palette = nullptr;
- QFont m_generalFont, m_fixedFont;
- int m_doubleClickInterval;
- int m_cursorFlashTime;
 a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-+++ 

[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5.15-palette.patch)

2020-06-04 Thread Antonio Rojas via arch-commits
Date: Thursday, June 4, 2020 @ 20:48:10
  Author: arojas
Revision: 639043

Fix crashes in multiple applications (FS#66883)

Modified:
  qt5ct/trunk/PKGBUILD
  qt5ct/trunk/qt5.15-palette.patch

--+
 PKGBUILD |4 ++--
 qt5.15-palette.patch |   13 +
 2 files changed, 15 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-04 20:03:05 UTC (rev 639042)
+++ PKGBUILD2020-06-04 20:48:10 UTC (rev 639043)
@@ -4,7 +4,7 @@
 
 pkgname=qt5ct
 pkgver=0.41
-pkgrel=4
+pkgrel=5
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.io/;
@@ -14,7 +14,7 @@
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
  qt5.15-palette.patch)
 sha256sums=('f24030e90d8b923b60c320b2db5b4c0fcc47f9f35ac4c52060ab3c6e423057dc'
-'62c52be677fa133b46134d5f7713f46b4db382721e66480c5810706cafb31c44')
+'98e87d63bd3873decf7364fe1ba70c075eee94f561a0aad06e78bd66b61149e1')
 
 prepare() {
   cd $pkgname-$pkgver

Modified: qt5.15-palette.patch
===
--- qt5.15-palette.patch2020-06-04 20:03:05 UTC (rev 639042)
+++ qt5.15-palette.patch2020-06-04 20:48:10 UTC (rev 639043)
@@ -93,3 +93,16 @@
  QFont m_generalFont, m_fixedFont;
  int m_doubleClickInterval;
  int m_cursorFlashTime;
+--- a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
 b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
+@@ -133,8 +133,7 @@
+ 
+ const QPalette *Qt5CTPlatformTheme::palette(QPlatformTheme::Palette type) 
const
+ {
+-Q_UNUSED(type);
+-return (m_usePalette ? m_palette : nullptr);
++return (m_usePalette && m_palette) ? m_palette : 
QPlatformTheme::palette(type);
+ }
+ 
+ const QFont *Qt5CTPlatformTheme::font(QPlatformTheme::Font type) const
+


[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5.15-palette.patch)

2020-06-01 Thread Antonio Rojas via arch-commits
Date: Monday, June 1, 2020 @ 12:57:50
  Author: arojas
Revision: 637817

Add upstream QPalette fixes for Qt 5.15

Added:
  qt5ct/trunk/qt5.15-palette.patch
Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |   13 +-
 qt5.15-palette.patch |   95 +
 2 files changed, 105 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-01 12:55:10 UTC (rev 637816)
+++ PKGBUILD2020-06-01 12:57:50 UTC (rev 637817)
@@ -4,7 +4,7 @@
 
 pkgname=qt5ct
 pkgver=0.41
-pkgrel=3
+pkgrel=4
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.io/;
@@ -11,9 +11,16 @@
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('f24030e90d8b923b60c320b2db5b4c0fcc47f9f35ac4c52060ab3c6e423057dc')
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
+ qt5.15-palette.patch)
+sha256sums=('f24030e90d8b923b60c320b2db5b4c0fcc47f9f35ac4c52060ab3c6e423057dc'
+'62c52be677fa133b46134d5f7713f46b4db382721e66480c5810706cafb31c44')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p3 -i ../qt5.15-palette.patch # Fix QPalette use with Qt 5.15
+}
+
 build() {
   cd $pkgname-$pkgver
   qmake-qt5 $pkgname.pro 

Added: qt5.15-palette.patch
===
--- qt5.15-palette.patch(rev 0)
+++ qt5.15-palette.patch2020-06-01 12:57:50 UTC (rev 637817)
@@ -0,0 +1,95 @@
+--- a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
 b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
+@@ -84,8 +84,8 @@
+ 
+ Qt5CTPlatformTheme::~Qt5CTPlatformTheme()
+ {
+-if(m_customPalette)
+-delete m_customPalette;
++if(m_palette)
++delete m_palette;
+ 
+ }
+ 
+@@ -134,7 +134,7 @@
+ const QPalette *Qt5CTPlatformTheme::palette(QPlatformTheme::Palette type) 
const
+ {
+ Q_UNUSED(type);
+-return (m_usePalette ? m_customPalette : nullptr);
++return (m_usePalette ? m_palette : nullptr);
+ }
+ 
+ const QFont *Qt5CTPlatformTheme::font(QPlatformTheme::Font type) const
+@@ -226,13 +226,12 @@
+ if(m_update && qApp->style()->objectName() == "qt5ct-style") //ignore 
application style
+ qApp->setStyle("qt5ct-style"); //recreate style object
+ 
++if(!m_palette)
++m_palette = new QPalette(qApp->style()->standardPalette());
++
+ if(m_update && m_usePalette)
+-{
+-if(m_customPalette)
+-qApp->setPalette(*m_customPalette);
+-else
+-qApp->setPalette(qApp->style()->standardPalette());
+-}
++qApp->setPalette(*m_palette);
++
+ 
+ //do not override application style
+ if(m_prevStyleSheet == qApp->styleSheet())
+@@ -244,12 +243,12 @@
+ #endif
+ QGuiApplication::setFont(m_generalFont); //apply font
+ QIcon::setThemeName(m_iconTheme); //apply icons
+-if(m_customPalette && m_usePalette)
+-QGuiApplication::setPalette(*m_customPalette); //apply palette
+-
+-#ifdef QT_WIDGETS_LIB
+-if(m_customPalette && m_usePalette && !m_update)
+-qApp->setPalette(*m_customPalette);
++if(m_palette && m_usePalette)
++QGuiApplication::setPalette(*m_palette); //apply palette
++
++#ifdef QT_WIDGETS_LIB
++if(m_palette && m_usePalette && !m_update)
++qApp->setPalette(*m_palette);
+ 
+ if(hasWidgets())
+ {
+@@ -288,10 +287,10 @@
+ 
+ void Qt5CTPlatformTheme::readSettings()
+ {
+-if(m_customPalette)
+-{
+-delete m_customPalette;
+-m_customPalette = nullptr;
++if(m_palette)
++{
++delete m_palette;
++m_palette = nullptr;
+ }
+ 
+ QSettings settings(Qt5CT::configFile(), QSettings::IniFormat);
+@@ -302,7 +301,7 @@
+ if(!schemePath.isEmpty() && settings.value("custom_palette", 
false).toBool())
+ {
+ schemePath = Qt5CT::resolvePath(schemePath); //replace environment 
variables
+-m_customPalette = new QPalette(loadColorScheme(schemePath));
++m_palette = new QPalette(loadColorScheme(schemePath));
+ }
+ m_iconTheme = settings.value("icon_theme").toString();
+ //load dialogs
+--- a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.h
 b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.h
+@@ -110,7 +110,7 @@
+ QString loadStyleSheets(const QStringList );
+ QPalette loadColorScheme(const QString );
+ QString m_style, m_iconTheme, m_userStyleSheet, m_prevStyleSheet;
+-QPalette *m_customPalette = nullptr;
++QPalette *m_palette = nullptr;
+ QFont m_generalFont, m_fixedFont;
+ int m_doubleClickInterval;
+ int m_cursorFlashTime;


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

2020-02-23 Thread Antonio Rojas via arch-commits
Date: Sunday, February 23, 2020 @ 22:20:39
  Author: arojas
Revision: 580107

Update URL (FS#65601)

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-23 22:19:52 UTC (rev 580106)
+++ PKGBUILD2020-02-23 22:20:39 UTC (rev 580107)
@@ -7,7 +7,7 @@
 pkgrel=2
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
-url="https://qt5ct.sourceforge.net;
+url="https://qt5ct.sourceforge.io/;
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)


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

2019-09-04 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 4, 2019 @ 20:39:26
  Author: arojas
Revision: 508111

Update to 0.41

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-04 19:44:21 UTC (rev 508110)
+++ PKGBUILD2019-09-04 20:39:26 UTC (rev 508111)
@@ -3,7 +3,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.40
+pkgver=0.41
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('2d2f8308527a7110d78701c3976a775127d67ab70d4abcf298bd0588958b77d9')
+sha256sums=('f24030e90d8b923b60c320b2db5b4c0fcc47f9f35ac4c52060ab3c6e423057dc')
 
 build() {
   cd $pkgname-$pkgver


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

2019-08-31 Thread Antonio Rojas via arch-commits
Date: Saturday, August 31, 2019 @ 18:16:15
  Author: arojas
Revision: 505748

Update to 0.40

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-31 18:08:20 UTC (rev 505747)
+++ PKGBUILD2019-08-31 18:16:15 UTC (rev 505748)
@@ -3,8 +3,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.39
-pkgrel=2
+pkgver=0.40
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.net;
@@ -12,7 +12,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('3769ecdcbdf821d52f7f1e013531a9692c28bab0bae5f133d22cba7702333e19')
+sha256sums=('2d2f8308527a7110d78701c3976a775127d67ab70d4abcf298bd0588958b77d9')
 
 build() {
   cd $pkgname-$pkgver


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

2019-05-04 Thread Antonio Rojas via arch-commits
Date: Saturday, May 4, 2019 @ 12:08:11
  Author: arojas
Revision: 458839

Update to 0.39

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-04 12:00:40 UTC (rev 458838)
+++ PKGBUILD2019-05-04 12:08:11 UTC (rev 458839)
@@ -3,7 +3,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.38
+pkgver=0.39
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('8fcb525cba96a6bdc2b04f843e97a22de44a8d7ae802a7383620c174fe09035c')
+sha256sums=('3769ecdcbdf821d52f7f1e013531a9692c28bab0bae5f133d22cba7702333e19')
 
 build() {
   cd $pkgname-$pkgver


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

2019-03-21 Thread Antonio Rojas via arch-commits
Date: Thursday, March 21, 2019 @ 22:31:40
  Author: arojas
Revision: 443095

2

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-03-21 21:34:59 UTC (rev 443094)
+++ PKGBUILD2019-03-21 22:31:40 UTC (rev 443095)
@@ -3,7 +3,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.37
+pkgver=0.38
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('dee6df2eaae41f6e34ffc233ea27b178114c54c928f6a045969dea78d7d60c59')
+sha256sums=('8fcb525cba96a6bdc2b04f843e97a22de44a8d7ae802a7383620c174fe09035c')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5ct-qt5.12.patch)

2018-12-19 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 19, 2018 @ 16:23:27
  Author: arojas
Revision: 416767

Update to 0.37

Modified:
  qt5ct/trunk/PKGBUILD
Deleted:
  qt5ct/trunk/qt5ct-qt5.12.patch

+
 PKGBUILD   |   15 ++
 qt5ct-qt5.12.patch |   70 ---
 2 files changed, 4 insertions(+), 81 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-19 16:11:09 UTC (rev 416766)
+++ PKGBUILD2018-12-19 16:23:27 UTC (rev 416767)
@@ -3,8 +3,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.36
-pkgrel=3
+pkgver=0.37
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.net;
@@ -11,16 +11,9 @@
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
-qt5ct-qt5.12.patch)
-sha256sums=('8fc3942f34d377af5533a0953cca633a7babc60c0476fd4318b617702183ee89'
-'ef2318d0003d33bf58e4bccfeed5d9697de68d752c0af9f7bedb70c031cb98ec')
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('dee6df2eaae41f6e34ffc233ea27b178114c54c928f6a045969dea78d7d60c59')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p3 -i ../qt5ct-qt5.12.patch # Fix color palette support with Qt 5.12
-}
-
 build() {
   cd $pkgname-$pkgver
   qmake-qt5 $pkgname.pro 

Deleted: qt5ct-qt5.12.patch
===
--- qt5ct-qt5.12.patch  2018-12-19 16:11:09 UTC (rev 416766)
+++ qt5ct-qt5.12.patch  2018-12-19 16:23:27 UTC (rev 416767)
@@ -1,70 +0,0 @@
 a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-+++ b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-@@ -400,6 +400,26 @@
- customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
- }
- }
-+#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
-+else if(activeColors.count() == QPalette::NColorRoles - 1 &&
-+inactiveColors.count() == QPalette::NColorRoles - 1 &&
-+disabledColors.count() == QPalette::NColorRoles - 1)
-+{
-+//old format compatibility
-+for (int i = 0; i < QPalette::NColorRoles - 1; i++)
-+{
-+QPalette::ColorRole role = QPalette::ColorRole(i);
-+customPalette.setColor(QPalette::Active, role, 
QColor(activeColors.at(i)));
-+customPalette.setColor(QPalette::Inactive, role, 
QColor(inactiveColors.at(i)));
-+customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
-+}
-+QColor textColor = customPalette.text().color();
-+textColor.setAlpha(128);
-+customPalette.setColor(QPalette::Active, QPalette::PlaceholderText, 
textColor);
-+customPalette.setColor(QPalette::Inactive, QPalette::PlaceholderText, 
textColor);
-+customPalette.setColor(QPalette::Disabled, QPalette::PlaceholderText, 
textColor);
-+}
-+#endif
- else
- {
- customPalette = *QPlatformTheme::palette(SystemPalette); //load 
fallback palette
 a/trunk/qt5ct/src/qt5ct/appearancepage.cpp
-+++ b/trunk/qt5ct/src/qt5ct/appearancepage.cpp
-@@ -425,6 +425,26 @@
- customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
- }
- }
-+#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
-+else if(activeColors.count() == QPalette::NColorRoles - 1 &&
-+inactiveColors.count() == QPalette::NColorRoles - 1 &&
-+disabledColors.count() == QPalette::NColorRoles - 1)
-+{
-+//old format compatibility
-+for (int i = 0; i < QPalette::NColorRoles - 1; i++)
-+{
-+QPalette::ColorRole role = QPalette::ColorRole(i);
-+customPalette.setColor(QPalette::Active, role, 
QColor(activeColors.at(i)));
-+customPalette.setColor(QPalette::Inactive, role, 
QColor(inactiveColors.at(i)));
-+customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
-+}
-+QColor textColor = customPalette.text().color();
-+textColor.setAlpha(128);
-+customPalette.setColor(QPalette::Active, QPalette::PlaceholderText, 
textColor);
-+customPalette.setColor(QPalette::Inactive, QPalette::PlaceholderText, 
textColor);
-+customPalette.setColor(QPalette::Disabled, QPalette::PlaceholderText, 
textColor);
-+}
-+#endif
- else
- {
- customPalette = palette(); //load fallback palette
 a/trunk/qt5ct/src/qt5ct/paletteeditdialog.cpp
-+++ b/trunk/qt5ct/src/qt5ct/paletteeditdialog.cpp
-@@ -92,6 +92,9 @@
-<< tr("Normal text") << tr("Bright text") << tr("Button text") << 
tr("Normal background") << tr("Window") << tr("Shadow")
-<< tr("Highlight") << tr("Highlighted text")  << tr("Link")  << 
tr("Visited link")
-<< tr("Alternate 

[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5ct-qt5.12.patch)

2018-12-14 Thread Antonio Rojas via arch-commits
Date: Friday, December 14, 2018 @ 10:25:04
  Author: arojas
Revision: 416247

Fix color palettes with Qt 5.12

Added:
  qt5ct/trunk/qt5ct-qt5.12.patch
Modified:
  qt5ct/trunk/PKGBUILD

+
 PKGBUILD   |   13 +++--
 qt5ct-qt5.12.patch |   70 +++
 2 files changed, 80 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-14 10:07:45 UTC (rev 416246)
+++ PKGBUILD2018-12-14 10:25:04 UTC (rev 416247)
@@ -4,7 +4,7 @@
 
 pkgname=qt5ct
 pkgver=0.36
-pkgrel=2
+pkgrel=3
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.net;
@@ -11,9 +11,16 @@
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('8fc3942f34d377af5533a0953cca633a7babc60c0476fd4318b617702183ee89')
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
+qt5ct-qt5.12.patch)
+sha256sums=('8fc3942f34d377af5533a0953cca633a7babc60c0476fd4318b617702183ee89'
+'ef2318d0003d33bf58e4bccfeed5d9697de68d752c0af9f7bedb70c031cb98ec')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p3 -i ../qt5ct-qt5.12.patch # Fix color palette support with Qt 5.12
+}
+
 build() {
   cd $pkgname-$pkgver
   qmake-qt5 $pkgname.pro 

Added: qt5ct-qt5.12.patch
===
--- qt5ct-qt5.12.patch  (rev 0)
+++ qt5ct-qt5.12.patch  2018-12-14 10:25:04 UTC (rev 416247)
@@ -0,0 +1,70 @@
+--- a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
 b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
+@@ -400,6 +400,26 @@
+ customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
+ }
+ }
++#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
++else if(activeColors.count() == QPalette::NColorRoles - 1 &&
++inactiveColors.count() == QPalette::NColorRoles - 1 &&
++disabledColors.count() == QPalette::NColorRoles - 1)
++{
++//old format compatibility
++for (int i = 0; i < QPalette::NColorRoles - 1; i++)
++{
++QPalette::ColorRole role = QPalette::ColorRole(i);
++customPalette.setColor(QPalette::Active, role, 
QColor(activeColors.at(i)));
++customPalette.setColor(QPalette::Inactive, role, 
QColor(inactiveColors.at(i)));
++customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
++}
++QColor textColor = customPalette.text().color();
++textColor.setAlpha(128);
++customPalette.setColor(QPalette::Active, QPalette::PlaceholderText, 
textColor);
++customPalette.setColor(QPalette::Inactive, QPalette::PlaceholderText, 
textColor);
++customPalette.setColor(QPalette::Disabled, QPalette::PlaceholderText, 
textColor);
++}
++#endif
+ else
+ {
+ customPalette = *QPlatformTheme::palette(SystemPalette); //load 
fallback palette
+--- a/trunk/qt5ct/src/qt5ct/appearancepage.cpp
 b/trunk/qt5ct/src/qt5ct/appearancepage.cpp
+@@ -425,6 +425,26 @@
+ customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
+ }
+ }
++#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
++else if(activeColors.count() == QPalette::NColorRoles - 1 &&
++inactiveColors.count() == QPalette::NColorRoles - 1 &&
++disabledColors.count() == QPalette::NColorRoles - 1)
++{
++//old format compatibility
++for (int i = 0; i < QPalette::NColorRoles - 1; i++)
++{
++QPalette::ColorRole role = QPalette::ColorRole(i);
++customPalette.setColor(QPalette::Active, role, 
QColor(activeColors.at(i)));
++customPalette.setColor(QPalette::Inactive, role, 
QColor(inactiveColors.at(i)));
++customPalette.setColor(QPalette::Disabled, role, 
QColor(disabledColors.at(i)));
++}
++QColor textColor = customPalette.text().color();
++textColor.setAlpha(128);
++customPalette.setColor(QPalette::Active, QPalette::PlaceholderText, 
textColor);
++customPalette.setColor(QPalette::Inactive, QPalette::PlaceholderText, 
textColor);
++customPalette.setColor(QPalette::Disabled, QPalette::PlaceholderText, 
textColor);
++}
++#endif
+ else
+ {
+ customPalette = palette(); //load fallback palette
+--- a/trunk/qt5ct/src/qt5ct/paletteeditdialog.cpp
 b/trunk/qt5ct/src/qt5ct/paletteeditdialog.cpp
+@@ -92,6 +92,9 @@
+<< tr("Normal text") << tr("Bright text") << tr("Button text") << 
tr("Normal background") << tr("Window") << tr("Shadow")
+<< tr("Highlight") << tr("Highlighted text")  << tr("Link")  << 
tr("Visited link")
+<< tr("Alternate background") << tr("Default") << 

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

2018-08-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, August 22, 2018 @ 18:01:15
  Author: arojas
Revision: 373287

Update to 0.36

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-22 16:25:00 UTC (rev 373286)
+++ PKGBUILD2018-08-22 18:01:15 UTC (rev 373287)
@@ -4,8 +4,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.35
-pkgrel=2
+pkgver=0.36
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.net;
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('1ceb5097bf48a313a6f9a50088825b863855db8fa62b8ce8f79bd4cd4468ef77')
+sha256sums=('8fc3942f34d377af5533a0953cca633a7babc60c0476fd4318b617702183ee89')
 
 build() {
   cd $pkgname-$pkgver


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

2018-03-08 Thread Antonio Rojas via arch-commits
Date: Thursday, March 8, 2018 @ 13:52:39
  Author: arojas
Revision: 304763

Update to 0.35

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-08 13:50:29 UTC (rev 304762)
+++ PKGBUILD2018-03-08 13:52:39 UTC (rev 304763)
@@ -4,8 +4,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.34
-pkgrel=2
+pkgver=0.35
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.net;
@@ -13,18 +13,18 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('f402e0c3b8b03ed16db24dfa4380097ca99e40128ee7f2fe39a033753e8d0b2b')
+sha256sums=('1ceb5097bf48a313a6f9a50088825b863855db8fa62b8ce8f79bd4cd4468ef77')
 
 build() {
-cd $pkgname-$pkgver
-qmake-qt5 $pkgname.pro 
-make
+  cd $pkgname-$pkgver
+  qmake-qt5 $pkgname.pro 
+  make
 }
 
 package() {
-cd $pkgname-$pkgver
-make INSTALL_ROOT="$pkgdir" install
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
 
-install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 } 
 


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

2017-12-07 Thread Antonio Rojas via arch-commits
Date: Thursday, December 7, 2017 @ 11:43:13
  Author: arojas
Revision: 272947

Qt 5.10 rebuild

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-07 11:42:47 UTC (rev 272946)
+++ PKGBUILD2017-12-07 11:43:13 UTC (rev 272947)
@@ -5,7 +5,7 @@
 
 pkgname=qt5ct
 pkgver=0.34
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt5 Configuration Utility"
 arch=(x86_64)
 url="https://qt5ct.sourceforge.net;


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

2017-11-04 Thread Antonio Rojas
Date: Saturday, November 4, 2017 @ 20:34:53
  Author: arojas
Revision: 265413

Update to 0.34

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-04 20:17:56 UTC (rev 265412)
+++ PKGBUILD2017-11-04 20:34:53 UTC (rev 265413)
@@ -4,8 +4,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.33
-pkgrel=2
+pkgver=0.34
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="https://qt5ct.sourceforge.net;
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('2e55484bdae7988ec8ce2629cfc252b226df8b07b2a0b6f8ee2fd10cc8e7c02f')
+sha256sums=('f402e0c3b8b03ed16db24dfa4380097ca99e40128ee7f2fe39a033753e8d0b2b')
 
 build() {
 cd $pkgname-$pkgver


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

2017-08-22 Thread Antonio Rojas
Date: Tuesday, August 22, 2017 @ 17:08:11
  Author: arojas
Revision: 252976

https

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-22 17:07:53 UTC (rev 252975)
+++ PKGBUILD2017-08-22 17:08:11 UTC (rev 252976)
@@ -8,11 +8,11 @@
 pkgrel=2
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
-url="http://qt5ct.sourceforge.net;
+url="https://qt5ct.sourceforge.net;
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
 sha256sums=('2e55484bdae7988ec8ce2629cfc252b226df8b07b2a0b6f8ee2fd10cc8e7c02f')
 
 build() {


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

2017-05-31 Thread Antonio Rojas
Date: Wednesday, May 31, 2017 @ 17:39:32
  Author: arojas
Revision: 231595

Qt 5.9 rebuild

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-31 17:39:09 UTC (rev 231594)
+++ PKGBUILD2017-05-31 17:39:32 UTC (rev 231595)
@@ -5,7 +5,7 @@
 
 pkgname=qt5ct
 pkgver=0.33
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://qt5ct.sourceforge.net;


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

2017-05-30 Thread Antonio Rojas
Date: Tuesday, May 30, 2017 @ 17:08:39
  Author: arojas
Revision: 231388

Update to 0.33

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-30 17:07:58 UTC (rev 231387)
+++ PKGBUILD2017-05-30 17:08:39 UTC (rev 231388)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.32
+pkgver=0.33
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('d501975f876aeb7a4c9814c9b9a46eb20804c3e0ee2b5d5e7b1b3d244dc7f53f')
+sha256sums=('2e55484bdae7988ec8ce2629cfc252b226df8b07b2a0b6f8ee2fd10cc8e7c02f')
 
 build() {
 cd $pkgname-$pkgver


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

2017-05-14 Thread Antonio Rojas
Date: Sunday, May 14, 2017 @ 12:40:11
  Author: arojas
Revision: 227967

Update to 0.32

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-14 11:34:33 UTC (rev 227966)
+++ PKGBUILD2017-05-14 12:40:11 UTC (rev 227967)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.31
+pkgver=0.32
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('d5357768832a81e39aa9cd0a45d8144de9bd59302d8d122d8c2d1a231be2aba9')
+sha256sums=('d501975f876aeb7a4c9814c9b9a46eb20804c3e0ee2b5d5e7b1b3d244dc7f53f')
 
 build() {
 cd $pkgname-$pkgver


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

2017-03-28 Thread Antonio Rojas
Date: Tuesday, March 28, 2017 @ 17:54:58
  Author: arojas
Revision: 219754

Update to 0.31

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-28 17:53:55 UTC (rev 219753)
+++ PKGBUILD2017-03-28 17:54:58 UTC (rev 219754)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.30
+pkgver=0.31
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('e6d94d756ea928f330376a30660a75b3213bad234b360519416e634048e31ecc')
+sha256sums=('d5357768832a81e39aa9cd0a45d8144de9bd59302d8d122d8c2d1a231be2aba9')
 
 build() {
 cd $pkgname-$pkgver


[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5ct-fix-color-scheme.patch)

2017-02-04 Thread Antonio Rojas
Date: Saturday, February 4, 2017 @ 18:26:02
  Author: arojas
Revision: 209905

Update to 0.30

Modified:
  qt5ct/trunk/PKGBUILD
Deleted:
  qt5ct/trunk/qt5ct-fix-color-scheme.patch

--+
 PKGBUILD |   15 ---
 qt5ct-fix-color-scheme.patch |   14 --
 2 files changed, 4 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-02-04 18:15:48 UTC (rev 209904)
+++ PKGBUILD2017-02-04 18:26:02 UTC (rev 209905)
@@ -4,8 +4,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.29
-pkgrel=4
+pkgver=0.30
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://qt5ct.sourceforge.net;
@@ -12,16 +12,9 @@
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 qt5ct-fix-color-scheme.patch)
-sha256sums=('a016142a04a5edfbdda627fc203622f512fae9e84bcf89ce63a7107f01721adc'
-'171c5802dc77a63aa7fff806b5f63b8f4fe7e1f52653f4c11d8597ae910a4af7')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('e6d94d756ea928f330376a30660a75b3213bad234b360519416e634048e31ecc')
 
-prepare() {
-  cd $pkgname-$pkgver
-# Fix color scheme https://sourceforge.net/p/qt5ct/tickets/32/
-  patch -p3 -i ../qt5ct-fix-color-scheme.patch
-}
-
 build() {
 cd $pkgname-$pkgver
 qmake-qt5 $pkgname.pro 

Deleted: qt5ct-fix-color-scheme.patch
===
--- qt5ct-fix-color-scheme.patch2017-02-04 18:15:48 UTC (rev 209904)
+++ qt5ct-fix-color-scheme.patch2017-02-04 18:26:02 UTC (rev 209905)
@@ -1,14 +0,0 @@
 a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-+++ b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
-@@ -101,9 +101,8 @@
- 
- const QPalette *Qt5CTPlatformTheme::palette(QPlatformTheme::Palette type) 
const
- {
--if(m_customPalette && m_usePalette)
--return m_customPalette;
--return QPlatformTheme::palette(type);
-+Q_UNUSED(type);
-+return (m_usePalette ? m_customPalette : 0);
- }
- 
- const QFont *Qt5CTPlatformTheme::font(QPlatformTheme::Font type) const


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

2017-01-28 Thread Antonio Rojas
Date: Saturday, January 28, 2017 @ 10:21:26
  Author: arojas
Revision: 209276

Qt 5.8 rebuild

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-28 10:20:02 UTC (rev 209275)
+++ PKGBUILD2017-01-28 10:21:26 UTC (rev 209276)
@@ -5,7 +5,7 @@
 
 pkgname=qt5ct
 pkgver=0.29
-pkgrel=3
+pkgrel=4
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://qt5ct.sourceforge.net;


[arch-commits] Commit in qt5ct/trunk (PKGBUILD qt5ct-fix-color-scheme.patch)

2017-01-28 Thread Antonio Rojas
Date: Saturday, January 28, 2017 @ 10:19:34
  Author: arojas
Revision: 209274

Fix using KDE color scheme (FS#52720)

Added:
  qt5ct/trunk/qt5ct-fix-color-scheme.patch
Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 qt5ct-fix-color-scheme.patch |   14 ++
 2 files changed, 24 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-28 03:43:47 UTC (rev 209273)
+++ PKGBUILD2017-01-28 10:19:34 UTC (rev 209274)
@@ -5,7 +5,7 @@
 
 pkgname=qt5ct
 pkgver=0.29
-pkgrel=2
+pkgrel=3
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://qt5ct.sourceforge.net;
@@ -12,9 +12,16 @@
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
-source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('a016142a04a5edfbdda627fc203622f512fae9e84bcf89ce63a7107f01721adc')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 qt5ct-fix-color-scheme.patch)
+sha256sums=('a016142a04a5edfbdda627fc203622f512fae9e84bcf89ce63a7107f01721adc'
+'171c5802dc77a63aa7fff806b5f63b8f4fe7e1f52653f4c11d8597ae910a4af7')
 
+prepare() {
+  cd $pkgname-$pkgver
+# Fix color scheme https://sourceforge.net/p/qt5ct/tickets/32/
+  patch -p3 -i ../qt5ct-fix-color-scheme.patch
+}
+
 build() {
 cd $pkgname-$pkgver
 qmake-qt5 $pkgname.pro 

Added: qt5ct-fix-color-scheme.patch
===
--- qt5ct-fix-color-scheme.patch(rev 0)
+++ qt5ct-fix-color-scheme.patch2017-01-28 10:19:34 UTC (rev 209274)
@@ -0,0 +1,14 @@
+--- a/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
 b/trunk/qt5ct/src/qt5ct-qtplugin/qt5ctplatformtheme.cpp
+@@ -101,9 +101,8 @@
+ 
+ const QPalette *Qt5CTPlatformTheme::palette(QPlatformTheme::Palette type) 
const
+ {
+-if(m_customPalette && m_usePalette)
+-return m_customPalette;
+-return QPlatformTheme::palette(type);
++Q_UNUSED(type);
++return (m_usePalette ? m_customPalette : 0);
+ }
+ 
+ const QFont *Qt5CTPlatformTheme::font(QPlatformTheme::Font type) const


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

2017-01-24 Thread Antonio Rojas
Date: Wednesday, January 25, 2017 @ 07:05:57
  Author: arojas
Revision: 208962

Qt 5.8 rebuild

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-25 06:55:02 UTC (rev 208961)
+++ PKGBUILD2017-01-25 07:05:57 UTC (rev 208962)
@@ -5,7 +5,7 @@
 
 pkgname=qt5ct
 pkgver=0.29
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://qt5ct.sourceforge.net;


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

2017-01-24 Thread Antonio Rojas
Date: Wednesday, January 25, 2017 @ 06:54:36
  Author: arojas
Revision: 208960

Update to 0.29

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-25 05:30:47 UTC (rev 208959)
+++ PKGBUILD2017-01-25 06:54:36 UTC (rev 208960)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.28
+pkgver=0.29
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('d75216135c112657d10b1c87502ba8c9510340a7b868211770ccd85aa777f0ca')
+sha256sums=('a016142a04a5edfbdda627fc203622f512fae9e84bcf89ce63a7107f01721adc')
 
 build() {
 cd $pkgname-$pkgver


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

2017-01-24 Thread Antonio Rojas
Date: Tuesday, January 24, 2017 @ 20:08:28
  Author: arojas
Revision: 208925

Update to 0.28

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-24 19:06:23 UTC (rev 208924)
+++ PKGBUILD2017-01-24 20:08:28 UTC (rev 208925)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.27
+pkgver=0.28
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('d3b92b9d34469cae4f66a43ca59f5f0b548ef6d37984469361329af4348ab1f3')
+sha256sums=('d75216135c112657d10b1c87502ba8c9510340a7b868211770ccd85aa777f0ca')
 
 build() {
 cd $pkgname-$pkgver


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

2016-09-05 Thread Antonio Rojas
Date: Monday, September 5, 2016 @ 14:33:40
  Author: arojas
Revision: 188583

Update to 0.26

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-05 13:56:00 UTC (rev 188582)
+++ PKGBUILD2016-09-05 14:33:40 UTC (rev 188583)
@@ -4,16 +4,16 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.25
+pkgver=0.26
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
-url="http://opendesktop.org/content/show.php?content=168066;
+url="http://qt5ct.sourceforge.net;
 license=(BSD)
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
-sha256sums=('b2669f4317c511895f33d5d11d14a5d9535340c6fb20effe4dd37ab6c152e057'
+sha256sums=('33883e6a12c5f9392701cc3ecc3a54181e53ce827755e8e2af8530bbc6606c5b'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2016-08-10 Thread Antonio Rojas
Date: Wednesday, August 10, 2016 @ 13:36:07
  Author: arojas
Revision: 186326

Update to 0.25

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-10 12:48:57 UTC (rev 186325)
+++ PKGBUILD2016-08-10 13:36:07 UTC (rev 186326)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.24
+pkgver=0.25
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
-sha256sums=('d7acba4e36ed6478a4a27a8cc9359b45f2ecdbcb5f46e6a19e6fdd4252b3c24c'
+sha256sums=('b2669f4317c511895f33d5d11d14a5d9535340c6fb20effe4dd37ab6c152e057'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2016-06-02 Thread Antonio Rojas
Date: Thursday, June 2, 2016 @ 08:27:50
  Author: arojas
Revision: 177681

Update to 0.24

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-02 02:41:52 UTC (rev 177680)
+++ PKGBUILD2016-06-02 06:27:50 UTC (rev 177681)
@@ -4,8 +4,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.23
-pkgrel=2
+pkgver=0.24
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://opendesktop.org/content/show.php?content=168066;
@@ -13,7 +13,7 @@
 depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
-sha256sums=('2830f8b980baad8b3373f9ff5d4118e51e6d54f9b5189324f740eee4d27ba616'
+sha256sums=('d7acba4e36ed6478a4a27a8cc9359b45f2ecdbcb5f46e6a19e6fdd4252b3c24c'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2016-04-26 Thread Antonio Rojas
Date: Tuesday, April 26, 2016 @ 12:30:46
  Author: arojas
Revision: 171883

Update to 0.23

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-26 09:30:53 UTC (rev 171882)
+++ PKGBUILD2016-04-26 10:30:46 UTC (rev 171883)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.22
+pkgver=0.23
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('a33d614c7af93cfdc295f21459b9fe39c6bedcbaf1a0c6dc1d26c18fca6d6c83'
+sha256sums=('2830f8b980baad8b3373f9ff5d4118e51e6d54f9b5189324f740eee4d27ba616'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2016-03-06 Thread Antonio Rojas
Date: Sunday, March 6, 2016 @ 11:51:18
  Author: arojas
Revision: 165332

Update to 0.22

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-06 10:44:45 UTC (rev 165331)
+++ PKGBUILD2016-03-06 10:51:18 UTC (rev 165332)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.21
+pkgver=0.22
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('7ac1213d01eb4a2ce2a02ed6e135d6b3e404657d6df941bf92a185e166077585'
+sha256sums=('a33d614c7af93cfdc295f21459b9fe39c6bedcbaf1a0c6dc1d26c18fca6d6c83'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2016-01-08 Thread Antonio Rojas
Date: Friday, January 8, 2016 @ 22:09:08
  Author: arojas
Revision: 155732

Update to 0.21

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-08 20:31:31 UTC (rev 155731)
+++ PKGBUILD2016-01-08 21:09:08 UTC (rev 155732)
@@ -4,8 +4,8 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.20
-pkgrel=2
+pkgver=0.21
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://opendesktop.org/content/show.php?content=168066;
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('660e696742ed8a9f34be9c8986918ed303fe2df2bd6d1ff6acfe010dce22103c'
+sha256sums=('7ac1213d01eb4a2ce2a02ed6e135d6b3e404657d6df941bf92a185e166077585'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Monday, December 7, 2015 @ 00:43:46
  Author: bpiotrowski
Revision: 149376

C++11 ABI rebuild

Modified:
  qt5ct/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 23:43:43 UTC (rev 149375)
+++ PKGBUILD2015-12-06 23:43:46 UTC (rev 149376)
@@ -5,7 +5,7 @@
 
 pkgname=qt5ct
 pkgver=0.20
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://opendesktop.org/content/show.php?content=168066;


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

2015-10-18 Thread Antonio Rojas
Date: Sunday, October 18, 2015 @ 12:56:17
  Author: arojas
Revision: 144322

Update to 0.20

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-18 08:04:04 UTC (rev 144321)
+++ PKGBUILD2015-10-18 10:56:17 UTC (rev 144322)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.19
+pkgver=0.20
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('657493a22c762c014e5d717772a5eda63688f7a5c6c4ffc4d20cccd2ebc9f4d1'
+sha256sums=('660e696742ed8a9f34be9c8986918ed303fe2df2bd6d1ff6acfe010dce22103c'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-09-24 Thread Antonio Rojas
Date: Thursday, September 24, 2015 @ 17:13:39
  Author: arojas
Revision: 141577

Update to 0.19

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-24 14:25:30 UTC (rev 141576)
+++ PKGBUILD2015-09-24 15:13:39 UTC (rev 141577)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.18
+pkgver=0.19
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('06224bd07ae854e5961f69c7e0fdd890c0b3f49aa8f2a2827abadc3cf80e81c6'
+sha256sums=('657493a22c762c014e5d717772a5eda63688f7a5c6c4ffc4d20cccd2ebc9f4d1'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-09-21 Thread Antonio Rojas
Date: Monday, September 21, 2015 @ 20:50:13
  Author: arojas
Revision: 141399

Update to 0.18

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-21 18:29:29 UTC (rev 141398)
+++ PKGBUILD2015-09-21 18:50:13 UTC (rev 141399)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.17
+pkgver=0.18
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('0b3dda666cee65d62f149012b3ec0ecbd7e6bb2dd0bd827180ac27ca3e7aa99e'
+sha256sums=('06224bd07ae854e5961f69c7e0fdd890c0b3f49aa8f2a2827abadc3cf80e81c6'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-09-15 Thread Antonio Rojas
Date: Tuesday, September 15, 2015 @ 11:44:32
  Author: arojas
Revision: 140317

Update to 0.17

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-15 09:20:47 UTC (rev 140316)
+++ PKGBUILD2015-09-15 09:44:32 UTC (rev 140317)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.16
+pkgver=0.17
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('4a85e23827aad93d8800da4a6bde70af10a95c6e757ab6c9c25687bb7bd64ae4'
+sha256sums=('0b3dda666cee65d62f149012b3ec0ecbd7e6bb2dd0bd827180ac27ca3e7aa99e'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-09-13 Thread Antonio Rojas
Date: Sunday, September 13, 2015 @ 11:04:54
  Author: arojas
Revision: 140029

Update to 0.16

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-13 07:49:09 UTC (rev 140028)
+++ PKGBUILD2015-09-13 09:04:54 UTC (rev 140029)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.15
+pkgver=0.16
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('783032528364951a3c3e7c5d7066c23796f529887d9bbfcd9c3071d83079fbad'
+sha256sums=('4a85e23827aad93d8800da4a6bde70af10a95c6e757ab6c9c25687bb7bd64ae4'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-09-05 Thread Antonio Rojas
Date: Saturday, September 5, 2015 @ 21:58:50
  Author: arojas
Revision: 139242

Update to 0.15

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-05 18:30:22 UTC (rev 139241)
+++ PKGBUILD2015-09-05 19:58:50 UTC (rev 139242)
@@ -4,7 +4,7 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.14
+pkgver=0.15
 pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('f29a6a51529fb30a5396acfa4764dea59e8133b18e7a0df674f55e412bb6b5a0'
+sha256sums=('783032528364951a3c3e7c5d7066c23796f529887d9bbfcd9c3071d83079fbad'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {


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

2015-09-04 Thread Antonio Rojas
Date: Friday, September 4, 2015 @ 21:02:53
  Author: arojas
Revision: 139213

Update to 0.14

Modified:
  qt5ct/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 16:03:57 UTC (rev 139212)
+++ PKGBUILD2015-09-04 19:02:53 UTC (rev 139213)
@@ -4,17 +4,17 @@
 # Contributor: Zatherz 
 
 pkgname=qt5ct
-pkgver=0.13
-pkgrel=2
+pkgver=0.14
+pkgrel=1
 pkgdesc="Qt5 Configuration Utility"
 arch=(i686 x86_64)
 url="http://opendesktop.org/content/show.php?content=168066;
 license=(BSD)
-depends=(qt5-base)
+depends=(qt5-svg)
 makedepends=(qt5-tools)
 
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2;
 'COPYING.BSD')
 install=$pkgname.install
-sha256sums=('752338080244c64d7354b30c83cb7a680a7e22a817fe2610acf0e4b018882bd1'
+sha256sums=('f29a6a51529fb30a5396acfa4764dea59e8133b18e7a0df674f55e412bb6b5a0'
 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b')
 
 build() {