pygobject: added python3 bindings (py3gobject).
This commit is contained in:
parent
a66db21edf
commit
d3e5be76fd
3 changed files with 54 additions and 10 deletions
|
@ -350,8 +350,8 @@ libnssdbm3.so nss-3.12.4_1
|
|||
libnssckbi.so nss-3.12.4_1
|
||||
libnss3.so nss-3.12.4_1
|
||||
libcurl.so.4 libcurl-7.19_1
|
||||
libpyglib-gi-2.0-python.so.0 pygobject-2.27.0_1
|
||||
libpyglib-2.0-python.so.0 pygobject2-2.28.6_1
|
||||
libpyglib-gi-2.0-python.so.0 pygobject-3.10.0_2
|
||||
libpyglib-gi-2.0-python3.so.0 py3gobject-3.10.0_2
|
||||
libdaemon.so.0 libdaemon-0.14_1
|
||||
libavahi-common.so.3 avahi-libs-0.6.25_1
|
||||
libavahi-core.so.7 avahi-libs-0.6.25_1
|
||||
|
|
1
srcpkgs/py3gobject
Symbolic link
1
srcpkgs/py3gobject
Symbolic link
|
@ -0,0 +1 @@
|
|||
pygobject
|
|
@ -1,10 +1,9 @@
|
|||
# Template file for 'pygobject'
|
||||
pkgname=pygobject
|
||||
version=3.10.0
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="pkg-config gobject-introspection>=1.38"
|
||||
makedepends="pycairo-devel libglib-devel python-devel"
|
||||
revision=2
|
||||
hostmakedepends="which pkg-config gobject-introspection>=1.38"
|
||||
makedepends="py2cairo-devel>=1.10.0_2 pycairo-devel>=1.10.0_3 libglib-devel"
|
||||
short_desc="Python bindings for GObject"
|
||||
homepage="http://www.pygtk.org/"
|
||||
license="LGPL-2.1"
|
||||
|
@ -12,21 +11,65 @@ distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
|||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=8aaa1f83fdb2e30bae77405a63a8be600b311a04a4cdc952b2ab62ee81aad077
|
||||
|
||||
do_configure() {
|
||||
# python2
|
||||
mkdir ${wrksrc}/build-python2
|
||||
cd ${wrksrc}/build-python2
|
||||
../configure ${configure_args} --with-python=/usr/bin/python
|
||||
|
||||
# python3
|
||||
mkdir ${wrksrc}/build-python3
|
||||
cd ${wrksrc}/build-python3
|
||||
../configure ${configure_args} --with-python=/usr/bin/python3
|
||||
}
|
||||
|
||||
do_build() {
|
||||
# python2
|
||||
cd ${wrksrc}/build-python3
|
||||
make ${makejobs}
|
||||
|
||||
# python3
|
||||
cd ${wrksrc}/build-python3
|
||||
make ${makejobs}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
# python2
|
||||
cd ${wrksrc}/build-python2
|
||||
make DESTDIR=${DESTDIR} install
|
||||
|
||||
# python3
|
||||
cd ${wrksrc}/build-python3
|
||||
make DESTDIR=${DESTDIR}/python3 install
|
||||
}
|
||||
|
||||
py3gobject_package() {
|
||||
short_desc="Python3 bindings for GObject"
|
||||
pkg_install() {
|
||||
vmkdir usr/lib
|
||||
mv ${DESTDIR}/python3/usr/lib/*.so* ${PKGDESTDIR}/usr/lib
|
||||
mv ${DESTDIR}/python3/usr/lib/python* ${PKGDESTDIR}/usr/lib
|
||||
}
|
||||
}
|
||||
|
||||
pygobject-devel_package() {
|
||||
depends="libffi-devel libglib-devel libgirepository-devel
|
||||
pycairo-devel ${sourcepkg}-${version}_${revision}"
|
||||
depends="libgirepository-devel
|
||||
py2cairo-devel>=1.10.0_2
|
||||
pycairo-devel>=1.10.0_2
|
||||
py3gobject>=${version}_${revision}
|
||||
pygobject>=${version}_${revision}"
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove "usr/lib/*.so"
|
||||
}
|
||||
}
|
||||
|
||||
pygobject_package() {
|
||||
pycompile_module="gi pygtkcompat"
|
||||
depends="python pycairo"
|
||||
depends="py2cairo>=1.10.0_2"
|
||||
pkg_install() {
|
||||
rm -rf ${DESTDIR}/python3
|
||||
vmove all
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue