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

2017-07-05 Thread Antonio Rojas
Date: Wednesday, July 5, 2017 @ 21:54:57
  Author: arojas
Revision: 299727

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

Added:
  pyqt4/repos/testing-i686/
  pyqt4/repos/testing-i686/PKGBUILD
(from rev 299726, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/testing-x86_64/
  pyqt4/repos/testing-x86_64/PKGBUILD
(from rev 299726, pyqt4/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  104 ++
 testing-x86_64/PKGBUILD |  104 ++
 2 files changed, 208 insertions(+)

Copied: pyqt4/repos/testing-i686/PKGBUILD (from rev 299726, 
pyqt4/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-07-05 21:54:57 UTC (rev 299727)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt4_gpl_x11-${pkgver}.tar.gz";)
+md5sums=('0112e15858cd7d318a09e7366922f874')
+
+build() {
+  cp -a PyQt4_gpl_x11-${pkgver}{,-py2}
+
+  cd PyQt4_gpl_x11-${pkgver}
+  python configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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 ../PyQt4_gpl_x11-${pkgver}-py2
+  python2 configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt4_gpl_x11-${pkgver}
+  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt4
+  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt4_gpl_x11-${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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd PyQt4_gpl_x11-${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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/testing-x86_64/PKGBUILD (from rev 299726, 
pyqt4/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-07-05 21:54:57 UTC (rev 299727)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.12.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' '

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

2017-02-08 Thread Antonio Rojas
Date: Wednesday, February 8, 2017 @ 08:16:02
  Author: arojas
Revision: 288233

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

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

---+
 /PKGBUILD |  208 
 extra-i686/PKGBUILD   |  106 
 extra-x86_64/PKGBUILD |  106 
 3 files changed, 208 insertions(+), 212 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-02-08 08:15:16 UTC (rev 288232)
+++ extra-i686/PKGBUILD 2017-02-08 08:16:02 UTC (rev 288233)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.12
-pkgrel=3
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('qtwebkit' 'python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 
'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt4_gpl_x11-${pkgver}.tar.gz";)
-md5sums=('eb8c338f2d8842aa7655e8e1aa840bed')
-
-build() {
-  cp -a PyQt4_gpl_x11-${pkgver}{,-py2}
-
-  cd PyQt4_gpl_x11-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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 ../PyQt4_gpl_x11-${pkgver}-py2
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt4_gpl_x11-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qtwebkit: for the QtWebKit bindings'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt4_gpl_x11-${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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qtwebkit: for the QtWebKit bindings'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd PyQt4_gpl_x11-${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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 288232, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-02-08 08:16:02 UTC (rev 288233)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.12
+pkgrel=4
+arch=('i686' 'x86_64')
+url='http://w

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

2017-02-06 Thread Antonio Rojas
Date: Monday, February 6, 2017 @ 18:25:22
  Author: arojas
Revision: 288143

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

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

---+
 /PKGBUILD |  212 
 extra-i686/PKGBUILD   |  104 ---
 extra-x86_64/PKGBUILD |  104 ---
 3 files changed, 212 insertions(+), 208 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-02-06 18:24:49 UTC (rev 288142)
+++ extra-i686/PKGBUILD 2017-02-06 18:25:22 UTC (rev 288143)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.12
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt4_gpl_x11-${pkgver}.tar.gz";)
-md5sums=('eb8c338f2d8842aa7655e8e1aa840bed')
-
-build() {
-  cp -a PyQt4_gpl_x11-${pkgver}{,-py2}
-
-  cd PyQt4_gpl_x11-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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 ../PyQt4_gpl_x11-${pkgver}-py2
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt4_gpl_x11-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt4_gpl_x11-${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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd PyQt4_gpl_x11-${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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 288142, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-02-06 18:25:22 UTC (rev 288143)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.12
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('qtwebkit' 'python-sip' 'python-dbus' 'python

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

2017-02-06 Thread Antonio Rojas
Date: Monday, February 6, 2017 @ 12:07:15
  Author: arojas
Revision: 288123

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

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

---+
 /PKGBUILD |  208 
 extra-i686/PKGBUILD   |  106 
 extra-x86_64/PKGBUILD |  106 
 3 files changed, 208 insertions(+), 212 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-02-06 12:06:15 UTC (rev 288122)
+++ extra-i686/PKGBUILD 2017-02-06 12:07:15 UTC (rev 288123)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.12
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt4_gpl_x11-${pkgver}.tar.gz";)
-md5sums=('eb8c338f2d8842aa7655e8e1aa840bed')
-
-build() {
-  cp -a PyQt4_gpl_x11-${pkgver}{,-py2}
-
-  cd PyQt4_gpl_x11-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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 ../PyQt4_gpl_x11-${pkgver}-py2
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt4_gpl_x11-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt4_gpl_x11-${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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd PyQt4_gpl_x11-${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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 288122, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-02-06 12:07:15 UTC (rev 288123)
@@ -0,0 +1,104 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.12
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://w

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

2017-01-23 Thread Felix Yan
Date: Monday, January 23, 2017 @ 11:26:57
  Author: felixonmars
Revision: 287195

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-23 11:26:19 UTC (rev 287194)
+++ extra-i686/PKGBUILD 2017-01-23 11:26:57 UTC (rev 287195)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.4
-pkgrel=5
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('2fe8265b2ae2fc593241c2c84d09d481')
-
-build() {
-  cp -a PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 287194, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-23 11:26:57 UTC (rev 287195)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.12
+pkgrel=1
+arch=('i686' 'x86_64')
+ur

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

2016-12-26 Thread Bartłomiej Piotrowski
Date: Monday, December 26, 2016 @ 10:10:10
  Author: bpiotrowski
Revision: 284797

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

Added:
  pyqt4/repos/staging-i686/
  pyqt4/repos/staging-i686/PKGBUILD
(from rev 284796, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/staging-x86_64/
  pyqt4/repos/staging-x86_64/PKGBUILD
(from rev 284796, pyqt4/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  106 ++
 staging-x86_64/PKGBUILD |  106 ++
 2 files changed, 212 insertions(+)

Copied: pyqt4/repos/staging-i686/PKGBUILD (from rev 284796, 
pyqt4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-26 10:10:10 UTC (rev 284797)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=5
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('2fe8265b2ae2fc593241c2c84d09d481')
+
+build() {
+  cp -a PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt4
+  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/staging-x86_64/PKGBUILD (from rev 284796, 
pyqt4/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-26 10:10:10 UTC (rev 284797)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=

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

2015-12-06 Thread Evangelos Foutras
Date: Sunday, December 6, 2015 @ 13:33:10
  Author: foutrelis
Revision: 252793

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

Added:
  pyqt4/repos/staging-i686/PKGBUILD
(from rev 252792, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/staging-x86_64/PKGBUILD
(from rev 252792, pyqt4/trunk/PKGBUILD)
Deleted:
  pyqt4/repos/staging-i686/PKGBUILD
  pyqt4/repos/staging-x86_64/PKGBUILD

-+
 /PKGBUILD   |  212 ++
 staging-i686/PKGBUILD   |  106 ---
 staging-x86_64/PKGBUILD |  106 ---
 3 files changed, 212 insertions(+), 212 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-12-06 12:33:00 UTC (rev 252792)
+++ staging-i686/PKGBUILD   2015-12-06 12:33:10 UTC (rev 252793)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.4
-pkgrel=3
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('2fe8265b2ae2fc593241c2c84d09d481')
-
-build() {
-  cp -a PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/staging-i686/PKGBUILD (from rev 252792, 
pyqt4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 12:33:10 UTC (rev 252793)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')

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

2015-12-05 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 06:58:01
  Author: bpiotrowski
Revision: 252611

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

Added:
  pyqt4/repos/staging-i686/
  pyqt4/repos/staging-i686/PKGBUILD
(from rev 252610, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/staging-x86_64/
  pyqt4/repos/staging-x86_64/PKGBUILD
(from rev 252610, pyqt4/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  106 ++
 staging-x86_64/PKGBUILD |  106 ++
 2 files changed, 212 insertions(+)

Copied: pyqt4/repos/staging-i686/PKGBUILD (from rev 252610, 
pyqt4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-06 05:58:01 UTC (rev 252611)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('2fe8265b2ae2fc593241c2c84d09d481')
+
+build() {
+  cp -a PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt4
+  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/staging-x86_64/PKGBUILD (from rev 252610, 
pyqt4/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-06 05:58:01 UTC (rev 252611)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=3

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

2015-09-19 Thread Felix Yan
Date: Sunday, September 20, 2015 @ 04:31:48
  Author: fyan
Revision: 246719

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

Added:
  pyqt4/repos/staging-i686/
  pyqt4/repos/staging-i686/PKGBUILD
(from rev 246718, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/staging-x86_64/
  pyqt4/repos/staging-x86_64/PKGBUILD
(from rev 246718, pyqt4/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  106 ++
 staging-x86_64/PKGBUILD |  106 ++
 2 files changed, 212 insertions(+)

Copied: pyqt4/repos/staging-i686/PKGBUILD (from rev 246718, 
pyqt4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-20 02:31:48 UTC (rev 246719)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('2fe8265b2ae2fc593241c2c84d09d481')
+
+build() {
+  cp -a PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt4
+  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/staging-x86_64/PKGBUILD (from rev 246718, 
pyqt4/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-20 02:31:48 UTC (rev 246719)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=2
+arc

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

2015-06-12 Thread Felix Yan
Date: Saturday, June 13, 2015 @ 06:17:01
  Author: fyan
Revision: 240718

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-13 04:16:25 UTC (rev 240717)
+++ extra-i686/PKGBUILD 2015-06-13 04:17:01 UTC (rev 240718)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.3
-pkgrel=4
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('997c3e443165a89a559e0d96b061bf70')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 240717, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-13 04:17:01 UTC (rev 240718)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='htt

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

2015-03-28 Thread Felix Yan
Date: Saturday, March 28, 2015 @ 18:17:01
  Author: fyan
Revision: 235239

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-03-28 17:16:34 UTC (rev 235238)
+++ extra-i686/PKGBUILD 2015-03-28 17:17:01 UTC (rev 235239)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.3
-pkgrel=3
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('997c3e443165a89a559e0d96b061bf70')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
---no-sip-files \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-
-  install -d "${pkgdir}"/usr/share/sip/PyQt4
-  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 235238, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-03-28 17:17:01 UTC (rev 235239)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.3
+pkgrel=4
+arch=('i686' 'x86_64')
+url='ht

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

2015-02-26 Thread Felix Yan
Date: Friday, February 27, 2015 @ 05:56:21
  Author: fyan
Revision: 232040

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

Added:
  pyqt4/repos/testing-i686/
  pyqt4/repos/testing-i686/PKGBUILD
(from rev 232039, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/testing-x86_64/
  pyqt4/repos/testing-x86_64/PKGBUILD
(from rev 232039, pyqt4/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  106 ++
 testing-x86_64/PKGBUILD |  106 ++
 2 files changed, 212 insertions(+)

Copied: pyqt4/repos/testing-i686/PKGBUILD (from rev 232039, 
pyqt4/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-27 04:56:21 UTC (rev 232040)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.3
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('997c3e443165a89a559e0d96b061bf70')
+
+build() {
+  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure-ng.py \
+--confirm-license \
+--no-sip-files \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
+  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+
+  install -d "${pkgdir}"/usr/share/sip/PyQt4
+  cp -r sip/* "${pkgdir}"/usr/share/sip/PyQt4
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/testing-x86_64/PKGBUILD (from rev 232039, 
pyqt4/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-27 04:56:21 UTC (rev 232040)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.3
+pkgrel=3
+arch

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

2015-02-03 Thread Andrea Scarpino
Date: Tuesday, February 3, 2015 @ 19:32:48
  Author: andrea
Revision: 230402

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-03 18:32:39 UTC (rev 230401)
+++ extra-i686/PKGBUILD 2015-02-03 18:32:48 UTC (rev 230402)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('997c3e443165a89a559e0d96b061bf70')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon-qt4: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 230401, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-03 18:32:48 UTC (rev 230402)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.3
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'pytho

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

2014-11-14 Thread Eric Bélanger
Date: Saturday, November 15, 2014 @ 06:10:38
  Author: eric
Revision: 226275

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-11-15 05:08:09 UTC (rev 226274)
+++ extra-i686/PKGBUILD 2014-11-15 05:10:38 UTC (rev 226275)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('6bbb57f6874701adfc6909702f4a4b02')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 226274, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-11-15 05:10:38 UTC (rev 226275)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon-qt4' 'mesa'
+ 'python2-opengl' '

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

2014-09-13 Thread Andrea Scarpino
Date: Saturday, September 13, 2014 @ 09:47:21
  Author: andrea
Revision: 221524

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-13 07:47:12 UTC (rev 221523)
+++ extra-i686/PKGBUILD 2014-09-13 07:47:21 UTC (rev 221524)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('9d0203c46ad8c838abd5d33b814ca659')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 221523, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-13 07:47:21 UTC (rev 221524)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'q

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

2014-07-04 Thread Andrea Scarpino
Date: Friday, July 4, 2014 @ 16:33:54
  Author: andrea
Revision: 216493

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-07-04 14:33:44 UTC (rev 216492)
+++ extra-i686/PKGBUILD 2014-07-04 14:33:54 UTC (rev 216493)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('8b991f95fec9582cdcc1bf1f4ac02406')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc INSTALL_ROOT="${pkgdir}" install
-  make -C pylupdate INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 216492, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-04 14:33:54 UTC (rev 216493)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistan

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

2014-06-16 Thread Andrea Scarpino
Date: Monday, June 16, 2014 @ 23:35:22
  Author: andrea
Revision: 215219

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-06-16 18:52:23 UTC (rev 215218)
+++ extra-i686/PKGBUILD 2014-06-16 21:35:22 UTC (rev 215219)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.11
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('8b991f95fec9582cdcc1bf1f4ac02406')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure-ng.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure-ng.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 215218, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-06-16 21:35:22 UTC (rev 215219)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' '

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

2014-06-14 Thread Andrea Scarpino
Date: Saturday, June 14, 2014 @ 17:24:37
  Author: andrea
Revision: 215123

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

Added:
  pyqt4/repos/testing-i686/
  pyqt4/repos/testing-i686/PKGBUILD
(from rev 215122, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/testing-x86_64/
  pyqt4/repos/testing-x86_64/PKGBUILD
(from rev 215122, pyqt4/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  101 ++
 testing-x86_64/PKGBUILD |  101 ++
 2 files changed, 202 insertions(+)

Copied: pyqt4/repos/testing-i686/PKGBUILD (from rev 215122, 
pyqt4/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-06-14 15:24:37 UTC (rev 215123)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('8b991f95fec9582cdcc1bf1f4ac02406')
+
+build() {
+  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure-ng.py \
+--confirm-license \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure-ng.py \
+--confirm-license \
+-v /usr/share/sip \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/testing-x86_64/PKGBUILD (from rev 215122, 
pyqt4/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-06-14 15:24:37 UTC (rev 215123)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.11
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-ope

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

2014-03-27 Thread Felix Yan
Date: Friday, March 28, 2014 @ 07:10:07
  Author: fyan
Revision: 20

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-28 06:09:06 UTC (rev 208887)
+++ extra-i686/PKGBUILD 2014-03-28 06:10:07 UTC (rev 20)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.10.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.riverbankcomputing.com/software/pyqt/intro'
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('20940f6b2c957269cdd02d0efe537515')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" install
-
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 208887, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-28 06:10:07 UTC (rev 20)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.4
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtw

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

2014-03-17 Thread Andrea Scarpino
Date: Monday, March 17, 2014 @ 12:01:16
  Author: andrea
Revision: 208060

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

Added:
  pyqt4/repos/staging-i686/
  pyqt4/repos/staging-i686/PKGBUILD
(from rev 208059, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/staging-x86_64/
  pyqt4/repos/staging-x86_64/PKGBUILD
(from rev 208059, pyqt4/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  101 ++
 staging-x86_64/PKGBUILD |  101 ++
 2 files changed, 202 insertions(+)

Copied: pyqt4/repos/staging-i686/PKGBUILD (from rev 208059, 
pyqt4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-03-17 11:01:16 UTC (rev 208060)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('20940f6b2c957269cdd02d0efe537515')
+
+build() {
+  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure.py \
+--confirm-license \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure.py \
+--confirm-license \
+-v /usr/share/sip \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" install
+
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/staging-x86_64/PKGBUILD (from rev 208059, 
pyqt4/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-03-17 11:01:16 UTC (rev 208060)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl

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

2013-08-22 Thread Andrea Scarpino
Date: Thursday, August 22, 2013 @ 16:50:14
  Author: andrea
Revision: 193533

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-22 14:50:05 UTC (rev 193532)
+++ extra-i686/PKGBUILD 2013-08-22 14:50:14 UTC (rev 193533)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.10.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('9257e12fec9b1b21e5a0d76d455d1691')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-  
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-  
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" install
-  
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-  
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 193532, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-22 14:50:14 UTC (rev 193533)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.3
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://www.riverbankcomputing.com/software/pyqt/intro'
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-

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

2013-06-17 Thread Andrea Scarpino
Date: Monday, June 17, 2013 @ 21:05:53
  Author: andrea
Revision: 188683

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-06-17 19:05:41 UTC (rev 188682)
+++ extra-i686/PKGBUILD 2013-06-17 19:05:53 UTC (rev 188683)
@@ -1,101 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: riai  Ben 
-
-pkgbase=pyqt4
-pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
-pkgver=4.10.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://riverbankcomputing.co.uk/software/pyqt/intro";
-license=('GPL')
-makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
- 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
-source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
-md5sums=('9257e12fec9b1b21e5a0d76d455d1691')
-
-build() {
-  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
-
-  cd PyQt-x11-gpl-${pkgver}
-  python configure.py \
---confirm-license \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # 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-x11-gpl-${pkgver}
-  python2 configure.py \
---confirm-license \
--v /usr/share/sip \
---qsci-api \
--q /usr/bin/qmake-qt4
-
-  # Thanks Gerardo for the rpath fix
-  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
-  
-  make
-}
-
-package_pyqt4-common(){
-  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
-  depends=('qt4')
-  replaces=('pyqt-common')
-  conflicts=('pyqt-common')
-  provides=("pyqt-common=${pkgver}")
-  
-  cd PyQt-x11-gpl-${pkgver}
-  make -C pyrcc DESTDIR="${pkgdir}" install
-  make -C pylupdate DESTDIR="${pkgdir}" install
-  
-  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python-pyqt4(){
-  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('pyqt')
-  conflicts=('pyqt')
-  provides=("pyqt=${pkgver}")
-
-  cd PyQt-x11-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/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}
-
-package_python2-pyqt4(){
-  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
-  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
-  optdepends=('phonon: enable audio and video in PyQt applications'
-  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
-  'qscintilla: QScintilla API'
-  'qt-assistant-compat: add PyQt online help in Qt Assistant')
-  replaces=('python2-pyqt')
-  conflicts=('python2-pyqt')
-  provides=("python2-pyqt=${pkgver}")
-
-  cd Py2Qt-x11-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-pyqt4
-  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
-  
-  # Provided by python-pyqt4
-  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
-  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
-  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
-}

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 188682, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-06-17 19:05:53 UTC (rev 188683)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.2
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compa

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

2013-06-17 Thread Andrea Scarpino
Date: Monday, June 17, 2013 @ 20:04:44
  Author: andrea
Revision: 188674

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

Added:
  pyqt4/repos/extra-i686/
  pyqt4/repos/extra-i686/PKGBUILD
(from rev 188673, pyqt4/trunk/PKGBUILD)
  pyqt4/repos/extra-x86_64/
  pyqt4/repos/extra-x86_64/PKGBUILD
(from rev 188673, pyqt4/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |  101 
 extra-x86_64/PKGBUILD |  101 
 2 files changed, 202 insertions(+)

Copied: pyqt4/repos/extra-i686/PKGBUILD (from rev 188673, pyqt4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-06-17 18:04:44 UTC (rev 188674)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtwebkit' 'python2-dbus')
+source=("http://downloads.sourceforge.net/pyqt/PyQt-x11-gpl-${pkgver}.tar.gz";)
+md5sums=('9257e12fec9b1b21e5a0d76d455d1691')
+
+build() {
+  cp -r PyQt-x11-gpl-${pkgver} Py2Qt-x11-gpl-${pkgver}
+
+  cd PyQt-x11-gpl-${pkgver}
+  python configure.py \
+--confirm-license \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # 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-x11-gpl-${pkgver}
+  python2 configure.py \
+--confirm-license \
+-v /usr/share/sip \
+--qsci-api \
+-q /usr/bin/qmake-qt4
+
+  # Thanks Gerardo for the rpath fix
+  find -name 'Makefile' | xargs sed -i 
's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
+  
+  make
+}
+
+package_pyqt4-common(){
+  pkgdesc="Common PyQt files shared between python-pyqt4 and python2-pyqt4"
+  depends=('qt4')
+  replaces=('pyqt-common')
+  conflicts=('pyqt-common')
+  provides=("pyqt-common=${pkgver}")
+  
+  cd PyQt-x11-gpl-${pkgver}
+  make -C pyrcc DESTDIR="${pkgdir}" install
+  make -C pylupdate DESTDIR="${pkgdir}" install
+  
+  install -Dm644 PyQt4.api "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python-pyqt4(){
+  pkgdesc="A set of Python 3.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python-sip' 'python-dbus' 'pyqt4-common')
+  optdepends=('phonon: enable audio and video in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('pyqt')
+  conflicts=('pyqt')
+  provides=("pyqt=${pkgver}")
+
+  cd PyQt-x11-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/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}
+
+package_python2-pyqt4(){
+  pkgdesc="A set of Python 2.x bindings for the Qt toolkit"
+  depends=('qtwebkit' 'python2-sip' 'python2-dbus' 'pyqt4-common')
+  optdepends=('phonon: enable audio and video in PyQt applications'
+  'python2-opengl: enable OpenGL 3D graphics in PyQt applications'
+  'qscintilla: QScintilla API'
+  'qt-assistant-compat: add PyQt online help in Qt Assistant')
+  replaces=('python2-pyqt')
+  conflicts=('python2-pyqt')
+  provides=("python2-pyqt=${pkgver}")
+
+  cd Py2Qt-x11-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-pyqt4
+  mv "${pkgdir}"/usr/bin/{,python2-}pyuic4
+  
+  # Provided by python-pyqt4
+  rm "${pkgdir}"/usr/bin/{pylupdate4,pyrcc4}
+  rm "${pkgdir}"/usr/lib/qt4/plugins/designer/libpyqt4.so
+  rm "${pkgdir}"/usr/share/qt4/qsci/api/python/PyQt4.api
+}

Copied: pyqt4/repos/extra-x86_64/PKGBUILD (from rev 188673, 
pyqt4/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-06-17 18:04:44 UTC (rev 188674)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: riai  Ben 
+
+pkgbase=pyqt4
+pkgname=('pyqt4-common' 'python-pyqt4' 'python2-pyqt4')
+pkgver=4.10.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://riverbankcomputing.co.uk/software/pyqt/intro";
+license=('GPL')
+makedepends=('python-sip' 'python-dbus' 'python2-sip' 'phonon' 'mesa'
+ 'python2-opengl' 'qt-assistant-compat' 'qtweb