[arch-commits] Commit in qt5-base/repos (8 files)

2017-10-07 Thread Antonio Rojas
Date: Saturday, October 7, 2017 @ 06:38:33
  Author: arojas
Revision: 307071

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

Added:
  qt5-base/repos/staging-i686/
  qt5-base/repos/staging-i686/PKGBUILD
(from rev 307070, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-i686/harmony-fix.diff
(from rev 307070, qt5-base/trunk/harmony-fix.diff)
  qt5-base/repos/staging-i686/rebuild.list
(from rev 307070, qt5-base/trunk/rebuild.list)
  qt5-base/repos/staging-x86_64/
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 307070, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-x86_64/harmony-fix.diff
(from rev 307070, qt5-base/trunk/harmony-fix.diff)
  qt5-base/repos/staging-x86_64/rebuild.list
(from rev 307070, qt5-base/trunk/rebuild.list)

-+
 staging-i686/PKGBUILD   |  121 ++
 staging-i686/harmony-fix.diff   |   76 +++
 staging-i686/rebuild.list   |   19 +
 staging-x86_64/PKGBUILD |  121 ++
 staging-x86_64/harmony-fix.diff |   76 +++
 staging-x86_64/rebuild.list |   19 +
 6 files changed, 432 insertions(+)

Copied: qt5-base/repos/staging-i686/PKGBUILD (from rev 307070, 
qt5-base/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-10-07 06:38:33 UTC (rev 307071)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=qt5-base
+pkgname=(qt5-base qt5-xcb-private-headers)
+_qtver=5.9.2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu' 
'pcre2'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0' 'double-conversion')
+makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgbase/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+harmony-fix.diff)
+sha256sums=('7fe2bb468955f633c71b3ddd3c269e68a2c4137a4e5b8dd12dcdb34cbc6d609b'
+'8451c0a86e887492b706950ce533c616e687b790c54e86fb1f405dc2074737a3')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix missing private includes https://bugreports.qt.io/browse/QTBUG-37417
+  sed -e '/CMAKE_NO_PRIVATE_INCLUDES\ \=\ true/d' -i 
mkspecs/features/create_cmake.prf
+
+  # Freetype 2.8.1
+  patch -p1 -i ../harmony-fix.diff
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  echo "INCLUDEPATH += /usr/include/openssl-1.0" >> src/network/network.pro
+  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
+
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-openssl-linked \
+-nomake examples \
+-no-rpath \
+-optimized-qmake \
+-dbus-linked \
+-system-harfbuzz \
+-journald \
+-no-use-gold-linker \
+-reduce-relocations ${SSE2}
+
+  make
+}
+
+package_qt5-base() {
+  pkgdesc='A cross-platform application and UI framework'
+
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="${pkgdir}" install
+
+  install -D -m644 LGPL_EXCEPTION.txt \
+"${pkgdir}"/usr/share/licenses/${pkgbase}/LGPL_EXCEPTION.txt
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
+

[arch-commits] Commit in qt5-base/repos (8 files)

2017-07-11 Thread Antonio Rojas
Date: Tuesday, July 11, 2017 @ 12:03:12
  Author: arojas
Revision: 300098

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

Added:
  qt5-base/repos/extra-i686/PKGBUILD
(from rev 300097, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-i686/rebuild.list
(from rev 300097, qt5-base/trunk/rebuild.list)
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 300097, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/rebuild.list
(from rev 300097, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/extra-i686/PKGBUILD
  qt5-base/repos/extra-i686/rebuild.list
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/rebuild.list

---+
 /PKGBUILD |  250 
 /rebuild.list |   34 +
 extra-i686/PKGBUILD   |  125 --
 extra-i686/rebuild.list   |   17 --
 extra-x86_64/PKGBUILD |  125 --
 extra-x86_64/rebuild.list |   17 --
 6 files changed, 284 insertions(+), 284 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-11 11:56:20 UTC (rev 300097)
+++ extra-i686/PKGBUILD 2017-07-11 12:03:12 UTC (rev 300098)
@@ -1,125 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-_qtver=5.9.1
-pkgver=${_qtver/-/}
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu' 
'pcre2'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0' 'double-conversion')
-makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgbase/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-qtbug-61731.patch::"https://github.com/qt/qtbase/commit/386af91c.patch;
-
qtcreatorbug-18448.patch::"https://github.com/qt/qtbase/commit/2a9f678f.patch;)
-sha256sums=('bc9a21e9f6fff9629019fdf9f989f064751d5073c3a28dc596def92f4d4275c6'
-'b164a873894cfc783980e883082d2b22b5aab00166c6751f66e78d4c41c3e2e3'
-'5f878d144ac18097376dce154a411449cde181ddce2d93501114f890c9cdb1c3')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix missing private includes https://bugreports.qt.io/browse/QTBUG-37417
-  sed -e '/CMAKE_NO_PRIVATE_INCLUDES\ \=\ true/d' -i 
mkspecs/features/create_cmake.prf
-
-  # Fix accessibility build 
-  patch -p1 -i ../qtbug-61731.patch
-  # Fix doc navigation
-  patch -p1 -i ../qtcreatorbug-18448.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  echo "INCLUDEPATH += /usr/include/openssl-1.0" >> src/network/network.pro
-  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgbase}/LGPL_EXCEPTION.txt
-
-  # Drop 

[arch-commits] Commit in qt5-base/repos (8 files)

2017-07-04 Thread Antonio Rojas
Date: Tuesday, July 4, 2017 @ 12:34:21
  Author: arojas
Revision: 299669

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

Added:
  qt5-base/repos/extra-i686/PKGBUILD
(from rev 299668, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-i686/rebuild.list
(from rev 299668, qt5-base/trunk/rebuild.list)
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 299668, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/rebuild.list
(from rev 299668, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/extra-i686/PKGBUILD
  qt5-base/repos/extra-i686/rebuild.list
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/rebuild.list

---+
 /PKGBUILD |  250 
 /rebuild.list |   34 +
 extra-i686/PKGBUILD   |  116 
 extra-i686/rebuild.list   |   17 --
 extra-x86_64/PKGBUILD |  116 
 extra-x86_64/rebuild.list |   17 --
 6 files changed, 284 insertions(+), 266 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-04 12:33:39 UTC (rev 299668)
+++ extra-i686/PKGBUILD 2017-07-04 12:34:21 UTC (rev 299669)
@@ -1,116 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-_qtver=5.9.1
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu' 
'pcre2'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0' 'double-conversion')
-makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgbase/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('bc9a21e9f6fff9629019fdf9f989f064751d5073c3a28dc596def92f4d4275c6')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix missing private includes https://bugreports.qt.io/browse/QTBUG-37417
-  sed -e '/CMAKE_NO_PRIVATE_INCLUDES\ \=\ true/d' -i 
mkspecs/features/create_cmake.prf
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  echo "INCLUDEPATH += /usr/include/openssl-1.0" >> src/network/network.pro
-  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgbase}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s /usr/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}
-

[arch-commits] Commit in qt5-base/repos (8 files)

2017-06-07 Thread Antonio Rojas
Date: Wednesday, June 7, 2017 @ 21:14:03
  Author: arojas
Revision: 298152

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

Added:
  qt5-base/repos/testing-i686/PKGBUILD
(from rev 298151, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-i686/rebuild.list
(from rev 298151, qt5-base/trunk/rebuild.list)
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 298151, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/rebuild.list
(from rev 298151, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/testing-i686/PKGBUILD
  qt5-base/repos/testing-i686/rebuild.list
  qt5-base/repos/testing-x86_64/PKGBUILD
  qt5-base/repos/testing-x86_64/rebuild.list

-+
 /PKGBUILD   |  250 ++
 /rebuild.list   |   34 +
 testing-i686/PKGBUILD   |  116 ---
 testing-i686/rebuild.list   |   15 --
 testing-x86_64/PKGBUILD |  116 ---
 testing-x86_64/rebuild.list |   15 --
 6 files changed, 284 insertions(+), 262 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-06-07 21:12:43 UTC (rev 298151)
+++ testing-i686/PKGBUILD   2017-06-07 21:14:03 UTC (rev 298152)
@@ -1,116 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-_qtver=5.9.0
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu' 
'pcre2'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0' 'double-conversion')
-makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgbase/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('267eb2af1a203c087f2113f43b08014d0e2d2cb269295b8602d869a2fad5296c')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix missing private includes https://bugreports.qt.io/browse/QTBUG-37417
-  sed -e '/CMAKE_NO_PRIVATE_INCLUDES\ \=\ true/d' -i 
mkspecs/features/create_cmake.prf
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  echo "INCLUDEPATH += /usr/include/openssl-1.0" >> src/network/network.pro
-  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgbase}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s /usr/bin/$(basename $b) 

[arch-commits] Commit in qt5-base/repos (8 files)

2017-05-31 Thread Evangelos Foutras
Date: Wednesday, May 31, 2017 @ 07:41:58
  Author: foutrelis
Revision: 296882

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

Added:
  qt5-base/repos/staging-i686/PKGBUILD
(from rev 296881, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-i686/rebuild.list
(from rev 296881, qt5-base/trunk/rebuild.list)
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 296881, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-x86_64/rebuild.list
(from rev 296881, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/staging-i686/PKGBUILD
  qt5-base/repos/staging-i686/rebuild.list
  qt5-base/repos/staging-x86_64/PKGBUILD
  qt5-base/repos/staging-x86_64/rebuild.list

-+
 /PKGBUILD   |  258 ++
 /rebuild.list   |   30 
 staging-i686/PKGBUILD   |  129 -
 staging-i686/rebuild.list   |   15 --
 staging-x86_64/PKGBUILD |  129 -
 staging-x86_64/rebuild.list |   15 --
 6 files changed, 288 insertions(+), 288 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-05-31 07:41:48 UTC (rev 296881)
+++ staging-i686/PKGBUILD   2017-05-31 07:41:58 UTC (rev 296882)
@@ -1,129 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-_qtver=5.8.0
-pkgver=${_qtver/-/}
-pkgrel=13.1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0')
-makedepends=('libfbclient' 'libmariadb' 'sqlite' 'unixodbc' 'postgresql-libs' 
'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadb: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgbase/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qt5-base-journald.patch::"https://github.com/qt/qtbase/commit/0c8f3229.patch;
-
plasma-crash-1.patch::https://github.com/qt/qtbase/commit/3bd0fd8f.patch
-
plasma-crash-2.patch::https://github.com/qt/qtbase/commit/0874861b.patch
-
plasma-crash-3.patch::https://github.com/qt/qtbase/commit/baad82d2.patch)
-md5sums=('6e1f7f6fb6333eb66e563b175c4e87e9'
- 'e9ab6de042b599638f506d2974598164'
- '438f85a8ecc0f8c066dc0deb5961b6fa'
- '763a796776f3f8bf46cd4a0ed13d4028'
- 'ffacccebfc17dc5a87724d13cefe38e5')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix logging to systemd journal
-  patch -p1 -i ../qt5-base-journald.patch
-
-  # Fix some Plasma taskbar crashes https://bugs.kde.org/show_bug.cgi?id=342763
-  patch -p1 -i ../plasma-crash-1.patch
-  patch -p1 -i ../plasma-crash-2.patch
-  patch -p1 -i ../plasma-crash-3.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  echo "INCLUDEPATH += /usr/include/openssl-1.0" >> src/network/network.pro
-  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make 

[arch-commits] Commit in qt5-base/repos (8 files)

2017-04-13 Thread Felix Yan
Date: Thursday, April 13, 2017 @ 14:59:03
  Author: felixonmars
Revision: 292692

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

Added:
  qt5-base/repos/testing-i686/PKGBUILD
(from rev 292691, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-i686/rebuild.list
(from rev 292691, qt5-base/trunk/rebuild.list)
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 292691, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/rebuild.list
(from rev 292691, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/testing-i686/PKGBUILD
  qt5-base/repos/testing-i686/rebuild.list
  qt5-base/repos/testing-x86_64/PKGBUILD
  qt5-base/repos/testing-x86_64/rebuild.list

-+
 /PKGBUILD   |  258 ++
 /rebuild.list   |   30 
 testing-i686/PKGBUILD   |  113 --
 testing-i686/rebuild.list   |   15 --
 testing-x86_64/PKGBUILD |  113 --
 testing-x86_64/rebuild.list |   15 --
 6 files changed, 288 insertions(+), 256 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-04-13 14:58:21 UTC (rev 292691)
+++ testing-i686/PKGBUILD   2017-04-13 14:59:03 UTC (rev 292692)
@@ -1,113 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.8.0
-pkgver=${_qtver/-/}
-pkgrel=9
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0')
-makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qt5-base-journald.patch::"https://github.com/qt/qtbase/commit/0c8f3229.patch;
-
plasma-crash-1.patch::https://github.com/qt/qtbase/commit/3bd0fd8f.patch
-
plasma-crash-2.patch::https://github.com/qt/qtbase/commit/0874861b.patch
-
plasma-crash-3.patch::https://github.com/qt/qtbase/commit/baad82d2.patch)
-md5sums=('6e1f7f6fb6333eb66e563b175c4e87e9'
- '160fde81fe882c4241f04634f53691ad'
- '078d8a051c06abf28451fd2cdb7f19ce'
- '92daaa3ebd7cf10ee725b963e44c95a7'
- '76ab122615f1ba2d68c83477f82e389e')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix logging to systemd journal
-  patch -p1 -i ../qt5-base-journald.patch
-
-  # Fix some Plasma taskbar crashes https://bugs.kde.org/show_bug.cgi?id=342763
-  patch -p1 -i ../plasma-crash-1.patch
-  patch -p1 -i ../plasma-crash-2.patch
-  patch -p1 -i ../plasma-crash-3.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  echo "INCLUDEPATH += /usr/include/openssl-1.0" >> src/network/network.pro
-  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-

[arch-commits] Commit in qt5-base/repos (8 files)

2017-03-03 Thread Antonio Rojas
Date: Friday, March 3, 2017 @ 18:47:52
  Author: arojas
Revision: 289943

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

Added:
  qt5-base/repos/staging-i686/PKGBUILD
(from rev 289942, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-i686/rebuild.list
(from rev 289942, qt5-base/trunk/rebuild.list)
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 289942, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-x86_64/rebuild.list
(from rev 289942, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/staging-i686/PKGBUILD
  qt5-base/repos/staging-i686/rebuild.list
  qt5-base/repos/staging-x86_64/PKGBUILD
  qt5-base/repos/staging-x86_64/rebuild.list

-+
 /PKGBUILD   |  226 ++
 /rebuild.list   |   30 +
 staging-i686/PKGBUILD   |  113 -
 staging-i686/rebuild.list   |   15 --
 staging-x86_64/PKGBUILD |  113 -
 staging-x86_64/rebuild.list |   15 --
 6 files changed, 256 insertions(+), 256 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-03-03 18:47:26 UTC (rev 289942)
+++ staging-i686/PKGBUILD   2017-03-03 18:47:52 UTC (rev 289943)
@@ -1,113 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.8.0
-pkgver=${_qtver/-/}
-pkgrel=6
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'openssl-1.0')
-makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qt5-base-journald.patch::"https://github.com/qt/qtbase/commit/0c8f3229.patch;
-
plasma-crash-1.patch::https://github.com/qt/qtbase/commit/3bd0fd8f.patch
-
plasma-crash-2.patch::https://github.com/qt/qtbase/commit/0874861b.patch
-
plasma-crash-3.patch::https://github.com/qt/qtbase/commit/baad82d2.patch)
-md5sums=('6e1f7f6fb6333eb66e563b175c4e87e9'
- '160fde81fe882c4241f04634f53691ad'
- '078d8a051c06abf28451fd2cdb7f19ce'
- '92daaa3ebd7cf10ee725b963e44c95a7'
- '76ab122615f1ba2d68c83477f82e389e')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix logging to systemd journal
-  patch -p1 -i ../qt5-base-journald.patch
-
-  # Fix some Plasma taskbar crashes https://bugs.kde.org/show_bug.cgi?id=342763
-  patch -p1 -i ../plasma-crash-1.patch
-  patch -p1 -i ../plasma-crash-2.patch
-  patch -p1 -i ../plasma-crash-3.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  echo "QMAKE_CXXFLAGS += -I/usr/include/openssl-1.0" >> 
mkspecs/linux-g++/qmake.conf
-  export OPENSSL_LIBS='-L/usr/lib/openssl-1.0 -lssl -lcrypto'
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-

[arch-commits] Commit in qt5-base/repos (8 files)

2017-02-08 Thread Antonio Rojas
Date: Thursday, February 9, 2017 @ 07:47:37
  Author: arojas
Revision: 288277

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

Added:
  qt5-base/repos/extra-i686/PKGBUILD
(from rev 288276, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-i686/rebuild.list
(from rev 288276, qt5-base/trunk/rebuild.list)
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 288276, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/rebuild.list
(from rev 288276, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/extra-i686/PKGBUILD
  qt5-base/repos/extra-i686/rebuild.list
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/rebuild.list

---+
 /PKGBUILD |  220 
 /rebuild.list |   30 ++
 extra-i686/PKGBUILD   |   99 ---
 extra-i686/rebuild.list   |   15 ---
 extra-x86_64/PKGBUILD |   99 ---
 extra-x86_64/rebuild.list |   15 ---
 6 files changed, 250 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-02-09 07:47:04 UTC (rev 288276)
+++ extra-i686/PKGBUILD 2017-02-09 07:47:37 UTC (rev 288277)
@@ -1,99 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.8.0
-pkgver=${_qtver/-/}
-pkgrel=3
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
-makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qt5-base-journald.patch::"https://github.com/qt/qtbase/commit/0c8f3229.patch;)
-md5sums=('6e1f7f6fb6333eb66e563b175c4e87e9'
- '160fde81fe882c4241f04634f53691ad')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix logging to systemd journal
-  patch -p1 -i ../qt5-base-journald.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s /usr/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}

Copied: qt5-base/repos/extra-i686/PKGBUILD (from rev 288276, 
qt5-base/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-02-09 07:47:37 UTC (rev 288277)
@@ -0,0 +1,110 

[arch-commits] Commit in qt5-base/repos (8 files)

2017-01-28 Thread Antonio Rojas
Date: Saturday, January 28, 2017 @ 23:20:39
  Author: arojas
Revision: 287627

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

Added:
  qt5-base/repos/testing-i686/PKGBUILD
(from rev 287626, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-i686/rebuild.list
(from rev 287626, qt5-base/trunk/rebuild.list)
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 287626, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/rebuild.list
(from rev 287626, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/testing-i686/PKGBUILD
  qt5-base/repos/testing-i686/rebuild.list
  qt5-base/repos/testing-x86_64/PKGBUILD
  qt5-base/repos/testing-x86_64/rebuild.list

-+
 /PKGBUILD   |  198 ++
 /rebuild.list   |   28 +
 testing-i686/PKGBUILD   |   95 
 testing-i686/rebuild.list   |9 -
 testing-x86_64/PKGBUILD |   95 
 testing-x86_64/rebuild.list |9 -
 6 files changed, 226 insertions(+), 208 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-01-28 23:19:58 UTC (rev 287626)
+++ testing-i686/PKGBUILD   2017-01-28 23:20:39 UTC (rev 287627)
@@ -1,95 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.8.0
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-md5sums=('6e1f7f6fb6333eb66e563b175c4e87e9')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s /usr/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}

Copied: qt5-base/repos/testing-i686/PKGBUILD (from rev 287626, 
qt5-base/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-28 23:20:39 UTC (rev 287627)
@@ -0,0 +1,99 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 

[arch-commits] Commit in qt5-base/repos (8 files)

2017-01-09 Thread Antonio Rojas
Date: Monday, January 9, 2017 @ 19:37:01
  Author: arojas
Revision: 285603

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
(from rev 285601, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-i686/rebuild.list
(from rev 285601, qt5-base/kde-unstable/rebuild.list)
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 285601, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-x86_64/rebuild.list
(from rev 285602, qt5-base/kde-unstable/rebuild.list)
Deleted:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
  qt5-base/repos/kde-unstable-i686/rebuild.list
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
  qt5-base/repos/kde-unstable-x86_64/rebuild.list

--+
 /PKGBUILD|  190 +
 /rebuild.list|   18 +++
 kde-unstable-i686/PKGBUILD   |   95 --
 kde-unstable-i686/rebuild.list   |9 -
 kde-unstable-x86_64/PKGBUILD |   95 --
 kde-unstable-x86_64/rebuild.list |9 -
 6 files changed, 208 insertions(+), 208 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2017-01-09 19:36:55 UTC (rev 285602)
+++ kde-unstable-i686/PKGBUILD  2017-01-09 19:37:01 UTC (rev 285603)
@@ -1,95 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.8.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-md5sums=('e71df4a4f99f8006e74d63c6a7d61af9')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s /usr/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}

Copied: qt5-base/repos/kde-unstable-i686/PKGBUILD (from rev 285601, 
qt5-base/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2017-01-09 19:37:01 UTC (rev 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-12-14 Thread Antonio Rojas
Date: Wednesday, December 14, 2016 @ 10:19:00
  Author: arojas
Revision: 283145

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

Added:
  qt5-base/repos/testing-i686/
  qt5-base/repos/testing-i686/PKGBUILD
(from rev 283144, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-i686/no-gtk-qpa-on-wayland.patch
(from rev 283144, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/testing-i686/rebuild.list
(from rev 283144, qt5-base/trunk/rebuild.list)
  qt5-base/repos/testing-x86_64/
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 283144, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/no-gtk-qpa-on-wayland.patch
(from rev 283144, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/testing-x86_64/rebuild.list
(from rev 283144, qt5-base/trunk/rebuild.list)

+
 testing-i686/PKGBUILD  |  108 +++
 testing-i686/no-gtk-qpa-on-wayland.patch   |   13 +++
 testing-i686/rebuild.list  |9 ++
 testing-x86_64/PKGBUILD|  108 +++
 testing-x86_64/no-gtk-qpa-on-wayland.patch |   13 +++
 testing-x86_64/rebuild.list|9 ++
 6 files changed, 260 insertions(+)

Copied: qt5-base/repos/testing-i686/PKGBUILD (from rev 283144, 
qt5-base/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-14 10:19:00 UTC (rev 283145)
@@ -0,0 +1,108 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-base
+_qtver=5.7.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
+makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'mtdev: evdev plugin'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+qtbug-49061.patch::"https://github.com/qt/qtbase/commit/494376f9.patch;
+
qtbug-55583.patch::"https://github.com/qt/qtbase/commit/84ea00d4.patch;)
+md5sums=('f0809befe04160fbb73bbf38a06a2073'
+ 'c86af27562bbbe05c3defd63d00130fd'
+ '7b11584d9ea1ccb6c419e9b9816dee63')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix libsystemd-journal detection
+  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
+
+  # Don't unload plugins in QPluginLoader 
https://bugreports.qt.io/browse/QTBUG-49061
+  patch -p1 -i ../qtbug-49061.patch
+
+  # Fix file chooser segfault on gnome/wayland 
https://bugreports.qt.io/browse/QTBUG-55583
+  patch -p1 -i ../qtbug-55583.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-openssl-linked \
+-nomake examples \
+-no-rpath \
+-optimized-qmake \
+-dbus-linked \
+-system-harfbuzz \
+-journald \
+-no-use-gold-linker \
+-reduce-relocations ${SSE2}
+
+  make
+}
+
+package() {
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="${pkgdir}" install
+
+  install -D -m644 LGPL_EXCEPTION.txt \
+

[arch-commits] Commit in qt5-base/repos (8 files)

2016-12-07 Thread Antonio Rojas
Date: Thursday, December 8, 2016 @ 07:49:32
  Author: arojas
Revision: 282936

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

Added:
  qt5-base/repos/testing-i686/
  qt5-base/repos/testing-i686/PKGBUILD
(from rev 282935, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-i686/no-gtk-qpa-on-wayland.patch
(from rev 282935, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/testing-i686/rebuild.list
(from rev 282935, qt5-base/trunk/rebuild.list)
  qt5-base/repos/testing-x86_64/
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 282935, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/no-gtk-qpa-on-wayland.patch
(from rev 282935, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/testing-x86_64/rebuild.list
(from rev 282935, qt5-base/trunk/rebuild.list)

+
 testing-i686/PKGBUILD  |  126 +++
 testing-i686/no-gtk-qpa-on-wayland.patch   |   13 ++
 testing-i686/rebuild.list  |9 +
 testing-x86_64/PKGBUILD|  126 +++
 testing-x86_64/no-gtk-qpa-on-wayland.patch |   13 ++
 testing-x86_64/rebuild.list|9 +
 6 files changed, 296 insertions(+)

Copied: qt5-base/repos/testing-i686/PKGBUILD (from rev 282935, 
qt5-base/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-08 07:49:32 UTC (rev 282936)
@@ -0,0 +1,126 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-base
+_qtver=5.7.0
+pkgver=${_qtver/-/}
+pkgrel=8
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
+makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'mtdev: evdev plugin'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
+
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;
+
qtbug-53237.patch::"https://github.com/qtproject/qtbase/commit/8e889378.patch;
+qtbug-49452.patch::"https://github.com/qt/qtbase/commit/6f423555.patch;
+
qtbase-memory-leak.patch::"https://github.com/qt/qtbase/commit/42283868.patch;
+
qtbug-49061.patch::"https://github.com/qt/qtbase/commit/494376f9.patch;)
+md5sums=('184f9460b40752d71b15b827260580c2'
+ '462f079cd46f869def6858903a718bf5'
+ 'da4fd787ea877516397a027412e975e1'
+ '981255fb1aea0d3c0b5c5f306fe374da'
+ '646aea77ca90031c453a65ef61db55f9'
+ '9842c327b091b360da7a4d90f5fdf4da'
+ 'c86af27562bbbe05c3defd63d00130fd')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix libsystemd-journal detection
+  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
+
+  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
+  patch -p1 -i ../qtbug-53071.patch
+  patch -p1 -i ../qtbug-53071b.patch
+
+  # Fix UNSIGNED values in QMYSQL
+  patch -p1 -i ../qtbug-53237.patch
+
+  # Fix freetype engine performance 
+  patch -p1 -i ../qtbug-49452.patch
+
+  # Fix memory leak
+  patch -p1 -i ../qtbase-memory-leak.patch
+
+  # Don't unload plugins in QPluginLoader 
https://bugreports.qt.io/browse/QTBUG-49061
+  patch -p1 -i ../qtbug-49061.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  

[arch-commits] Commit in qt5-base/repos (8 files)

2016-11-28 Thread Evangelos Foutras
Date: Monday, November 28, 2016 @ 11:57:46
  Author: foutrelis
Revision: 282156

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

Added:
  qt5-base/repos/staging-i686/
  qt5-base/repos/staging-i686/PKGBUILD
(from rev 282155, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-i686/no-gtk-qpa-on-wayland.patch
(from rev 282155, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/staging-i686/rebuild.list
(from rev 282155, qt5-base/trunk/rebuild.list)
  qt5-base/repos/staging-x86_64/
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 282155, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-x86_64/no-gtk-qpa-on-wayland.patch
(from rev 282155, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/staging-x86_64/rebuild.list
(from rev 282155, qt5-base/trunk/rebuild.list)

+
 staging-i686/PKGBUILD  |  121 +++
 staging-i686/no-gtk-qpa-on-wayland.patch   |   13 ++
 staging-i686/rebuild.list  |9 ++
 staging-x86_64/PKGBUILD|  121 +++
 staging-x86_64/no-gtk-qpa-on-wayland.patch |   13 ++
 staging-x86_64/rebuild.list|9 ++
 6 files changed, 286 insertions(+)

Copied: qt5-base/repos/staging-i686/PKGBUILD (from rev 282155, 
qt5-base/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-28 11:57:46 UTC (rev 282156)
@@ -0,0 +1,121 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-base
+_qtver=5.7.0
+pkgver=${_qtver/-/}
+pkgrel=7
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy')
+makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'mtdev: evdev plugin'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
+
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;
+
qtbug-53237.patch::"https://github.com/qtproject/qtbase/commit/8e889378.patch;
+qtbug-49452.patch::"https://github.com/qt/qtbase/commit/6f423555.patch;
+
qtbase-memory-leak.patch::"https://github.com/qt/qtbase/commit/42283868.patch;)
+md5sums=('184f9460b40752d71b15b827260580c2'
+ '462f079cd46f869def6858903a718bf5'
+ 'da4fd787ea877516397a027412e975e1'
+ '981255fb1aea0d3c0b5c5f306fe374da'
+ '646aea77ca90031c453a65ef61db55f9'
+ '9842c327b091b360da7a4d90f5fdf4da')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix libsystemd-journal detection
+  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
+
+  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
+  patch -p1 -i ../qtbug-53071.patch
+  patch -p1 -i ../qtbug-53071b.patch
+
+  # Fix UNSIGNED values in QMYSQL
+  patch -p1 -i ../qtbug-53237.patch
+
+  # Fix freetype engine performance 
+  patch -p1 -i ../qtbug-49452.patch
+
+  # Fix memory leak
+  patch -p1 -i ../qtbase-memory-leak.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+

[arch-commits] Commit in qt5-base/repos (8 files)

2016-11-19 Thread Antonio Rojas
Date: Sunday, November 20, 2016 @ 00:39:36
  Author: arojas
Revision: 281640

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

Added:
  qt5-base/repos/staging-i686/
  qt5-base/repos/staging-i686/PKGBUILD
(from rev 281639, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-i686/no-gtk-qpa-on-wayland.patch
(from rev 281639, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/staging-i686/rebuild.list
(from rev 281639, qt5-base/trunk/rebuild.list)
  qt5-base/repos/staging-x86_64/
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 281639, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-x86_64/no-gtk-qpa-on-wayland.patch
(from rev 281639, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/staging-x86_64/rebuild.list
(from rev 281639, qt5-base/trunk/rebuild.list)

+
 staging-i686/PKGBUILD  |  121 +++
 staging-i686/no-gtk-qpa-on-wayland.patch   |   13 ++
 staging-i686/rebuild.list  |9 ++
 staging-x86_64/PKGBUILD|  121 +++
 staging-x86_64/no-gtk-qpa-on-wayland.patch |   13 ++
 staging-x86_64/rebuild.list|9 ++
 6 files changed, 286 insertions(+)

Copied: qt5-base/repos/staging-i686/PKGBUILD (from rev 281639, 
qt5-base/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-20 00:39:36 UTC (rev 281640)
@@ -0,0 +1,121 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-base
+_qtver=5.7.0
+pkgver=${_qtver/-/}
+pkgrel=5
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy')
+makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'mtdev: evdev plugin'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
+
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;
+
qtbug-53237.patch::"https://github.com/qtproject/qtbase/commit/8e889378.patch;
+qtbug-49452.patch::"https://github.com/qt/qtbase/commit/6f423555.patch;
+no-gtk-qpa-on-wayland.patch)
+md5sums=('184f9460b40752d71b15b827260580c2'
+ '462f079cd46f869def6858903a718bf5'
+ 'da4fd787ea877516397a027412e975e1'
+ '981255fb1aea0d3c0b5c5f306fe374da'
+ '646aea77ca90031c453a65ef61db55f9'
+ '880c9d0060916888ba17b7f9ea41a8c5')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix libsystemd-journal detection
+  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
+
+  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
+  patch -p1 -i ../qtbug-53071.patch
+  patch -p1 -i ../qtbug-53071b.patch
+
+  # Fix UNSIGNED values in QMYSQL
+  patch -p1 -i ../qtbug-53237.patch
+
+  # Fix freetype engine performance 
+  patch -p1 -i ../qtbug-49452.patch
+
+  # Don't use the GTK QPA on Wayland - file chooser segfaults
+  patch -p1 -i ../no-gtk-qpa-on-wayland.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-08-02 Thread Antonio Rojas
Date: Tuesday, August 2, 2016 @ 08:04:43
  Author: arojas
Revision: 272828

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

Added:
  qt5-base/repos/extra-i686/PKGBUILD
(from rev 272827, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-i686/rebuild.list
(from rev 272827, qt5-base/trunk/rebuild.list)
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 272827, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/rebuild.list
(from rev 272827, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/extra-i686/PKGBUILD
  qt5-base/repos/extra-i686/rebuild.list
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/rebuild.list

---+
 /PKGBUILD |  234 
 /rebuild.list |   16 +++
 extra-i686/PKGBUILD   |  112 -
 extra-i686/rebuild.list   |6 -
 extra-x86_64/PKGBUILD |  112 -
 extra-x86_64/rebuild.list |6 -
 6 files changed, 250 insertions(+), 236 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-08-02 08:04:16 UTC (rev 272827)
+++ extra-i686/PKGBUILD 2016-08-02 08:04:43 UTC (rev 272828)
@@ -1,112 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.7.0
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'qtchooser' 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk3: GTK platform plugin')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
-
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;
-
qtbug-53237.patch::"https://github.com/qtproject/qtbase/commit/8e889378.patch;)
-md5sums=('184f9460b40752d71b15b827260580c2'
- '462f079cd46f869def6858903a718bf5'
- 'da4fd787ea877516397a027412e975e1'
- '981255fb1aea0d3c0b5c5f306fe374da')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix libsystemd-journal detection
-  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
-
-  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
-  patch -p1 -i ../qtbug-53071.patch
-  patch -p1 -i ../qtbug-53071b.patch
-
-  # Fix UNSIGNED values in QMYSQL
-  patch -p1 -i ../qtbug-53237.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--bindir /usr/lib/qt/bin \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-06-16 Thread Antonio Rojas
Date: Thursday, June 16, 2016 @ 18:25:49
  Author: arojas
Revision: 270027

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
(from rev 270026, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/kde-unstable-i686/rebuild.list
(from rev 270026, qt5-base/trunk/rebuild.list)
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270026, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/kde-unstable-x86_64/rebuild.list
(from rev 270026, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
  qt5-base/repos/kde-unstable-i686/rebuild.list
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
  qt5-base/repos/kde-unstable-x86_64/rebuild.list

--+
 /PKGBUILD|  224 +
 /rebuild.list|   12 +
 kde-unstable-i686/PKGBUILD   |  111 --
 kde-unstable-i686/rebuild.list   |6 
 kde-unstable-x86_64/PKGBUILD |  111 --
 kde-unstable-x86_64/rebuild.list |6 
 6 files changed, 236 insertions(+), 234 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-06-16 18:25:35 UTC (rev 270026)
+++ kde-unstable-i686/PKGBUILD  2016-06-16 18:25:49 UTC (rev 270027)
@@ -1,111 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.7.0-rc
-pkgver=${_qtver/-/}
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'qtchooser' 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk3: GTK platform plugin')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
-
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;)
-md5sums=('e662dde5b593dd40f84a9dcad66fc9c2'
- '462f079cd46f869def6858903a718bf5'
- 'da4fd787ea877516397a027412e975e1')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix libsystemd-journal detection
-  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
-
-  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
-  patch -p1 -i ../qtbug-53071.patch
-  patch -p1 -i ../qtbug-53071b.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-#  export QTDIR="${srcdir}"/${_pkgfqn}
-#  export LD_LIBRARY_PATH="${QTDIR}"/lib:"${LD_LIBRARY_PATH}"
-#  export QT_PLUGIN_PATH="${QTDIR}"/qtbase/plugins
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--bindir /usr/lib/qt/bin \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-06-14 Thread Antonio Rojas
Date: Tuesday, June 14, 2016 @ 16:13:22
  Author: arojas
Revision: 269682

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

Added:
  qt5-base/repos/extra-i686/PKGBUILD
(from rev 269680, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-i686/rebuild.list
(from rev 269680, qt5-base/trunk/rebuild.list)
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 269680, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/rebuild.list
(from rev 269680, qt5-base/trunk/rebuild.list)
Deleted:
  qt5-base/repos/extra-i686/PKGBUILD
  qt5-base/repos/extra-i686/rebuild.list
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/rebuild.list

---+
 /PKGBUILD |  226 
 /rebuild.list |   12 ++
 extra-i686/PKGBUILD   |  108 -
 extra-i686/rebuild.list   |6 -
 extra-x86_64/PKGBUILD |  108 -
 extra-x86_64/rebuild.list |6 -
 6 files changed, 238 insertions(+), 228 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-14 16:13:17 UTC (rev 269681)
+++ extra-i686/PKGBUILD 2016-06-14 16:13:22 UTC (rev 269682)
@@ -1,108 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.6.1
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'qtchooser' 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk2' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk2: GTK2 plugin')
-conflicts=('qt')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
-
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;)
-md5sums=('b23232190a3df61fe1ba81636987b036'
- '462f079cd46f869def6858903a718bf5'
- 'da4fd787ea877516397a027412e975e1')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix libsystemd-journal detection
-  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
-
-  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
-  patch -p1 -i ../qtbug-53071.patch
-  patch -p1 -i ../qtbug-53071b.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--bindir /usr/lib/qt/bin \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Useful symlinks
-  install -d "${pkgdir}"/usr/bin
-  for b in 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-06-11 Thread Antonio Rojas
Date: Sunday, June 12, 2016 @ 02:35:05
  Author: arojas
Revision: 269366

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
(from rev 269365, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-i686/rebuild.list
(from rev 269365, qt5-base/kde-unstable/rebuild.list)
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 269365, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-x86_64/rebuild.list
(from rev 269365, qt5-base/kde-unstable/rebuild.list)
Deleted:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
  qt5-base/repos/kde-unstable-i686/rebuild.list
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
  qt5-base/repos/kde-unstable-x86_64/rebuild.list

--+
 /PKGBUILD|  222 +
 /rebuild.list|   12 ++
 kde-unstable-i686/PKGBUILD   |  111 --
 kde-unstable-i686/rebuild.list   |6 -
 kde-unstable-x86_64/PKGBUILD |  111 --
 kde-unstable-x86_64/rebuild.list |6 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-06-12 00:34:25 UTC (rev 269365)
+++ kde-unstable-i686/PKGBUILD  2016-06-12 00:35:05 UTC (rev 269366)
@@ -1,111 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.7.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'qtchooser' 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk3: GTK platform plugin')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
-
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;)
-md5sums=('e662dde5b593dd40f84a9dcad66fc9c2'
- '462f079cd46f869def6858903a718bf5'
- 'da4fd787ea877516397a027412e975e1')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix libsystemd-journal detection
-  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
-
-  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
-  patch -p1 -i ../qtbug-53071.patch
-  patch -p1 -i ../qtbug-53071b.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-#  export QTDIR="${srcdir}"/${_pkgfqn}
-#  export LD_LIBRARY_PATH="${QTDIR}"/lib:"${LD_LIBRARY_PATH}"
-#  export QT_PLUGIN_PATH="${QTDIR}"/qtbase/plugins
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--bindir /usr/lib/qt/bin \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-06-04 Thread Antonio Rojas
Date: Saturday, June 4, 2016 @ 10:12:25
  Author: arojas
Revision: 268910

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
(from rev 268909, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-i686/rebuild.list
(from rev 268909, qt5-base/kde-unstable/rebuild.list)
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 268909, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-x86_64/rebuild.list
(from rev 268909, qt5-base/kde-unstable/rebuild.list)
Deleted:
  qt5-base/repos/kde-unstable-i686/PKGBUILD
  qt5-base/repos/kde-unstable-i686/rebuild.list
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
  qt5-base/repos/kde-unstable-x86_64/rebuild.list

--+
 /PKGBUILD|  222 +
 /rebuild.list|   12 ++
 kde-unstable-i686/PKGBUILD   |  111 --
 kde-unstable-i686/rebuild.list   |6 -
 kde-unstable-x86_64/PKGBUILD |  111 --
 kde-unstable-x86_64/rebuild.list |6 -
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-06-04 08:11:41 UTC (rev 268909)
+++ kde-unstable-i686/PKGBUILD  2016-06-04 08:12:25 UTC (rev 268910)
@@ -1,111 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-base
-_qtver=5.7.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
- 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'qtchooser' 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11')
-makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds')
-optdepends=('qt5-svg: to use SVG icon themes'
-'postgresql-libs: PostgreSQL driver'
-'libmariadbclient: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'mtdev: evdev plugin'
-'gtk3: GTK platform plugin')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch;
-
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch;)
-md5sums=('e662dde5b593dd40f84a9dcad66fc9c2'
- '462f079cd46f869def6858903a718bf5'
- 'da4fd787ea877516397a027412e975e1')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-
-  # Fix libsystemd-journal detection
-  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
-
-  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
-  patch -p1 -i ../qtbug-53071.patch
-  patch -p1 -i ../qtbug-53071b.patch
-}
-
-build() {
-  cd ${_pkgfqn}
-
-#  export QTDIR="${srcdir}"/${_pkgfqn}
-#  export LD_LIBRARY_PATH="${QTDIR}"/lib:"${LD_LIBRARY_PATH}"
-#  export QT_PLUGIN_PATH="${QTDIR}"/qtbase/plugins
-
-  # FS#38796
-  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
-
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
--prefix /usr \
--bindir /usr/lib/qt/bin \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations ${SSE2}
-
-  make
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -D -m644 LGPL_EXCEPTION.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find 

[arch-commits] Commit in qt5-base/repos (8 files)

2016-03-04 Thread Bartłomiej Piotrowski
Date: Friday, March 4, 2016 @ 12:14:10
  Author: bpiotrowski
Revision: 260807

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

Added:
  qt5-base/repos/staging-i686/
  qt5-base/repos/staging-i686/PKGBUILD
(from rev 260806, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-i686/qt5-alsa1.11.patch
(from rev 260806, qt5-base/trunk/qt5-alsa1.11.patch)
  qt5-base/repos/staging-i686/rebuild.list
(from rev 260806, qt5-base/trunk/rebuild.list)
  qt5-base/repos/staging-x86_64/
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 260806, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/staging-x86_64/qt5-alsa1.11.patch
(from rev 260806, qt5-base/trunk/qt5-alsa1.11.patch)
  qt5-base/repos/staging-x86_64/rebuild.list
(from rev 260806, qt5-base/trunk/rebuild.list)

---+
 staging-i686/PKGBUILD |  120 
 staging-i686/qt5-alsa1.11.patch   |   11 +++
 staging-i686/rebuild.list |6 +
 staging-x86_64/PKGBUILD   |  120 
 staging-x86_64/qt5-alsa1.11.patch |   11 +++
 staging-x86_64/rebuild.list   |6 +
 6 files changed, 274 insertions(+)

Copied: qt5-base/repos/staging-i686/PKGBUILD (from rev 260806, 
qt5-base/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-04 11:14:10 UTC (rev 260807)
@@ -0,0 +1,120 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-base
+_qtver=5.6.0-rc
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'dbus' 'fontconfig' 
'systemd'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
+ 'qtchooser' 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11')
+makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk2' 'libxkbcommon-x11' 'libinput' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'mtdev: evdev plugin'
+'libxkbcommon-x11: xcb plugin'
+'libsm: xcb plugin'
+'gtk2: GTK2 plugin')
+conflicts=('qt')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
 qt5-alsa1.11.patch)
+md5sums=('82e5bd59946630ec36ab357f1779f411'
+ '5e96b5cfa248b8b071919adb27abc715')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix libsystemd-journal detection
+  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
+
+  # Fix ALSA 1.11 detection
+  patch -p1 -i ../qt5-alsa1.11.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+#  export QTDIR="${srcdir}"/${_pkgfqn}
+#  export LD_LIBRARY_PATH="${QTDIR}"/lib:"${LD_LIBRARY_PATH}"
+#  export QT_PLUGIN_PATH="${QTDIR}"/qtbase/plugins
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-bindir /usr/lib/qt/bin \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-openssl-linked \
+-nomake examples \
+-no-rpath \
+-optimized-qmake \
+-dbus-linked \
+-system-harfbuzz \
+-journald \
+-no-use-gold-linker \
+-reduce-relocations ${SSE2} -debug
+
+  make
+
+  # Fix docs build when qt is not installed
+#  sed -e "s|/usr/lib/qt/bin/qdoc|${QTDIR}/qtbase/bin/qdoc|g" \
+#-i qmake/Makefile.qmake-docs -i src/corelib/qdoc_wrapper.sh
+#  find . -name Makefile \
+#-exec sed -i "s|/usr/lib/qt/bin/qdoc|${QTDIR}/bin/qdoc|g" {} +
+#  sed -i 
"s|/usr/lib/qt/bin/qhelpgenerator|${QTDIR}/qttools/bin/qhelpgenerator|g"