[arch-commits] Commit in pyqt5/repos (4 files)

2016-07-30 Thread Felix Yan
Date: Saturday, July 30, 2016 @ 18:24:24
  Author: felixonmars
Revision: 272725

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

Added:
  pyqt5/repos/testing-i686/PKGBUILD
(from rev 272724, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/testing-x86_64/PKGBUILD
(from rev 272724, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/testing-i686/PKGBUILD
  pyqt5/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  226 ++
 testing-i686/PKGBUILD   |  116 ---
 testing-x86_64/PKGBUILD |  116 ---
 3 files changed, 226 insertions(+), 232 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-07-30 18:23:41 UTC (rev 272724)
+++ testing-i686/PKGBUILD   2016-07-30 18:24:24 UTC (rev 272725)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.7
-_pkgver=$pkgver
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity'
- 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webengine' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras')
-source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt5_gpl-$pkgver.tar.gz";)
-md5sums=('e3dc21f31fd714659f0688e1eb31bacf')
-
-prepare() {
-  # The additional include path was removed due to this line, I don't really 
know why they are doing this...
-  sed -i '/target_config.dbus_inc_dirs = \[\]/d' 
PyQt5_gpl-${_pkgver}/configure.py
-
-  cp -a PyQt5_gpl-${_pkgver}{,-py2}
-}
-
-build() {
-  cd "$srcdir"/PyQt5_gpl-${_pkgver}
-  python configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  cd "$srcdir"/PyQt5_gpl-${_pkgver}-py2
-  python2 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt5_gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt5
-  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt5_gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt5_gpl-${_pkgver}-py2
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plu

[arch-commits] Commit in pyqt5/repos (4 files)

2016-07-30 Thread Felix Yan
Date: Saturday, July 30, 2016 @ 17:14:22
  Author: felixonmars
Revision: 272723

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

Added:
  pyqt5/repos/testing-i686/
  pyqt5/repos/testing-i686/PKGBUILD
(from rev 272722, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/testing-x86_64/
  pyqt5/repos/testing-x86_64/PKGBUILD
(from rev 272722, pyqt5/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  116 ++
 testing-x86_64/PKGBUILD |  116 ++
 2 files changed, 232 insertions(+)

Copied: pyqt5/repos/testing-i686/PKGBUILD (from rev 272722, 
pyqt5/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-30 17:14:22 UTC (rev 272723)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.7
+_pkgver=$pkgver
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-connectivity'
+ 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
+ 'qt5-webengine' 'qt5-webkit' 'qt5-websockets' 'qt5-x11extras')
+source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt5_gpl-$pkgver.tar.gz";)
+md5sums=('e3dc21f31fd714659f0688e1eb31bacf')
+
+prepare() {
+  # The additional include path was removed due to this line, I don't really 
know why they are doing this...
+  sed -i '/target_config.dbus_inc_dirs = \[\]/d' 
PyQt5_gpl-${_pkgver}/configure.py
+
+  cp -a PyQt5_gpl-${_pkgver}{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyQt5_gpl-${_pkgver}
+  python configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  cd "$srcdir"/PyQt5_gpl-${_pkgver}-py2
+  python2 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt5_gpl-${_pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt5
+  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt5_gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt5_gpl-${_pkgver}-py2
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  

[arch-commits] Commit in pyqt5/repos (4 files)

2016-04-27 Thread Felix Yan
Date: Wednesday, April 27, 2016 @ 20:36:53
  Author: fyan
Revision: 266304

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

Added:
  pyqt5/repos/testing-i686/
  pyqt5/repos/testing-i686/PKGBUILD
(from rev 266303, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/testing-x86_64/
  pyqt5/repos/testing-x86_64/PKGBUILD
(from rev 266303, pyqt5/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  116 ++
 testing-x86_64/PKGBUILD |  116 ++
 2 files changed, 232 insertions(+)

Copied: pyqt5/repos/testing-i686/PKGBUILD (from rev 266303, 
pyqt5/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-04-27 18:36:53 UTC (rev 266304)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.6
+_pkgver=$pkgver
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
+ 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
+ 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
+source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt5_gpl-$pkgver.tar.gz";)
+md5sums=('dbfc885c0548e024ba5260c4f44e0481')
+
+prepare() {
+  # The additional include path was removed due to this line, I don't really 
know why they are doing this...
+  sed -i '/target_config.dbus_inc_dirs = \[\]/d' 
PyQt5_gpl-${_pkgver}/configure.py
+
+  cp -a PyQt5_gpl-${_pkgver}{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyQt5_gpl-${_pkgver}
+  python configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  cd "$srcdir"/PyQt5_gpl-${_pkgver}-py2
+  python2 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt5_gpl-${_pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt5
+  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt5_gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt5_gpl-${_pkgver}-py2
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  rm "

[arch-commits] Commit in pyqt5/repos (4 files)

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 20:46:54
  Author: foutrelis
Revision: 252975

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

Added:
  pyqt5/repos/staging-i686/
  pyqt5/repos/staging-i686/PKGBUILD
(from rev 252974, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/staging-x86_64/
  pyqt5/repos/staging-x86_64/PKGBUILD
(from rev 252974, pyqt5/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  112 ++
 staging-x86_64/PKGBUILD |  112 ++
 2 files changed, 224 insertions(+)

Copied: pyqt5/repos/staging-i686/PKGBUILD (from rev 252974, 
pyqt5/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 19:46:54 UTC (rev 252975)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.5.1
+_pkgver=$pkgver
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
+ 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
+ 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
+source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt-gpl-$pkgver.tar.gz";)
+md5sums=('586ed481b734c665b52fbb4f32161ff7')
+
+build() {
+  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
+
+  cd PyQt-gpl-${_pkgver}
+  python3 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  ### Python2 version ###
+  cd ../Py2Qt-gpl-${_pkgver}
+  python2 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt-gpl-${_pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt5
+  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt-gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd Py2Qt-gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}

Copied: pyqt5/repos/staging-x86_64/PKGBUILD (from rev 252974, 
pyqt5/trunk/PKG

[arch-commits] Commit in pyqt5/repos (4 files)

2015-10-25 Thread Felix Yan
Date: Monday, October 26, 2015 @ 06:54:38
  Author: fyan
Revision: 249765

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 249764, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 249764, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  224 
 extra-i686/PKGBUILD   |  112 
 extra-x86_64/PKGBUILD |  112 
 3 files changed, 224 insertions(+), 224 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-10-26 05:54:06 UTC (rev 249764)
+++ extra-i686/PKGBUILD 2015-10-26 05:54:38 UTC (rev 249765)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.5
-_pkgver=$pkgver
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
- 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
-source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt-gpl-$pkgver.tar.gz";)
-md5sums=('60c0137b26c9ecbc3db0addb9638dc01')
-
-build() {
-  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
-
-  cd PyQt-gpl-${_pkgver}
-  python3 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${_pkgver}
-  python2 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt5
-  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 249764, pyqt5/trunk/PKGBUILD)
==

[arch-commits] Commit in pyqt5/repos (4 files)

2015-09-20 Thread Felix Yan
Date: Sunday, September 20, 2015 @ 11:15:31
  Author: fyan
Revision: 246994

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

Added:
  pyqt5/repos/staging-i686/
  pyqt5/repos/staging-i686/PKGBUILD
(from rev 246993, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/staging-x86_64/
  pyqt5/repos/staging-x86_64/PKGBUILD
(from rev 246993, pyqt5/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  112 ++
 staging-x86_64/PKGBUILD |  112 ++
 2 files changed, 224 insertions(+)

Copied: pyqt5/repos/staging-i686/PKGBUILD (from rev 246993, 
pyqt5/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-20 09:15:31 UTC (rev 246994)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.5
+_pkgver=$pkgver
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
+ 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
+ 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
+source=("http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt-gpl-$pkgver.tar.gz";)
+md5sums=('60c0137b26c9ecbc3db0addb9638dc01')
+
+build() {
+  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
+
+  cd PyQt-gpl-${_pkgver}
+  python3 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  ### Python2 version ###
+  cd ../Py2Qt-gpl-${_pkgver}
+  python2 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt-gpl-${_pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt5
+  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt-gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd Py2Qt-gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}

Copied: pyqt5/repos/staging-x86_64/PKGBUILD (from rev 246993, 
pyqt5/trunk/PKGBUILD

[arch-commits] Commit in pyqt5/repos (4 files)

2015-07-22 Thread Felix Yan
Date: Wednesday, July 22, 2015 @ 17:53:16
  Author: fyan
Revision: 242439

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 242438, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 242438, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  224 
 extra-i686/PKGBUILD   |  112 
 extra-x86_64/PKGBUILD |  112 
 3 files changed, 224 insertions(+), 224 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-07-22 15:52:45 UTC (rev 242438)
+++ extra-i686/PKGBUILD 2015-07-22 15:53:16 UTC (rev 242439)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.4.2
-_pkgver=$pkgver
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
- 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${_pkgver}/PyQt-gpl-${_pkgver}.tar.gz";)
-md5sums=('33936458544b69251a8f4a2308d469d3')
-
-build() {
-  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
-
-  cd PyQt-gpl-${_pkgver}
-  python3 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${_pkgver}
-  python2 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt5
-  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 242438, pyqt5/trunk/PKGBUILD)

[arch-commits] Commit in pyqt5/repos (4 files)

2015-06-12 Thread Felix Yan
Date: Saturday, June 13, 2015 @ 07:02:29
  Author: fyan
Revision: 240720

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 240719, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 240719, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  224 
 extra-i686/PKGBUILD   |  113 
 extra-x86_64/PKGBUILD |  113 
 3 files changed, 224 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-13 05:01:51 UTC (rev 240719)
+++ extra-i686/PKGBUILD 2015-06-13 05:02:29 UTC (rev 240720)
@@ -1,113 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.4.1
-_pkgver=$pkgver
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
- 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${_pkgver}/PyQt-gpl-${_pkgver}.tar.gz";)
-md5sums=('a07bd7c426c7cda39f9a5072ee724aba')
-
-build() {
-  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
-
-  cd PyQt-gpl-${_pkgver}
-  python3 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${_pkgver}
-  python2 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt5
-  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 240719, pyqt5/t

[arch-commits] Commit in pyqt5/repos (4 files)

2015-03-28 Thread Felix Yan
Date: Saturday, March 28, 2015 @ 18:29:29
  Author: fyan
Revision: 235241

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 235240, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 235240, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  226 
 extra-i686/PKGBUILD   |  113 
 extra-x86_64/PKGBUILD |  113 
 3 files changed, 226 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-03-28 17:29:00 UTC (rev 235240)
+++ extra-i686/PKGBUILD 2015-03-28 17:29:29 UTC (rev 235241)
@@ -1,113 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.4.1
-_pkgver=$pkgver
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
- 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
- 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${_pkgver}/PyQt-gpl-${_pkgver}.tar.gz";)
-md5sums=('a07bd7c426c7cda39f9a5072ee724aba')
-
-build() {
-  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
-
-  cd PyQt-gpl-${_pkgver}
-  python3 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${_pkgver}
-  python2 configure.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt5
-  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 235240, pyqt5/

[arch-commits] Commit in pyqt5/repos (4 files)

2015-02-26 Thread Felix Yan
Date: Friday, February 27, 2015 @ 05:53:13
  Author: fyan
Revision: 232038

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

Added:
  pyqt5/repos/testing-i686/
  pyqt5/repos/testing-i686/PKGBUILD
(from rev 232037, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/testing-x86_64/
  pyqt5/repos/testing-x86_64/PKGBUILD
(from rev 232037, pyqt5/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  113 ++
 testing-x86_64/PKGBUILD |  113 ++
 2 files changed, 226 insertions(+)

Copied: pyqt5/repos/testing-i686/PKGBUILD (from rev 232037, 
pyqt5/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-27 04:53:13 UTC (rev 232038)
@@ -0,0 +1,113 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.4.1
+_pkgver=$pkgver
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-connectivity' 'qt5-enginio'
+ 'qt5-multimedia' 'qt5-tools' 'qt5-serialport' 'qt5-svg'
+ 'qt5-webengine' 'qt5-websockets' 'qt5-x11extras')
+source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${_pkgver}/PyQt-gpl-${_pkgver}.tar.gz";)
+md5sums=('a07bd7c426c7cda39f9a5072ee724aba')
+
+build() {
+  cp -a PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
+
+  cd PyQt-gpl-${_pkgver}
+  python3 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  ### Python2 version ###
+  cd ../Py2Qt-gpl-${_pkgver}
+  python2 configure.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt-gpl-${_pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt5
+  cp -a sip/* "${pkgdir}"/usr/share/sip/PyQt5
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt-gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd Py2Qt-gpl-${_pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}

Copied: pyqt5/repos/testing-x86_64/PKGBUILD (from rev 2320

[arch-commits] Commit in pyqt5/repos (4 files)

2015-01-10 Thread Andrea Scarpino
Date: Saturday, January 10, 2015 @ 12:31:02
  Author: andrea
Revision: 228889

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 22, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 22, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  218 
 extra-i686/PKGBUILD   |  108 ---
 extra-x86_64/PKGBUILD |  108 ---
 3 files changed, 218 insertions(+), 216 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-10 11:30:41 UTC (rev 22)
+++ extra-i686/PKGBUILD 2015-01-10 11:31:02 UTC (rev 228889)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.4.0
-_pkgver=5.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${_pkgver}/PyQt-gpl-${_pkgver}.tar.gz";)
-md5sums=('7f2eb79eaf3d7e5e7df5a4e9c8c9340e')
-
-build() {
-  cp -r PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
-
-  cd PyQt-gpl-${_pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${_pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 22, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-10 11:31:02 UTC (rev 22888

[arch-commits] Commit in pyqt5/repos (4 files)

2014-12-27 Thread Andrea Scarpino
Date: Saturday, December 27, 2014 @ 09:43:03
  Author: andrea
Revision: 228076

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 228075, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 228075, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  216 
 extra-i686/PKGBUILD   |  109 
 extra-x86_64/PKGBUILD |  109 
 3 files changed, 216 insertions(+), 218 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-27 08:42:52 UTC (rev 228075)
+++ extra-i686/PKGBUILD 2014-12-27 08:43:03 UTC (rev 228076)
@@ -1,109 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.4.0s10c73f88bfd5
-_pkgver=5.4-snapshot-10c73f88bfd5
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-#source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-source=("http://www.riverbankcomputing.com/static/Downloads/PyQt5/PyQt-gpl-${_pkgver}.tar.gz";)
-md5sums=('85d953ec2e2d7102b67f211135c7ee7c')
-
-build() {
-  cp -r PyQt-gpl-${_pkgver} Py2Qt-gpl-${_pkgver}
-
-  cd PyQt-gpl-${_pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${_pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${_pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${_pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 228075, pyqt5/trunk/PKGBUILD)

[arch-commits] Commit in pyqt5/repos (4 files)

2014-12-14 Thread Andrea Scarpino
Date: Sunday, December 14, 2014 @ 10:21:13
  Author: andrea
Revision: 227602

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 227601, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 227601, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  218 
 extra-i686/PKGBUILD   |  107 ---
 extra-x86_64/PKGBUILD |  107 ---
 3 files changed, 218 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-14 09:21:02 UTC (rev 227601)
+++ extra-i686/PKGBUILD 2014-12-14 09:21:13 UTC (rev 227602)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.3.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('81ef608fa4f3961918106d0ca07aa68a')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 227601, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-14 09:21:13 UTC (rev 227602)
@@ -0,0 +1,109 @@
+#

[arch-commits] Commit in pyqt5/repos (4 files)

2014-09-13 Thread Andrea Scarpino
Date: Saturday, September 13, 2014 @ 09:48:41
  Author: andrea
Revision: 221526

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 221525, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 221525, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-13 07:48:32 UTC (rev 221525)
+++ extra-i686/PKGBUILD 2014-09-13 07:48:41 UTC (rev 221526)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.3.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('c24b1a4040292fcfdbf128a9a5a38e66')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 221525, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-13 07:48:41 UTC (rev 221526)
@@ -0,0 +1,107 

[arch-commits] Commit in pyqt5/repos (4 files)

2014-07-04 Thread Andrea Scarpino
Date: Friday, July 4, 2014 @ 16:34:16
  Author: andrea
Revision: 216495

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 216494, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 216494, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-04 14:34:08 UTC (rev 216494)
+++ extra-i686/PKGBUILD 2014-07-04 14:34:16 UTC (rev 216495)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('1e00c13e3627a3568d7f7dbc608c6525')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 216494, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-04 14:34:16 UTC (rev 216495)
@@ -0,0 +1,107 @@
+# $Id$

[arch-commits] Commit in pyqt5/repos (4 files)

2014-06-14 Thread Andrea Scarpino
Date: Saturday, June 14, 2014 @ 17:46:49
  Author: andrea
Revision: 215132

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 215131, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 215131, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-14 15:46:39 UTC (rev 215131)
+++ extra-i686/PKGBUILD 2014-06-14 15:46:49 UTC (rev 215132)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.2.1
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('8ab34b17b7d76ad613ff3af3c59e0c20')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 215131, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-14 15:46:49 UTC (rev 215132)
@@ -0,0 +1,107 @@
+#

[arch-commits] Commit in pyqt5/repos (4 files)

2014-03-27 Thread Felix Yan
Date: Friday, March 28, 2014 @ 07:38:37
  Author: fyan
Revision: 208890

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 208889, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 208889, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-28 06:37:30 UTC (rev 208889)
+++ extra-i686/PKGBUILD 2014-03-28 06:38:37 UTC (rev 208890)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.2.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('8ab34b17b7d76ad613ff3af3c59e0c20')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 208889, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-28 06:38:37 UTC (rev 208890)
@@ -0,0 +1,107 @@
+# $I

[arch-commits] Commit in pyqt5/repos (4 files)

2014-03-17 Thread Andrea Scarpino
Date: Monday, March 17, 2014 @ 15:04:42
  Author: andrea
Revision: 208066

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

Added:
  pyqt5/repos/staging-i686/
  pyqt5/repos/staging-i686/PKGBUILD
(from rev 208065, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/staging-x86_64/
  pyqt5/repos/staging-x86_64/PKGBUILD
(from rev 208065, pyqt5/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  107 ++
 staging-x86_64/PKGBUILD |  107 ++
 2 files changed, 214 insertions(+)

Copied: pyqt5/repos/staging-i686/PKGBUILD (from rev 208065, 
pyqt5/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-03-17 14:04:42 UTC (rev 208066)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.2.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
+ 'qt5-svg' 'qt5-serialport')
+source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
+md5sums=('8ab34b17b7d76ad613ff3af3c59e0c20')
+
+build() {
+  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
+
+  cd PyQt-gpl-${pkgver}
+  python3 configure.py \
+--confirm-license \
+-v /usr/share/sip/PyQt5 \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  ### Python2 version ###
+  cd ../Py2Qt-gpl-${pkgver}
+  python2 configure.py \
+--confirm-license \
+-v /usr/share/sip/Py2-PyQt5 \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt-gpl-${pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd PyQt-gpl-${pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin'
+  'qt5-serialport: QtSerialPort')
+
+  cd Py2Qt-gpl-${pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}

Copied: pyqt5/repos/staging-x86_64/PKGBUILD (from rev 208065, 
pyqt5/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-03-17 14:04:42 UTC (rev 208

[arch-commits] Commit in pyqt5/repos (4 files)

2014-01-09 Thread Andrea Scarpino
Date: Thursday, January 9, 2014 @ 09:20:28
  Author: andrea
Revision: 203385

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 203384, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 203384, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-01-09 08:20:19 UTC (rev 203384)
+++ extra-i686/PKGBUILD 2014-01-09 08:20:28 UTC (rev 203385)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.1.1
-pkgrel=3
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('10d41924d5252b75f3f9fe1a7c193e6d')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 203384, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-01-09 08:20:28 UTC (rev 203385)
@@ -0,0 +1,107 @@

[arch-commits] Commit in pyqt5/repos (4 files)

2013-10-19 Thread Andrea Scarpino
Date: Saturday, October 19, 2013 @ 14:28:10
  Author: andrea
Revision: 196797

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 196796, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 196796, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-19 12:28:00 UTC (rev 196796)
+++ extra-i686/PKGBUILD 2013-10-19 12:28:10 UTC (rev 196797)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.1.1
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('10d41924d5252b75f3f9fe1a7c193e6d')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 196796, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-19 12:28:10 UTC (rev 196797)
@@ -0,0 +1,107 @@

[arch-commits] Commit in pyqt5/repos (4 files)

2013-10-18 Thread Andrea Scarpino
Date: Friday, October 18, 2013 @ 10:36:23
  Author: andrea
Revision: 196761

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 196760, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 196760, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  107 
 extra-x86_64/PKGBUILD |  107 
 3 files changed, 214 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-18 08:36:15 UTC (rev 196760)
+++ extra-i686/PKGBUILD 2013-10-18 08:36:23 UTC (rev 196761)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.1.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg' 'qt5-serialport')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('10d41924d5252b75f3f9fe1a7c193e6d')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin'
-  'qt5-serialport: QtSerialPort')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 196760, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-18 08:36:23 UTC (rev 196761)
@@ -0,0 +1,107 @@
+

[arch-commits] Commit in pyqt5/repos (4 files)

2013-10-16 Thread Andrea Scarpino
Date: Wednesday, October 16, 2013 @ 17:54:35
  Author: andrea
Revision: 196703

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

Added:
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 196702, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 196702, pyqt5/trunk/PKGBUILD)
Deleted:
  pyqt5/repos/extra-i686/PKGBUILD
  pyqt5/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  214 
 extra-i686/PKGBUILD   |  105 ---
 extra-x86_64/PKGBUILD |  105 ---
 3 files changed, 214 insertions(+), 210 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-16 15:54:27 UTC (rev 196702)
+++ extra-i686/PKGBUILD 2013-10-16 15:54:35 UTC (rev 196703)
@@ -1,105 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Yichao Yu 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt5
-pkgname=pyqt5
-pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
-pkgver=5.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
- 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
- 'qt5-svg')
-source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
-md5sums=('056f6232bf9ea92baf86e812fd1669f8')
-
-build() {
-  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
-
-  cd PyQt-gpl-${pkgver}
-  python3 configure.py \
---confirm-license \
--v /usr/share/sip/PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-
-  ### Python2 version ###
-  cd ../Py2Qt-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip/Py2-PyQt5 \
---qsci-api \
--q /usr/bin/qmake-qt5
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt5-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
-  depends=('qt5-base')
-
-  cd PyQt-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python-pyqt5(){
-  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
-  depends=('python-sip' 'pyqt5-common' 'python' 'python')
-  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin')
-
-  cd PyQt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Provided by pyqt-common
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}
-
-package_python2-pyqt5(){
-  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
-  depends=('python2-sip' 'pyqt5-common' 'python2')
-  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'python-dbus: for python-dbus mainloop support'
-  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
-  'qt5-tools: QtHelp, QtDesigner'
-  'qt5-svg: QtSvg'
-  'qt5-webkit: QtWebKit, QtWebKitWidgets'
-  'qt5-xmlpatterns: QtXmlPatterns'
-  'qt5-declarative: QtQml, qmlplugin')
-
-  cd Py2Qt-gpl-${pkgver}
-  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
-  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
-
-  # Fix conflicts with python-pyqt5
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
-
-  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
-  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
-  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
-  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
-}

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 196702, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-16 15:54:35 UTC (rev 196703)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+

[arch-commits] Commit in pyqt5/repos (4 files)

2013-10-03 Thread Andrea Scarpino
Date: Thursday, October 3, 2013 @ 12:38:53
  Author: andrea
Revision: 195876

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

Added:
  pyqt5/repos/extra-i686/
  pyqt5/repos/extra-i686/PKGBUILD
(from rev 195875, pyqt5/trunk/PKGBUILD)
  pyqt5/repos/extra-x86_64/
  pyqt5/repos/extra-x86_64/PKGBUILD
(from rev 195875, pyqt5/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |  105 
 extra-x86_64/PKGBUILD |  105 
 2 files changed, 210 insertions(+)

Copied: pyqt5/repos/extra-i686/PKGBUILD (from rev 195875, pyqt5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-03 10:38:53 UTC (rev 195876)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt5
+pkgname=pyqt5
+pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
+pkgver=5.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python2-sip' 'python-opengl' 'python2-opengl'
+ 'python2-dbus' 'python-dbus' 'qt5-multimedia' 'qt5-tools'
+ 'qt5-svg')
+source=("http://downloads.sourceforge.net/project/pyqt/PyQt5/PyQt-${pkgver}/PyQt-gpl-${pkgver}.tar.gz";)
+md5sums=('056f6232bf9ea92baf86e812fd1669f8')
+
+build() {
+  cp -r PyQt-gpl-${pkgver} Py2Qt-gpl-${pkgver}
+
+  cd PyQt-gpl-${pkgver}
+  python3 configure.py \
+--confirm-license \
+-v /usr/share/sip/PyQt5 \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+
+  ### Python2 version ###
+  cd ../Py2Qt-gpl-${pkgver}
+  python2 configure.py \
+--confirm-license \
+-v /usr/share/sip/Py2-PyQt5 \
+--qsci-api \
+-q /usr/bin/qmake-qt5
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt5-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt5 and python2-pyqt5"
+  depends=('qt5-base')
+
+  cd PyQt-gpl-${pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt5.api "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python-pyqt5(){
+  pkgdesc="A set of Python 3.x bindings for the Qt5 toolkit"
+  depends=('python-sip' 'pyqt5-common' 'python' 'python')
+  optdepends=('python-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin')
+
+  cd PyQt-gpl-${pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Provided by pyqt-common
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}
+
+package_python2-pyqt5(){
+  pkgdesc="A set of Python 2.x bindings for the Qt5 toolkit"
+  depends=('python2-sip' 'pyqt5-common' 'python2')
+  optdepends=('python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'python-dbus: for python-dbus mainloop support'
+  'qt5-multimedia: QtMultimedia, QtMultimediaWidgets'
+  'qt5-tools: QtHelp, QtDesigner'
+  'qt5-svg: QtSvg'
+  'qt5-webkit: QtWebKit, QtWebKitWidgets'
+  'qt5-xmlpatterns: QtXmlPatterns'
+  'qt5-declarative: QtQml, qmlplugin')
+
+  cd Py2Qt-gpl-${pkgver}
+  # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use 
DESTDIR
+  make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
+
+  # Fix conflicts with python-pyqt5
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic5
+
+  rm "${pkgdir}"/usr/bin/{pylupdate5,pyrcc5}
+  rm "${pkgdir}"/usr/lib/qt/plugins/designer/libpyqt5.so
+  rm "${pkgdir}"/usr/lib/qt/plugins/PyQt5/libpyqt5qmlplugin.so
+  rm "${pkgdir}"/usr/share/qt/qsci/api/python/PyQt5.api
+}

Copied: pyqt5/repos/extra-x86_64/PKGBUILD (from rev 195875, 
pyqt5/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-03 10:38:53 UTC (rev 195876)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Yichao Yu 
+# Contributor: Douglas Soares de Andrade 
+# Contrib