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

Felix Yan felixonmars at archlinux.org
Mon Jul 31 15:15:35 UTC 2017


    Date: Monday, July 31, 2017 @ 15:15:35
  Author: felixonmars
Revision: 247130

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

Added:
  qt5-styleplugins/repos/community-i686/
  qt5-styleplugins/repos/community-i686/PKGBUILD
    (from rev 247129, qt5-styleplugins/trunk/PKGBUILD)
  qt5-styleplugins/repos/community-i686/install.sh
    (from rev 247129, qt5-styleplugins/trunk/install.sh)
  qt5-styleplugins/repos/community-x86_64/
  qt5-styleplugins/repos/community-x86_64/PKGBUILD
    (from rev 247129, qt5-styleplugins/trunk/PKGBUILD)
  qt5-styleplugins/repos/community-x86_64/install.sh
    (from rev 247129, qt5-styleplugins/trunk/install.sh)

-----------------------------+
 community-i686/PKGBUILD     |   30 ++++++++++++++++++++++++++++++
 community-i686/install.sh   |   20 ++++++++++++++++++++
 community-x86_64/PKGBUILD   |   30 ++++++++++++++++++++++++++++++
 community-x86_64/install.sh |   20 ++++++++++++++++++++
 4 files changed, 100 insertions(+)

Copied: qt5-styleplugins/repos/community-i686/PKGBUILD (from rev 247129, qt5-styleplugins/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-07-31 15:15:35 UTC (rev 247130)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# shellcheck disable=SC2034,SC2154,SC2164
+
+pkgname=('qt5-styleplugins')
+pkgver=5.0.0.20170311
+_commit=335dbece103e2cbf6c7cf819ab6672c2956b17b3
+pkgdesc='Additional style plugins for Qt5'
+pkgrel=1
+arch=('i686' 'x86_64')
+url="https://code.qt.io/cgit/qt/qtstyleplugins"
+license=('LGPL')
+depends=('qt5-base' 'gtk2')
+source=("$pkgname-$_commit.tar.gz::https://github.com/qt/qtstyleplugins/archive/$_commit.tar.gz")
+sha512sums=('50d9d3bd206025a09ef7bb9f36e9ed15f79bc11842fad8daac1a1c797c379b5e67acd3d40e52d63688e87e67a271e95ab116c1f14a054b5055f51ab1d80a99cd')
+install='install.sh'
+
+build() {
+  cd qtstyleplugins-$_commit
+  qmake PREFIX='/usr' \
+        LIBDIR='/usr/lib' \
+        QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+        QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS"
+  make
+}
+
+package() {
+  cd qtstyleplugins-$_commit
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: qt5-styleplugins/repos/community-i686/install.sh (from rev 247129, qt5-styleplugins/trunk/install.sh)
===================================================================
--- community-i686/install.sh	                        (rev 0)
+++ community-i686/install.sh	2017-07-31 15:15:35 UTC (rev 247130)
@@ -0,0 +1,20 @@
+_5_0_0_2_changes() {
+    echo ':: Upstream added a gtk2 platform theme'
+    # shellcheck disable=SC2016
+    echo '   unexport `QT_STYLE_OVERRIDE`'
+    # shellcheck disable=SC2016
+    echo '   export `QT_QPA_PLATFORMTHEME=gtk2`'
+}
+
+post_upgrade() {
+    local versions=(
+        '5.0.0-2'
+    )
+    local version
+    for version in "${versions[@]}"; do
+        if [[ "$( vercmp "${version}" "${2}" )" -eq 1 ]]; then
+            # shellcheck disable=SC2091
+            "$( printf '_%s_changes' "${version}" | perl -p -e 's/\.|-/_/g' )"
+        fi
+    done
+}

Copied: qt5-styleplugins/repos/community-x86_64/PKGBUILD (from rev 247129, qt5-styleplugins/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-07-31 15:15:35 UTC (rev 247130)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# shellcheck disable=SC2034,SC2154,SC2164
+
+pkgname=('qt5-styleplugins')
+pkgver=5.0.0.20170311
+_commit=335dbece103e2cbf6c7cf819ab6672c2956b17b3
+pkgdesc='Additional style plugins for Qt5'
+pkgrel=1
+arch=('i686' 'x86_64')
+url="https://code.qt.io/cgit/qt/qtstyleplugins"
+license=('LGPL')
+depends=('qt5-base' 'gtk2')
+source=("$pkgname-$_commit.tar.gz::https://github.com/qt/qtstyleplugins/archive/$_commit.tar.gz")
+sha512sums=('50d9d3bd206025a09ef7bb9f36e9ed15f79bc11842fad8daac1a1c797c379b5e67acd3d40e52d63688e87e67a271e95ab116c1f14a054b5055f51ab1d80a99cd')
+install='install.sh'
+
+build() {
+  cd qtstyleplugins-$_commit
+  qmake PREFIX='/usr' \
+        LIBDIR='/usr/lib' \
+        QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+        QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS"
+  make
+}
+
+package() {
+  cd qtstyleplugins-$_commit
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: qt5-styleplugins/repos/community-x86_64/install.sh (from rev 247129, qt5-styleplugins/trunk/install.sh)
===================================================================
--- community-x86_64/install.sh	                        (rev 0)
+++ community-x86_64/install.sh	2017-07-31 15:15:35 UTC (rev 247130)
@@ -0,0 +1,20 @@
+_5_0_0_2_changes() {
+    echo ':: Upstream added a gtk2 platform theme'
+    # shellcheck disable=SC2016
+    echo '   unexport `QT_STYLE_OVERRIDE`'
+    # shellcheck disable=SC2016
+    echo '   export `QT_QPA_PLATFORMTHEME=gtk2`'
+}
+
+post_upgrade() {
+    local versions=(
+        '5.0.0-2'
+    )
+    local version
+    for version in "${versions[@]}"; do
+        if [[ "$( vercmp "${version}" "${2}" )" -eq 1 ]]; then
+            # shellcheck disable=SC2091
+            "$( printf '_%s_changes' "${version}" | perl -p -e 's/\.|-/_/g' )"
+        fi
+    done
+}



More information about the arch-commits mailing list