mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 23:44:36 +08:00
Rename kdebindings-pykde4 to kdebindings-python
This commit is contained in:
parent
135ac6810b
commit
6b36c23d96
@ -1,112 +0,0 @@
|
|||||||
#
|
|
||||||
# Desktop packages for Chakra, part of www.chakra-project.org
|
|
||||||
#
|
|
||||||
# Maintainer: H W Tovetjarn (totte) <totte@tott.es>
|
|
||||||
# Contributors: M Tortosa <manutortosa@chakra-project.org>
|
|
||||||
# A Scarpino <andrea@archlinux.org>
|
|
||||||
|
|
||||||
# Include global buildsystem configuration
|
|
||||||
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
||||||
|
|
||||||
pkgbase=kdebindings-python
|
|
||||||
pkgname=('kdebindings-python-common'
|
|
||||||
'kdebindings-python2'
|
|
||||||
'kdebindings-python3')
|
|
||||||
pkgver=${_kdever}
|
|
||||||
pkgrel=9
|
|
||||||
url="https://projects.kde.org/projects/kde/kdebindings/pykde4"
|
|
||||||
arch=('x86_64')
|
|
||||||
license=('GPL' 'LGPL' 'FDL')
|
|
||||||
makedepends=('automoc4'
|
|
||||||
'boost'
|
|
||||||
'boost-libs'
|
|
||||||
'cmake'
|
|
||||||
"kdepim-runtime>=${_kdever}"
|
|
||||||
'polkit-qt'
|
|
||||||
'python-sip-common'
|
|
||||||
'python2-pyqt4>=4.10.3-5'
|
|
||||||
'python2-sip'
|
|
||||||
'python3-pyqt4>=4.10.3-5'
|
|
||||||
'python3-sip'
|
|
||||||
'qscintilla-python2>=2.7.2-1')
|
|
||||||
source=("$_mirror/pykde4-$_kdever.tar.xz")
|
|
||||||
sha1sums=(`grep pykde4-$_kdever.tar.xz ../kde-sc.md5 | cut -d" " -f1`)
|
|
||||||
groups=("kde" "kdebindings" "kde-uninstall")
|
|
||||||
options=('docs' '!header' 'debug' 'log')
|
|
||||||
|
|
||||||
#provides=('kdebindings-python' 'pykde4')
|
|
||||||
#replaces=('kdebindings-python')
|
|
||||||
#conflicts=('kdebindings-python')
|
|
||||||
|
|
||||||
prepare() {
|
|
||||||
cd "${srcdir}"
|
|
||||||
rm -rf build-python2 build-python3
|
|
||||||
mkdir -p build-python2 build-python3
|
|
||||||
}
|
|
||||||
|
|
||||||
build() {
|
|
||||||
export PYTHONDONTWRITEBYTECODE="TRUE"
|
|
||||||
|
|
||||||
cd ${srcdir}/build-python2
|
|
||||||
cmake ../pykde4-${pkgver} \
|
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
|
||||||
-DPYTHON_EXECUTABLE=/usr/bin/python2 \
|
|
||||||
-DPYKDEUIC4_ALTINSTALL=TRUE
|
|
||||||
make
|
|
||||||
|
|
||||||
cd ${srcdir}/build-python3
|
|
||||||
cmake ../pykde4-${pkgver} \
|
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
|
||||||
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
|
|
||||||
-DPYTHON_LIBRARY=/usr/lib/libpython3.3m.so.1.0 \
|
|
||||||
-DPYKDEUIC4_ALTINSTALL=TRUE
|
|
||||||
make
|
|
||||||
}
|
|
||||||
|
|
||||||
package_kdebindings-python3() {
|
|
||||||
pkgdesc="A set of Python 3.x bindings for KDE"
|
|
||||||
depends=('python3-pyqt4>=4.10.3-5'
|
|
||||||
'qscintilla-python3'
|
|
||||||
'boost-libs'
|
|
||||||
"kdepim-runtime>=${_kdever}"
|
|
||||||
"kdebindings-python-common")
|
|
||||||
|
|
||||||
cd "${srcdir}"/build-python3
|
|
||||||
make DESTDIR="${pkgdir}" install
|
|
||||||
|
|
||||||
# Provided by common
|
|
||||||
rm -r "${pkgdir}"/usr/share/apps/pykde4/examples
|
|
||||||
rm -r "${pkgdir}"/usr/share/sip/PyKDE4
|
|
||||||
}
|
|
||||||
|
|
||||||
package_kdebindings-python2() {
|
|
||||||
pkgdesc="A set of Python 2.x bindings for KDE"
|
|
||||||
depends=('python2-pyqt4>=4.10.3-5'
|
|
||||||
'qscintilla-python2'
|
|
||||||
'boost-libs'
|
|
||||||
"kdepim-runtime>=${_kdever}"
|
|
||||||
"kdebindings-python-common")
|
|
||||||
conflicts=('kdebindings-pykde4<4.11.2')
|
|
||||||
provides=("kdebindings-pykde4=${pkgver}")
|
|
||||||
replaces=('kdebindings-pykde4')
|
|
||||||
|
|
||||||
cd "${srcdir}"/build-python2
|
|
||||||
make DESTDIR="${pkgdir}" install
|
|
||||||
|
|
||||||
# Provided by common
|
|
||||||
rm -r "${pkgdir}"/usr/share/apps/pykde4/examples
|
|
||||||
rm -r "${pkgdir}"/usr/share/sip/PyKDE4
|
|
||||||
}
|
|
||||||
|
|
||||||
package_kdebindings-python-common() {
|
|
||||||
pkgdesc="Common files shared between python2 and python3 kdebindings-pykde"
|
|
||||||
conflicts=('kdebindings-pykde<4.11.2')
|
|
||||||
|
|
||||||
cd ${srcdir}/build-python2
|
|
||||||
make DESTDIR="${pkgdir}" install
|
|
||||||
|
|
||||||
rm -r "${pkgdir}"/usr/{bin,lib}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user