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

2013-08-14 Thread Andrea Scarpino
Date: Wednesday, August 14, 2013 @ 08:57:42
  Author: andrea
Revision: 192565

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 192564, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 192564, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   87 ++
 testing-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 192564, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-14 06:57:42 UTC (rev 192565)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.11.0
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('f7d11a316d7985f510926cadf0bdb0d27d110a8e')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 192564, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-08-14 06:57:42 UTC (rev 192565)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.11.0
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('f7d11a316d7985f510926cadf0bdb0d27d110a8e')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake 

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

2013-07-25 Thread Andrea Scarpino
Date: Thursday, July 25, 2013 @ 15:16:51
  Author: andrea
Revision: 191400

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 191399, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 191399, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-25 13:16:41 UTC (rev 191399)
+++ kde-unstable-i686/PKGBUILD  2013-07-25 13:16:51 UTC (rev 191400)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.95
-pkgrel=2
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 191399, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-25 13:16:51 UTC (rev 191400)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.97
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('fcfd6b719174975e338f72c9403911ff4b89d4a6')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:21:12
  Author: svenstaro
Revision: 190871

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 190870, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190870, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-18 22:21:06 UTC (rev 190870)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:12 UTC (rev 190871)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.95
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 190870, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-18 22:21:12 UTC (rev 190871)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.95
+pkgrel=2
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-07-16 Thread Sven-Hendrik Haase
Date: Tuesday, July 16, 2013 @ 20:16:41
  Author: svenstaro
Revision: 190155

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 190154, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190154, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-16 18:16:30 UTC (rev 190154)
+++ kde-unstable-i686/PKGBUILD  2013-07-16 18:16:41 UTC (rev 190155)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.90
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('73cb7b94ca2461fcf972b1b56fea261a3974fa16')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 190154, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-16 18:16:41 UTC (rev 190155)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.95
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-07-16 Thread Sven-Hendrik Haase
Date: Tuesday, July 16, 2013 @ 21:31:13
  Author: svenstaro
Revision: 190476

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 190475, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190475, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-16 19:30:59 UTC (rev 190475)
+++ kde-unstable-i686/PKGBUILD  2013-07-16 19:31:13 UTC (rev 190476)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.95
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 190475, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-16 19:31:13 UTC (rev 190476)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.95
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-07-16 Thread Sven-Hendrik Haase
Date: Tuesday, July 16, 2013 @ 22:16:27
  Author: svenstaro
Revision: 190641

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 190640, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 190640, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-07-16 20:16:16 UTC (rev 190640)
+++ kde-unstable-i686/PKGBUILD  2013-07-16 20:16:27 UTC (rev 190641)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.95
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 190640, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-07-16 20:16:27 UTC (rev 190641)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.95
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b32bf8d7e6f2033f2694a6cc1c3c8d24a0fcc346')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-07-03 Thread Andrea Scarpino
Date: Wednesday, July 3, 2013 @ 10:55:19
  Author: andrea
Revision: 189346

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 189345, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 189345, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   87 ++
 staging-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 189345, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-07-03 08:55:19 UTC (rev 189346)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.5
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('1e474e5d15756a6846902c11d6a7c95c5ca688da')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 189345, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-07-03 08:55:19 UTC (rev 189346)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.5
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('1e474e5d15756a6846902c11d6a7c95c5ca688da')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake 

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

2013-06-28 Thread Andrea Scarpino
Date: Friday, June 28, 2013 @ 15:46:03
  Author: andrea
Revision: 189018

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 189017, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 189017, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-06-28 13:45:54 UTC (rev 189017)
+++ kde-unstable-i686/PKGBUILD  2013-06-28 13:46:03 UTC (rev 189018)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.80
-pkgrel=2
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
- 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('bc86ea8658253e8e1da7e8f934587935893610b5')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'python-pyqt4' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt4' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 189017, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-06-28 13:46:03 UTC (rev 189018)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.90
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('73cb7b94ca2461fcf972b1b56fea261a3974fa16')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  

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

2013-06-18 Thread Andrea Scarpino
Date: Tuesday, June 18, 2013 @ 12:46:16
  Author: andrea
Revision: 188703

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 188702, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 188702, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|  174 +
 kde-unstable-i686/PKGBUILD   |   87 
 kde-unstable-x86_64/PKGBUILD |   87 
 3 files changed, 174 insertions(+), 174 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2013-06-18 10:31:18 UTC (rev 188702)
