summaryrefslogtreecommitdiff
path: root/pcr-testing/qt5-styleplugins/install.sh
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2019-03-31 06:05:20 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2019-03-31 06:22:11 -0400
commit135593d3bb1b79f3770b7f341247bd5d638f207f (patch)
treef3155582e2d0d9f21d1fb3d09acc4321b7486ce5 /pcr-testing/qt5-styleplugins/install.sh
parent5d881aeb26c3b3b4494787d7d726508207ec955e (diff)
downloadabslibre-135593d3bb1b79f3770b7f341247bd5d638f207f.tar.gz
abslibre-135593d3bb1b79f3770b7f341247bd5d638f207f.tar.bz2
abslibre-135593d3bb1b79f3770b7f341247bd5d638f207f.zip
[qt5-styleplugins]: remove - arch added it back
Diffstat (limited to 'pcr-testing/qt5-styleplugins/install.sh')
-rw-r--r--pcr-testing/qt5-styleplugins/install.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/pcr-testing/qt5-styleplugins/install.sh b/pcr-testing/qt5-styleplugins/install.sh
deleted file mode 100644
index dc88cad41..000000000
--- a/pcr-testing/qt5-styleplugins/install.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-_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
-}