From fe613cd5b1e87b7ea3a6c7cceb339668046214dd Mon Sep 17 00:00:00 2001 From: Patrick Lauer Date: Tue, 27 Dec 2011 08:39:31 +0000 Subject: [PATCH] Bump Package-Manager: portage-2.2.0_alpha81/cvs/Linux x86_64 --- dev-python/apiextractor/ChangeLog | 7 ++- .../apiextractor/apiextractor-0.10.9.ebuild | 35 +++++++++++++++ dev-python/generatorrunner/ChangeLog | 8 +++- .../generatorrunner-0.6.15.ebuild | 31 +++++++++++++ dev-python/shiboken/ChangeLog | 8 +++- .../files/shiboken-1.0.9-fix-pkgconfig.patch | 19 ++++++++ dev-python/shiboken/shiboken-1.0.9.ebuild | 44 +++++++++++++++++++ 7 files changed, 149 insertions(+), 3 deletions(-) create mode 100644 dev-python/apiextractor/apiextractor-0.10.9.ebuild create mode 100644 dev-python/generatorrunner/generatorrunner-0.6.15.ebuild create mode 100644 dev-python/shiboken/files/shiboken-1.0.9-fix-pkgconfig.patch create mode 100644 dev-python/shiboken/shiboken-1.0.9.ebuild diff --git a/dev-python/apiextractor/ChangeLog b/dev-python/apiextractor/ChangeLog index 23a97c7d0da6..6aaf89b1d77f 100644 --- a/dev-python/apiextractor/ChangeLog +++ b/dev-python/apiextractor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/apiextractor # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/apiextractor/ChangeLog,v 1.14 2011/09/13 19:09:00 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/apiextractor/ChangeLog,v 1.15 2011/12/27 08:33:26 patrick Exp $ + +*apiextractor-0.10.9 (27 Dec 2011) + + 27 Dec 2011; Patrick Lauer +apiextractor-0.10.9.ebuild: + Bump 13 Sep 2011; Pacho Ramos metadata.xml: Drop maintainer due retirement, bug #278944 diff --git a/dev-python/apiextractor/apiextractor-0.10.9.ebuild b/dev-python/apiextractor/apiextractor-0.10.9.ebuild new file mode 100644 index 000000000000..959b47529bd5 --- /dev/null +++ b/dev-python/apiextractor/apiextractor-0.10.9.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/apiextractor/apiextractor-0.10.9.ebuild,v 1.1 2011/12/27 08:33:26 patrick Exp $ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="Library used to create an internal representation of an API in order to create Python bindings" +HOMEPAGE="http://www.pyside.org/" +SRC_URI="http://www.pyside.org/files/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug test" + +RDEPEND=" + dev-libs/libxml2 + dev-libs/libxslt + >=x11-libs/qt-core-4.7.0 + >=x11-libs/qt-xmlpatterns-4.7.0" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + test? ( >=x11-libs/qt-test-4.7.0 )" + +DOCS=( AUTHORS ChangeLog ) + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_build test TESTS) + ) + cmake-utils_src_configure +} diff --git a/dev-python/generatorrunner/ChangeLog b/dev-python/generatorrunner/ChangeLog index d2e3d47c13f1..01f54a380d36 100644 --- a/dev-python/generatorrunner/ChangeLog +++ b/dev-python/generatorrunner/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/generatorrunner # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/ChangeLog,v 1.10 2011/09/13 19:09:45 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/ChangeLog,v 1.11 2011/12/27 08:35:53 patrick Exp $ + +*generatorrunner-0.6.15 (27 Dec 2011) + + 27 Dec 2011; Patrick Lauer + +generatorrunner-0.6.15.ebuild: + Bump 13 Sep 2011; Pacho Ramos metadata.xml: Drop maintainer due retirement, bug #278944 diff --git a/dev-python/generatorrunner/generatorrunner-0.6.15.ebuild b/dev-python/generatorrunner/generatorrunner-0.6.15.ebuild new file mode 100644 index 000000000000..3ae7d03ad312 --- /dev/null +++ b/dev-python/generatorrunner/generatorrunner-0.6.15.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/generatorrunner-0.6.15.ebuild,v 1.1 2011/12/27 08:35:53 patrick Exp $ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="A tool that controls bindings generation" +HOMEPAGE="http://www.pyside.org/" +SRC_URI="http://www.pyside.org/files/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug test" + +RDEPEND=">=dev-python/apiextractor-0.10 + >=x11-libs/qt-core-4.7.0" +DEPEND="${DEPEND} + test? ( >=x11-libs/qt-test-4.7.0 ) +" + +DOCS=( AUTHORS ChangeLog ) + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_build test TESTS) + ) + cmake-utils_src_configure +} diff --git a/dev-python/shiboken/ChangeLog b/dev-python/shiboken/ChangeLog index d6a0dc75e658..9b5293bd3696 100644 --- a/dev-python/shiboken/ChangeLog +++ b/dev-python/shiboken/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/shiboken # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.12 2011/09/13 19:12:17 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/ChangeLog,v 1.13 2011/12/27 08:39:31 patrick Exp $ + +*shiboken-1.0.9 (27 Dec 2011) + + 27 Dec 2011; Patrick Lauer + +files/shiboken-1.0.9-fix-pkgconfig.patch, +shiboken-1.0.9.ebuild: + Bump 13 Sep 2011; Pacho Ramos metadata.xml: Drop maintainer due retirement, bug #278944 diff --git a/dev-python/shiboken/files/shiboken-1.0.9-fix-pkgconfig.patch b/dev-python/shiboken/files/shiboken-1.0.9-fix-pkgconfig.patch new file mode 100644 index 000000000000..8df2c65d292e --- /dev/null +++ b/dev-python/shiboken/files/shiboken-1.0.9-fix-pkgconfig.patch @@ -0,0 +1,19 @@ +diff -urN shiboken-1.0.9/data/shiboken.pc.in shiboken-1.0.9/data/shiboken.pc.in +--- shiboken-1.0.9/data/shiboken.pc.in 2011-09-06 12:36:36.150737026 +0200 ++++ shiboken-1.0.9/data/shiboken.pc.in 2011-09-06 12:38:30.780735651 +0200 +@@ -1,7 +1,8 @@ + prefix=@CMAKE_INSTALL_PREFIX@ + exec_prefix=@CMAKE_INSTALL_PREFIX@ + libdir=@LIB_INSTALL_DIR@ +-includedir=@CMAKE_INSTALL_PREFIX@/include/shiboken ++shiboken_SUFFIX=@shiboken_SUFFIX@ ++includedir=@CMAKE_INSTALL_PREFIX@/include/shiboken${shiboken_SUFFIX} + generator_location=@CMAKE_INSTALL_PREFIX@/bin/@SHIBOKEN_GENERATOR@ + python_interpreter=@PYTHON_EXECUTABLE@ + python_include_dir=@SBK_PYTHON_INCLUDE_DIR@ +@@ -10,5 +11,5 @@ + Description: Support library for Python bindings created with Shiboken generator. + Version: @shiboken_VERSION@ + Libs: @SBK_PYTHON_LIBRARIES@ -L${libdir} -lshiboken@shiboken_SUFFIX@@PYTHON_SUFFIX@@LIBRARY_OUTPUT_SUFFIX@ +-Cflags: -I@SBK_PYTHON_INCLUDE_DIR@ -I${includedir}/@shiboken_SUFFIX@@SBK_PKG_CONFIG_PY_DEBUG_DEFINITION@ ++Cflags: -I@SBK_PYTHON_INCLUDE_DIR@ -I${includedir}/ diff --git a/dev-python/shiboken/shiboken-1.0.9.ebuild b/dev-python/shiboken/shiboken-1.0.9.ebuild new file mode 100644 index 000000000000..f4c355dd72a5 --- /dev/null +++ b/dev-python/shiboken/shiboken-1.0.9.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/shiboken/shiboken-1.0.9.ebuild,v 1.1 2011/12/27 08:39:31 patrick Exp $ + +EAPI=3 + +PYTHON_DEPEND="2:2.5" + +inherit python versionator cmake-utils + +MY_PV=$(replace_version_separator '_' '~') +MY_P=${PN}-${MY_PV} + +DESCRIPTION="A tool for creating Python bindings for C++ libraries" +HOMEPAGE="http://www.pyside.org/" +SRC_URI="http://www.pyside.org/files/${MY_P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug test" + +DEPEND=">=dev-python/apiextractor-0.10.8 + >=dev-python/generatorrunner-0.6.14 + >=x11-libs/qt-core-4.7.0" +RDEPEND="${DEPEND} + !dev-python/boostpythongenerator" + +PATCHES=( "${FILESDIR}/${P}-fix-pkgconfig.patch" ) + +DOCS=( ChangeLog ) + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + python_set_active_version 2 +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_build test TESTS) + ) + cmake-utils_src_configure +} -- 2.26.2