+++ kde-unstable-i686/PKGBUILD  2013-06-18 10:46:16 UTC (rev 188703)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.80
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('bc86ea8658253e8e1da7e8f934587935893610b5')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 188702, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-06-18 10:46:16 UTC (rev 188703)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.80
+pkgrel=2
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt4'
+ 'python-pyqt4' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('bc86ea8658253e8e1da7e8f934587935893610b5')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  

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

2013-06-13 Thread Andrea Scarpino
Date: Thursday, June 13, 2013 @ 20:46:56
  Author: andrea
Revision: 188268

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

Added:
  kdebindings-python/repos/kde-unstable-i686/
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 188267, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 188267, kdebindings-python/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   87 +
 kde-unstable-x86_64/PKGBUILD |   87 +
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 188267, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2013-06-13 18:46:56 UTC (rev 188268)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.80
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('bc86ea8658253e8e1da7e8f934587935893610b5')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 188267, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2013-06-13 18:46:56 UTC (rev 188268)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.80
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('bc86ea8658253e8e1da7e8f934587935893610b5')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd 

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

2013-06-04 Thread Sven-Hendrik Haase
Date: Wednesday, June 5, 2013 @ 07:15:46
  Author: svenstaro
Revision: 187197

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 187196, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 187196, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   87 ++
 staging-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 187196, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-06-05 05:15:46 UTC (rev 187197)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.4
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('4243f60d549b75ad734141ad2bfef884d12d014e')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 187196, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-06-05 05:15:46 UTC (rev 187197)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.4
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('4243f60d549b75ad734141ad2bfef884d12d014e')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+

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

2013-05-07 Thread Andrea Scarpino
Date: Tuesday, May 7, 2013 @ 18:30:23
  Author: andrea
Revision: 184625

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 184624, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 184624, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   87 ++
 testing-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 184624, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-07 16:30:23 UTC (rev 184625)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.3
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('71dfb717cafc40331118b2b98c9b4075cd9b1c0d')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 184624, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-07 16:30:23 UTC (rev 184625)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.3
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('71dfb717cafc40331118b2b98c9b4075cd9b1c0d')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+

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

2013-04-03 Thread Sven-Hendrik Haase
Date: Thursday, April 4, 2013 @ 05:54:16
  Author: svenstaro
Revision: 181428

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 181427, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 181427, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   87 ++
 staging-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 181427, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-04 03:54:16 UTC (rev 181428)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.2
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('a17d533fca8126970ec8886f55297f1005df3eb5')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 181427, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-04-04 03:54:16 UTC (rev 181428)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.2
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('a17d533fca8126970ec8886f55297f1005df3eb5')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+

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

2013-03-05 Thread Andrea Scarpino
Date: Tuesday, March 5, 2013 @ 16:22:35
  Author: andrea
Revision: 179335

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

Added:
  kdebindings-python/repos/extra-i686/PKGBUILD
(from rev 179334, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/extra-x86_64/PKGBUILD
(from rev 179334, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/extra-i686/PKGBUILD
  kdebindings-python/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  174 
 extra-x86_64/PKGBUILD |  174 
 2 files changed, 174 insertions(+), 174 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-05 15:22:22 UTC (rev 179334)
+++ extra-i686/PKGBUILD 2013-03-05 15:22:35 UTC (rev 179335)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2'
- 'kdebindings-python-common')
-pkgver=4.10.0
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
- 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('d587d16363d2184320faf3636ac92f9b50ef5720')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYKDEUIC4_ALTINSTALL=TRUE
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-  
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Provided by kdebindings-python-common
-  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
-  rm -r ${pkgdir}/usr/share/sip/PyKDE4
-
-  # pykdeuic4 should point to the python3 version
-  #rm ${pkgdir}/usr/bin/pykdeuic4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}
-
-package_kdebindings-python-common() {
-  pkgdesc=Common files shared between python2 and python3 kdebindings
-  depends=('qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  rm -r ${pkgdir}/usr/{bin,lib}
-}

Copied: kdebindings-python/repos/extra-i686/PKGBUILD (from rev 179334, 
kdebindings-python/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-05 15:22:35 UTC (rev 179335)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.1
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('69a0562e3325508631fde4f24e01d2e3f8907b74')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+

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

2013-02-06 Thread Andrea Scarpino
Date: Wednesday, February 6, 2013 @ 09:33:16
  Author: andrea
Revision: 177101

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 177100, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 177100, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   87 ++
 testing-x86_64/PKGBUILD |   87 ++
 2 files changed, 174 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 177100, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-02-06 08:33:16 UTC (rev 177101)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.0
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('d587d16363d2184320faf3636ac92f9b50ef5720')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'kdebindings-python-common')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+  
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  ln -s /usr/bin/pykdeuic4-3.3 ${pkgdir}/usr/bin/pykdeuic4
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'kdebindings-python-common')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Provided by kdebindings-python-common
+  rm -r ${pkgdir}/usr/share/apps/pykde4/examples
+  rm -r ${pkgdir}/usr/share/sip/PyKDE4
+
+  # pykdeuic4 should point to the python3 version
+  #rm ${pkgdir}/usr/bin/pykdeuic4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}
+
+package_kdebindings-python-common() {
+  pkgdesc=Common files shared between python2 and python3 kdebindings
+  depends=('qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  rm -r ${pkgdir}/usr/{bin,lib}
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 177100, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-02-06 08:33:16 UTC (rev 177101)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2'
+ 'kdebindings-python-common')
+pkgver=4.10.0
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip' 'mesa')
+ 
source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('d587d16363d2184320faf3636ac92f9b50ef5720')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
+-DPYKDEUIC4_ALTINSTALL=TRUE
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+

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

2013-01-02 Thread Andrea Scarpino
Date: Thursday, January 3, 2013 @ 01:53:24
  Author: andrea
Revision: 174161

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 174160, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 174160, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-x86_64/PKGBUILD |   69 ++
 2 files changed, 138 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 174160, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-01-03 06:53:24 UTC (rev 174161)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.5
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('8a0cf08aa4747df05edae833139e5eea739adf45')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 174160, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-01-03 06:53:24 UTC (rev 174161)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.5
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('8a0cf08aa4747df05edae833139e5eea739adf45')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+

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

2012-12-20 Thread Andrea Scarpino
Date: Thursday, December 20, 2012 @ 05:01:20
  Author: andrea
Revision: 173656

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 173655, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 173655, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  138 -
 kde-unstable-x86_64/PKGBUILD |  138 -
 2 files changed, 138 insertions(+), 138 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-12-20 10:00:43 UTC (rev 173655)
+++ kde-unstable-i686/PKGBUILD  2012-12-20 10:01:20 UTC (rev 173656)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.9.90
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('109f12f05ccc198a57beb602dd1276b9d1d639dc')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 173655, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-12-20 10:01:20 UTC (rev 173656)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.95
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b141ca1ba9082363bdc660ea441ec4948437218e')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf 

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

2012-12-04 Thread Andrea Scarpino
Date: Tuesday, December 4, 2012 @ 11:09:42
  Author: andrea
Revision: 172521

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 172520, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 172520, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-x86_64/PKGBUILD |   69 ++
 2 files changed, 138 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 172520, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-12-04 16:09:42 UTC (rev 172521)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.4
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('d9c5fbbc79e95fca0ab2523a8de4e2291641bea3')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 172520, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-12-04 16:09:42 UTC (rev 172521)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.4
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('d9c5fbbc79e95fca0ab2523a8de4e2291641bea3')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+

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

2012-12-04 Thread Andrea Scarpino
Date: Tuesday, December 4, 2012 @ 13:11:53
  Author: andrea
Revision: 172624

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 172623, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 172623, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  138 -
 kde-unstable-x86_64/PKGBUILD |  138 -
 2 files changed, 138 insertions(+), 138 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-12-04 18:11:09 UTC (rev 172623)
+++ kde-unstable-i686/PKGBUILD  2012-12-04 18:11:53 UTC (rev 172624)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.9.80
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('e2b3ac142195a1aa31b6cca5463803665675d97d')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python3 \
--DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 172623, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-12-04 18:11:53 UTC (rev 172624)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.90
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('109f12f05ccc198a57beb602dd1276b9d1d639dc')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf 

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

2012-11-21 Thread Andrea Scarpino
Date: Wednesday, November 21, 2012 @ 13:13:07
  Author: andrea
Revision: 171720

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

Added:
  kdebindings-python/repos/kde-unstable-i686/
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 171719, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 171719, kdebindings-python/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   69 +
 kde-unstable-x86_64/PKGBUILD |   69 +
 2 files changed, 138 insertions(+)

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 171719, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-11-21 18:13:07 UTC (rev 171720)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.80
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e2b3ac142195a1aa31b6cca5463803665675d97d')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 171719, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2012-11-21 18:13:07 UTC (rev 171720)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.80
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e2b3ac142195a1aa31b6cca5463803665675d97d')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm 

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

2012-11-07 Thread Andrea Scarpino
Date: Wednesday, November 7, 2012 @ 14:53:09
  Author: andrea
Revision: 170437

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 170436, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 170436, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-x86_64/PKGBUILD |   69 ++
 2 files changed, 138 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 170436, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-11-07 19:53:09 UTC (rev 170437)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.3
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('4a72a307d5780f013e12607b9cddb425f81ffeef')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 170436, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-11-07 19:53:09 UTC (rev 170437)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.3
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('4a72a307d5780f013e12607b9cddb425f81ffeef')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python3 \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+

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

2012-10-02 Thread Andrea Scarpino
Date: Tuesday, October 2, 2012 @ 15:03:28
  Author: andrea
Revision: 167573

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 167572, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 167572, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   70 ++
 testing-x86_64/PKGBUILD |   70 ++
 2 files changed, 140 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 167572, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-02 19:03:28 UTC (rev 167573)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.2
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('44b3f02797c43a59f8c3a91131a2488a733cfa11')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 167572, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-10-02 19:03:28 UTC (rev 167573)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.2
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('44b3f02797c43a59f8c3a91131a2488a733cfa11')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf 

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

2012-09-04 Thread Andrea Scarpino
Date: Tuesday, September 4, 2012 @ 11:42:53
  Author: andrea
Revision: 166044

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 166043, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 166043, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   70 ++
 testing-x86_64/PKGBUILD |   70 ++
 2 files changed, 140 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 166043, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-09-04 15:42:53 UTC (rev 166044)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.1
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b1066dc30d59ddfb16db3f7e1ee11a2f9895dfca')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 166043, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-09-04 15:42:53 UTC (rev 166044)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.9.1
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b1066dc30d59ddfb16db3f7e1ee11a2f9895dfca')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf 

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

2012-07-11 Thread Andrea Scarpino
Date: Wednesday, July 11, 2012 @ 18:00:05
  Author: andrea
Revision: 163362

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 163361, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 163361, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  140 -
 kde-unstable-x86_64/PKGBUILD |  140 -
 2 files changed, 140 insertions(+), 140 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-07-11 21:59:30 UTC (rev 163361)
+++ kde-unstable-i686/PKGBUILD  2012-07-11 22:00:05 UTC (rev 163362)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.95
-pkgrel=2
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
- 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('e0b674d266f679d9dc36b28bff46767cba97f280')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 163361, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-07-11 22:00:05 UTC (rev 163362)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.97
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('734f97218bb867bd36ac9d25bac89c5d8b0b60cd')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+ 

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

2012-06-28 Thread Andrea Scarpino
Date: Thursday, June 28, 2012 @ 03:00:06
  Author: andrea
Revision: 162688

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 162687, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 162687, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  138 -
 kde-unstable-x86_64/PKGBUILD |  138 -
 2 files changed, 140 insertions(+), 136 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-06-27 22:24:21 UTC (rev 162687)
+++ kde-unstable-i686/PKGBUILD  2012-06-28 07:00:06 UTC (rev 162688)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.95
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('e0b674d266f679d9dc36b28bff46767cba97f280')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 162687, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-06-28 07:00:06 UTC (rev 162688)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.95
+pkgrel=2
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
+ 'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e0b674d266f679d9dc36b28bff46767cba97f280')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+

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

2012-06-27 Thread Andrea Scarpino
Date: Wednesday, June 27, 2012 @ 08:58:08
  Author: andrea
Revision: 162556

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 162555, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 162555, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  138 -
 kde-unstable-x86_64/PKGBUILD |  138 -
 2 files changed, 136 insertions(+), 140 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-06-27 12:57:37 UTC (rev 162555)
+++ kde-unstable-i686/PKGBUILD  2012-06-27 12:58:08 UTC (rev 162556)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.90
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('5e61dc43f78a5127486217120ba6c9f06744232a')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
--DWITH_Soprano=OFF
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DWITH_Soprano=OFF
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 162555, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-06-27 12:58:08 UTC (rev 162556)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.95
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e0b674d266f679d9dc36b28bff46767cba97f280')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv 

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

2012-06-13 Thread Andrea Scarpino
Date: Wednesday, June 13, 2012 @ 10:09:50
  Author: andrea
Revision: 161675

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 161674, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 161674, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  140 -
 kde-unstable-x86_64/PKGBUILD |  140 -
 2 files changed, 140 insertions(+), 140 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-06-13 14:09:17 UTC (rev 161674)
+++ kde-unstable-i686/PKGBUILD  2012-06-13 14:09:50 UTC (rev 161675)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.80
-pkgrel=2
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('bd93872670dc56b0007467a6a9319089e84eb431')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
--DWITH_Soprano=OFF
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DWITH_Soprano=OFF
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 161674, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-06-13 14:09:50 UTC (rev 161675)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.90
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('5e61dc43f78a5127486217120ba6c9f06744232a')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
+-DWITH_Soprano=OFF
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DWITH_Soprano=OFF
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+

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

2012-06-07 Thread Andrea Scarpino
Date: Thursday, June 7, 2012 @ 16:23:50
  Author: andrea
Revision: 160989

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 160988, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 160988, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   68 ++
 staging-x86_64/PKGBUILD |   68 ++
 2 files changed, 136 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 160988, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-06-07 20:23:50 UTC (rev 160989)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.4
+pkgrel=1
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e629d7a1d7d1aa1d1dd24769dc5412a60b6ac256')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 160988, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-06-07 20:23:50 UTC (rev 160989)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.4
+pkgrel=1
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e629d7a1d7d1aa1d1dd24769dc5412a60b6ac256')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use 

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

2012-05-31 Thread Andrea Scarpino
Date: Thursday, May 31, 2012 @ 18:24:02
  Author: andrea
Revision: 160324

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 160323, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 160323, kdebindings-python/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |  140 -
 kde-unstable-x86_64/PKGBUILD |  140 -
 2 files changed, 140 insertions(+), 140 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-05-31 22:23:31 UTC (rev 160323)
+++ kde-unstable-i686/PKGBUILD  2012-05-31 22:24:02 UTC (rev 160324)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.80
-pkgrel=1
-url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('72bd95baeaf8ab71a66de6da8bba09e978e59bd2')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
--DWITH_Soprano=OFF
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DWITH_Soprano=OFF
-  make
-}
-
-package_kdebindings-python() {
-  pkgdesc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  pkgdesc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 160323, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-05-31 22:24:02 UTC (rev 160324)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.80
+pkgrel=2
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('bd93872670dc56b0007467a6a9319089e84eb431')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
+-DWITH_Soprano=OFF
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DWITH_Soprano=OFF
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+

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

2012-05-29 Thread Andrea Scarpino
Date: Tuesday, May 29, 2012 @ 18:25:25
  Author: andrea
Revision: 160090

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

Added:
  kdebindings-python/repos/kde-unstable-i686/
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 160089, kdebindings-python/kde-unstable/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 160089, kdebindings-python/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   70 +
 kde-unstable-x86_64/PKGBUILD |   70 +
 2 files changed, 140 insertions(+)

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 160089, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-05-29 22:25:25 UTC (rev 160090)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.80
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('72bd95baeaf8ab71a66de6da8bba09e978e59bd2')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
+-DWITH_Soprano=OFF
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DWITH_Soprano=OFF
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 160089, 
kdebindings-python/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2012-05-29 22:25:25 UTC (rev 160090)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.80
+pkgrel=1
+url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('72bd95baeaf8ab71a66de6da8bba09e978e59bd2')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0 \
+-DWITH_Soprano=OFF
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DWITH_Soprano=OFF
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf 

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

2012-05-03 Thread Andrea Scarpino
Date: Thursday, May 3, 2012 @ 10:32:10
  Author: andrea
Revision: 158236

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 158235, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 158235, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   68 ++
 staging-x86_64/PKGBUILD |   68 ++
 2 files changed, 136 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 158235, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-05-03 14:32:10 UTC (rev 158236)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.3
+pkgrel=1
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e88ef838b492802f401b0242205e87149c19d032')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 158235, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-05-03 14:32:10 UTC (rev 158236)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.3
+pkgrel=1
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('e88ef838b492802f401b0242205e87149c19d032')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the 

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

2012-03-31 Thread Andrea Scarpino
Date: Saturday, March 31, 2012 @ 03:19:27
  Author: andrea
Revision: 154843

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 154842, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 154842, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   68 ++
 staging-x86_64/PKGBUILD |   68 ++
 2 files changed, 136 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 154842, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-03-31 07:19:27 UTC (rev 154843)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.2
+pkgrel=1
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('7d1a41e00794dba160ce8e2a3f750c9a4298ef15')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 154842, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-03-31 07:19:27 UTC (rev 154843)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.2
+pkgrel=1
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('7d1a41e00794dba160ce8e2a3f750c9a4298ef15')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use 

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

2012-03-16 Thread Andrea Scarpino
Date: Friday, March 16, 2012 @ 06:16:10
  Author: andrea
Revision: 153582

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

Added:
  kdebindings-python/repos/extra-i686/PKGBUILD
(from rev 153581, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/extra-x86_64/PKGBUILD
(from rev 153581, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/extra-i686/PKGBUILD
  kdebindings-python/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  102 
 extra-x86_64/PKGBUILD |  102 
 2 files changed, 136 insertions(+), 68 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-16 10:15:37 UTC (rev 153581)
+++ extra-i686/PKGBUILD 2012-03-16 10:16:10 UTC (rev 153582)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.8.1
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b9ef35269d2e08578ba20d01822dbdbed72bffb8')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/extra-i686/PKGBUILD (from rev 153581, 
kdebindings-python/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-16 10:16:10 UTC (rev 153582)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.1
+pkgrel=2
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b9ef35269d2e08578ba20d01822dbdbed72bffb8')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  desc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  desc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-16 10:15:37 UTC (rev 153581)
+++ extra-x86_64/PKGBUILD   2012-03-16 10:16:10 UTC (rev 153582)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.8.1
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b9ef35269d2e08578ba20d01822dbdbed72bffb8')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd 

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

2012-03-16 Thread Andrea Scarpino
Date: Friday, March 16, 2012 @ 10:50:09
  Author: andrea
Revision: 153599

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

Added:
  kdebindings-python/repos/extra-i686/PKGBUILD
(from rev 153598, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/extra-x86_64/PKGBUILD
(from rev 153598, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/extra-i686/PKGBUILD
  kdebindings-python/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  136 
 extra-x86_64/PKGBUILD |  136 
 2 files changed, 136 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-16 14:20:47 UTC (rev 153598)
+++ extra-i686/PKGBUILD 2012-03-16 14:50:09 UTC (rev 153599)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kdebindings-python
-pkgname=('kdebindings-python'
- 'kdebindings-python2')
-pkgver=4.8.1
-pkgrel=2
-url='http://kde.org/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
-source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
-sha1sums=('b9ef35269d2e08578ba20d01822dbdbed72bffb8')
-
-build() {
-  export PYTHONDONTWRITEBYTECODE=TRUE
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
-  make
-  cd ..
-
-  mkdir build-python2
-  cd build-python2
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package_kdebindings-python() {
-  desc=A set of Python 3.x bindings for KDE
-  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
-
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebindings-python2() {
-  desc=A set of Python 2.x bindings for KDE
-  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-  conflicts=('kdebindings-python4.8.1-2')
- 
-  cd ${srcdir}/build-python2
-  make DESTDIR=${pkgdir} install
-
-  # Fix conflicts
-  rm ${pkgdir}/usr/bin/pykdeuic4
-  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
-${pkgdir}/usr/bin/python2-pykdeuic4
-
-  mv ${pkgdir}/usr/share/apps/pykde4/examples \
-${pkgdir}/usr/share/apps/pykde4/python2-examples
-
-  mv ${pkgdir}/usr/share/sip/PyKDE4 \
-${pkgdir}/usr/share/sip/python2-PyKDE4
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/extra-i686/PKGBUILD (from rev 153598, 
kdebindings-python/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-16 14:50:09 UTC (rev 153599)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kdebindings-python
+pkgname=('kdebindings-python'
+ 'kdebindings-python2')
+pkgver=4.8.1
+pkgrel=3
+url='http://kde.org/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 
'qscintilla')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz;)
+sha1sums=('b9ef35269d2e08578ba20d01822dbdbed72bffb8')
+
+build() {
+  export PYTHONDONTWRITEBYTECODE=TRUE
+
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
+  make
+  cd ..
+
+  mkdir build-python2
+  cd build-python2
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package_kdebindings-python() {
+  pkgdesc=A set of Python 3.x bindings for KDE
+  depends=('kdepim-runtime' 'pyqt' 'qscintilla')
+
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}
+
+package_kdebindings-python2() {
+  pkgdesc=A set of Python 2.x bindings for KDE
+  depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+  conflicts=('kdebindings-python4.8.1-2')
+ 
+  cd ${srcdir}/build-python2
+  make DESTDIR=${pkgdir} install
+
+  # Fix conflicts
+  rm ${pkgdir}/usr/bin/pykdeuic4
+  ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
+${pkgdir}/usr/bin/python2-pykdeuic4
+
+  mv ${pkgdir}/usr/share/apps/pykde4/examples \
+${pkgdir}/usr/share/apps/pykde4/python2-examples
+
+  mv ${pkgdir}/usr/share/sip/PyKDE4 \
+${pkgdir}/usr/share/sip/python2-PyKDE4
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 

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

2012-02-13 Thread Andrea Scarpino
Date: Tuesday, February 14, 2012 @ 02:51:48
  Author: andrea
Revision: 150172

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 150171, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 150171, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 150171, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-02-14 07:51:48 UTC (rev 150172)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.8.0
+pkgrel=2
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('cf204efebc1eda6de7f4405dbf5037bdaffd30e9')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 150171, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-02-14 07:51:48 UTC (rev 150172)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.8.0
+pkgrel=2
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('cf204efebc1eda6de7f4405dbf5037bdaffd30e9')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}



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

2012-01-25 Thread Andrea Scarpino
Date: Wednesday, January 25, 2012 @ 18:13:32
  Author: andrea
Revision: 147572

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

Added:
  kdebindings-python/repos/testing-i686/
  kdebindings-python/repos/testing-i686/PKGBUILD
(from rev 147571, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/testing-x86_64/
  kdebindings-python/repos/testing-x86_64/PKGBUILD
(from rev 147571, kdebindings-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdebindings-python/repos/testing-i686/PKGBUILD (from rev 147571, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-01-25 23:13:32 UTC (rev 147572)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.8.0
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('cf204efebc1eda6de7f4405dbf5037bdaffd30e9')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/testing-x86_64/PKGBUILD (from rev 147571, 
kdebindings-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-01-25 23:13:32 UTC (rev 147572)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.8.0
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('cf204efebc1eda6de7f4405dbf5037bdaffd30e9')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}



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

2012-01-05 Thread Andrea Scarpino
Date: Thursday, January 5, 2012 @ 07:29:05
  Author: andrea
Revision: 146090

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 146089, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 146089, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |   68 -
 kde-unstable-x86_64/PKGBUILD |   68 -
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2012-01-05 12:28:31 UTC (rev 146089)
+++ kde-unstable-i686/PKGBUILD  2012-01-05 12:29:05 UTC (rev 146090)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.95
-pkgrel=2
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('7c1d3c590e80b871ab21be45d4a57ab8aa420e22')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 146089, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2012-01-05 12:29:05 UTC (rev 146090)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.97
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('2d5c94f5e8d369d295a273ae0d2e4f7a13d2a055')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2012-01-05 12:28:31 UTC (rev 146089)
+++ kde-unstable-x86_64/PKGBUILD2012-01-05 12:29:05 UTC (rev 146090)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.95
-pkgrel=2
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('7c1d3c590e80b871ab21be45d4a57ab8aa420e22')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 146089, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2012-01-05 12:29:05 UTC (rev 146090)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.97
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 

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

2011-12-23 Thread Andrea Scarpino
Date: Friday, December 23, 2011 @ 06:12:58
  Author: andrea
Revision: 145602

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 145601, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 145601, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |   68 -
 kde-unstable-x86_64/PKGBUILD |   68 -
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2011-12-23 11:12:30 UTC (rev 145601)
+++ kde-unstable-i686/PKGBUILD  2011-12-23 11:12:58 UTC (rev 145602)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.95
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('7c1d3c590e80b871ab21be45d4a57ab8aa420e22')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 145601, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2011-12-23 11:12:58 UTC (rev 145602)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.95
+pkgrel=2
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('7c1d3c590e80b871ab21be45d4a57ab8aa420e22')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2011-12-23 11:12:30 UTC (rev 145601)
+++ kde-unstable-x86_64/PKGBUILD2011-12-23 11:12:58 UTC (rev 145602)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.95
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('7c1d3c590e80b871ab21be45d4a57ab8aa420e22')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 145601, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2011-12-23 11:12:58 UTC (rev 145602)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.95
+pkgrel=2
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')

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

2011-12-22 Thread Andrea Scarpino
Date: Thursday, December 22, 2011 @ 17:36:59
  Author: andrea
Revision: 145484

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 145483, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 145483, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |   68 -
 kde-unstable-x86_64/PKGBUILD |   68 -
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2011-12-22 22:36:28 UTC (rev 145483)
+++ kde-unstable-i686/PKGBUILD  2011-12-22 22:36:59 UTC (rev 145484)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.90
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('ada3862a46add5f0901d03a84c0c04759a944401')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 145483, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2011-12-22 22:36:59 UTC (rev 145484)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.95
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('7c1d3c590e80b871ab21be45d4a57ab8aa420e22')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2011-12-22 22:36:28 UTC (rev 145483)
+++ kde-unstable-x86_64/PKGBUILD2011-12-22 22:36:59 UTC (rev 145484)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.90
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('ada3862a46add5f0901d03a84c0c04759a944401')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 145483, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2011-12-22 22:36:59 UTC (rev 145484)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.95
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 

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

2011-12-08 Thread Andrea Scarpino
Date: Thursday, December 8, 2011 @ 05:27:40
  Author: andrea
Revision: 144765

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

Added:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
(from rev 144764, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD
(from rev 144764, kdebindings-python/trunk/PKGBUILD)
Deleted:
  kdebindings-python/repos/kde-unstable-i686/PKGBUILD
  kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD

--+
 kde-unstable-i686/PKGBUILD   |   68 -
 kde-unstable-x86_64/PKGBUILD |   68 -
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2011-12-08 10:27:08 UTC (rev 144764)
+++ kde-unstable-i686/PKGBUILD  2011-12-08 10:27:40 UTC (rev 144765)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.80
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('b67905a73566ad99b3bf1238b87f333c3ebb1fc5')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-i686/PKGBUILD (from rev 144764, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2011-12-08 10:27:40 UTC (rev 144765)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.90
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('ada3862a46add5f0901d03a84c0c04759a944401')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2011-12-08 10:27:08 UTC (rev 144764)
+++ kde-unstable-x86_64/PKGBUILD2011-12-08 10:27:40 UTC (rev 144765)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-python
-pkgver=4.7.80
-pkgrel=1
-pkgdesc=KDE bindings for Python
-url=http://kde.org/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
-sha1sums=('b67905a73566ad99b3bf1238b87f333c3ebb1fc5')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../pykde4-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: kdebindings-python/repos/kde-unstable-x86_64/PKGBUILD (from rev 144764, 
kdebindings-python/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2011-12-08 10:27:40 UTC (rev 144765)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.90
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 

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

2011-11-22 Thread Andrea Scarpino
Date: Wednesday, November 23, 2011 @ 02:44:55
  Author: andrea
Revision: 143127

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 143126, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 143126, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 143126, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-11-23 07:44:55 UTC (rev 143127)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.80
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('b67905a73566ad99b3bf1238b87f333c3ebb1fc5')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 143126, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-11-23 07:44:55 UTC (rev 143127)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.80
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/unstable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('b67905a73566ad99b3bf1238b87f333c3ebb1fc5')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}



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

2011-10-30 Thread Andrea Scarpino
Date: Sunday, October 30, 2011 @ 23:33:59
  Author: andrea
Revision: 141511

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 141510, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 141510, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 141510, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-10-31 03:33:59 UTC (rev 141511)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.3
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('16063793d39fdc9f5b9916cab49236103ce79da2')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 141510, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-10-31 03:33:59 UTC (rev 141511)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.3
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('16063793d39fdc9f5b9916cab49236103ce79da2')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}



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

2011-10-04 Thread Andrea Scarpino
Date: Tuesday, October 4, 2011 @ 19:10:04
  Author: andrea
Revision: 139766

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 139765, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 139765, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 139765, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-10-04 23:10:04 UTC (rev 139766)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.2
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('cc7844851110697f06da60cf4a1ee527eda76087')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 139765, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-10-04 23:10:04 UTC (rev 139766)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.2
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('cc7844851110697f06da60cf4a1ee527eda76087')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}



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

2011-09-06 Thread Andrea Scarpino
Date: Tuesday, September 6, 2011 @ 17:23:26
  Author: andrea
Revision: 137240

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

Added:
  kdebindings-python/repos/staging-i686/
  kdebindings-python/repos/staging-i686/PKGBUILD
(from rev 137239, kdebindings-python/trunk/PKGBUILD)
  kdebindings-python/repos/staging-x86_64/
  kdebindings-python/repos/staging-x86_64/PKGBUILD
(from rev 137239, kdebindings-python/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   34 ++
 staging-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: kdebindings-python/repos/staging-i686/PKGBUILD (from rev 137239, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-09-06 21:23:26 UTC (rev 137240)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.1
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('fd05f0c04586878c3c23e80bb1c59b316184d7ab')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Copied: kdebindings-python/repos/staging-x86_64/PKGBUILD (from rev 137239, 
kdebindings-python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-09-06 21:23:26 UTC (rev 137240)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-python
+pkgver=4.7.1
+pkgrel=1
+pkgdesc=KDE bindings for Python
+url=http://kde.org/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2;)
+sha1sums=('fd05f0c04586878c3c23e80bb1c59b316184d7ab')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../pykde4-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  find ${pkgdir} -name '*.py' | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}