public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pyside: pyside-1.1.1.ebuild ChangeLog
@ 2012-04-28 17:45 Davide Pesavento (pesa)
  0 siblings, 0 replies; 4+ messages in thread
From: Davide Pesavento (pesa) @ 2012-04-28 17:45 UTC (permalink / raw
  To: gentoo-commits

pesa        12/04/28 17:45:03

  Modified:             ChangeLog
  Added:                pyside-1.1.1.ebuild
  Log:
  Version bump. Switch to out-of-source build.
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 dev-python/pyside/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	22 Apr 2012 12:17:30 -0000	1.30
+++ ChangeLog	28 Apr 2012 17:45:03 -0000	1.31
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pyside
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.30 2012/04/22 12:17:30 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.31 2012/04/28 17:45:03 pesa Exp $
+
+*pyside-1.1.1 (28 Apr 2012)
+
+  28 Apr 2012; Davide Pesavento <pesa@gentoo.org> +pyside-1.1.1.ebuild:
+  Version bump. Switch to out-of-source build.
 
   22 Apr 2012; Markus Meier <maekke@gentoo.org> pyside-1.1.0-r1.ebuild:
   x86 stable, bug #401789



1.1                  dev-python/pyside/pyside-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.1&content-type=text/plain

Index: pyside-1.1.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.1 2012/04/28 17:45:03 pesa Exp $

EAPI=4

PYTHON_DEPEND="2:2.6 3:3.2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 2.5 3.1 *-jython 2.7-pypy-*"

VIRTUALX_COMMAND="cmake-utils_src_test"

inherit multilib cmake-utils python virtualx

MY_P="${PN}-qt4.8+${PV}"

DESCRIPTION="Python bindings for the Qt framework"
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="X declarative help multimedia kde opengl phonon script scripttools sql svg test webkit xmlpatterns"

REQUIRED_USE="
	declarative? ( X )
	help? ( X )
	multimedia? ( X )
	opengl? ( X )
	phonon? ( X )
	scripttools? ( X script )
	sql? ( X )
	svg? ( X )
	test? ( X )
	webkit? ( X )
"

QT_PV="4.7.0:4"

RDEPEND="
	>=dev-python/shiboken-${PV}
	>=x11-libs/qt-core-${QT_PV}
	X? (
		>=x11-libs/qt-gui-${QT_PV}[accessibility]
		>=x11-libs/qt-test-${QT_PV}
	)
	declarative? ( >=x11-libs/qt-declarative-${QT_PV} )
	help? ( >=x11-libs/qt-assistant-${QT_PV} )
	multimedia? ( >=x11-libs/qt-multimedia-${QT_PV} )
	opengl? ( >=x11-libs/qt-opengl-${QT_PV} )
	phonon? (
		kde? ( media-libs/phonon )
		!kde? ( || (
			>=x11-libs/qt-phonon-${QT_PV}
			media-libs/phonon
		) )
	)
	script? ( >=x11-libs/qt-script-${QT_PV} )
	sql? ( >=x11-libs/qt-sql-${QT_PV} )
	svg? ( >=x11-libs/qt-svg-${QT_PV}[accessibility] )
	webkit? ( >=x11-libs/qt-webkit-${QT_PV} )
	xmlpatterns? ( >=x11-libs/qt-xmlpatterns-${QT_PV} )
"
DEPEND="${RDEPEND}"

S=${WORKDIR}/${MY_P}

DOCS=( ChangeLog )

src_prepare() {
	# Fix generated pkgconfig file to require the shiboken
	# library suffixed with the correct python version.
	sed -i -e '/^Requires:/ s/shiboken$/&@SHIBOKEN_PYTHON_SUFFIX@/' \
		libpyside/pyside.pc.in || die
}

src_configure() {
	configuration() {
		local mycmakeargs=(
			-DPYTHON_SUFFIX="-python${PYTHON_ABI}"
			$(cmake-utils_use_build test TESTS)
			$(cmake-utils_use_disable X QtGui)
			$(cmake-utils_use_disable X QtDesigner)
			$(cmake-utils_use_disable X QtTest)
			$(cmake-utils_use_disable X QtUiTools)
			$(cmake-utils_use_disable declarative QtDeclarative)
			$(cmake-utils_use_disable help QtHelp)
			$(cmake-utils_use_disable multimedia QtMultimedia)
			$(cmake-utils_use_disable opengl QtOpenGL)
			$(cmake-utils_use_disable phonon)
			$(cmake-utils_use_disable script QtScript)
			$(cmake-utils_use_disable scripttools QtScriptTools)
			$(cmake-utils_use_disable sql QtSql)
			$(cmake-utils_use_disable svg QtSvg)
			$(cmake-utils_use_disable webkit QtWebKit)
			$(cmake-utils_use_disable xmlpatterns QtXmlPatterns)
		)
		CMAKE_BUILD_DIR="${S}_${PYTHON_ABI}" cmake-utils_src_configure
	}
	python_execute_function configuration
}

src_compile() {
	compilation() {
		CMAKE_BUILD_DIR="${S}_${PYTHON_ABI}" cmake-utils_src_make
	}
	python_execute_function compilation
}

src_test() {
	testing() {
		CMAKE_BUILD_DIR="${S}_${PYTHON_ABI}" virtualmake
	}
	python_execute_function testing
}

src_install() {
	installation() {
		CMAKE_BUILD_DIR="${S}_${PYTHON_ABI}" cmake-utils_src_install
		mv "${ED}"usr/$(get_libdir)/pkgconfig/${PN}{,-python${PYTHON_ABI}}.pc || die
	}
	python_execute_function installation
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/pyside: pyside-1.1.1.ebuild ChangeLog
@ 2012-06-02 23:08 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2012-06-02 23:08 UTC (permalink / raw
  To: gentoo-commits

hwoarang    12/06/02 23:08:04

  Modified:             pyside-1.1.1.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #418421
  
  (Portage version: 2.1.10.64/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-python/pyside/pyside-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?r1=1.3&r2=1.4

Index: pyside-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pyside-1.1.1.ebuild	30 May 2012 07:50:16 -0000	1.3
+++ pyside-1.1.1.ebuild	2 Jun 2012 23:08:04 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.3 2012/05/30 07:50:16 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.4 2012/06/02 23:08:04 hwoarang Exp $
 
 EAPI=4
 
@@ -20,7 +20,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="X declarative help multimedia kde opengl phonon script scripttools sql svg test webkit xmlpatterns"
 
 REQUIRED_USE="



1.35                 dev-python/pyside/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	30 May 2012 07:50:16 -0000	1.34
+++ ChangeLog	2 Jun 2012 23:08:04 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyside
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.34 2012/05/30 07:50:16 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.35 2012/06/02 23:08:04 hwoarang Exp $
+
+  02 Jun 2012; Markos Chandras <hwoarang@gentoo.org> pyside-1.1.1.ebuild:
+  Stable on amd64 wrt bug #418421
 
   30 May 2012; Justin Lecher <jlec@gentoo.org> pyside-1.1.1.ebuild,
   +files/rpath.cmake:






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/pyside: pyside-1.1.1.ebuild ChangeLog
@ 2012-06-03 16:14 Davide Pesavento (pesa)
  0 siblings, 0 replies; 4+ messages in thread
From: Davide Pesavento (pesa) @ 2012-06-03 16:14 UTC (permalink / raw
  To: gentoo-commits

pesa        12/06/03 16:14:23

  Modified:             pyside-1.1.1.ebuild ChangeLog
  Log:
  Fix QtGui_pyside_reload_test, bug 415553 comment 5.
  
  (Portage version: 2.2.0_alpha109/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-python/pyside/pyside-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?r1=1.4&r2=1.5

Index: pyside-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pyside-1.1.1.ebuild	2 Jun 2012 23:08:04 -0000	1.4
+++ pyside-1.1.1.ebuild	3 Jun 2012 16:14:23 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.4 2012/06/02 23:08:04 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.5 2012/06/03 16:14:23 pesa Exp $
 
 EAPI=4
 
@@ -73,6 +73,7 @@
 	# library suffixed with the correct python version.
 	sed -i -e '/^Requires:/ s/shiboken$/&@SHIBOKEN_PYTHON_SUFFIX@/' \
 		libpyside/pyside.pc.in || die
+
 	if use prefix; then
 		cp "${FILESDIR}"/rpath.cmake .
 		sed \
@@ -118,7 +119,9 @@
 	testing() {
 		CMAKE_BUILD_DIR="${S}_${PYTHON_ABI}" virtualmake
 	}
+	python_enable_pyc
 	python_execute_function testing
+	python_disable_pyc
 }
 
 src_install() {



1.36                 dev-python/pyside/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	2 Jun 2012 23:08:04 -0000	1.35
+++ ChangeLog	3 Jun 2012 16:14:23 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyside
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.35 2012/06/02 23:08:04 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.36 2012/06/03 16:14:23 pesa Exp $
+
+  03 Jun 2012; Davide Pesavento <pesa@gentoo.org> pyside-1.1.1.ebuild:
+  Fix QtGui_pyside_reload_test, bug 415553 comment 5.
 
   02 Jun 2012; Markos Chandras <hwoarang@gentoo.org> pyside-1.1.1.ebuild:
   Stable on amd64 wrt bug #418421






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/pyside: pyside-1.1.1.ebuild ChangeLog
@ 2012-07-27 18:10 Michael Palimaka (kensington)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Palimaka (kensington) @ 2012-07-27 18:10 UTC (permalink / raw
  To: gentoo-commits

kensington    12/07/27 18:10:32

  Modified:             pyside-1.1.1.ebuild ChangeLog
  Log:
  Add missing dependency, thanks to steev.
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-python/pyside/pyside-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild?r1=1.6&r2=1.7

Index: pyside-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pyside-1.1.1.ebuild	8 Jun 2012 11:37:08 -0000	1.6
+++ pyside-1.1.1.ebuild	27 Jul 2012 18:10:32 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.6 2012/06/08 11:37:08 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.1.1.ebuild,v 1.7 2012/07/27 18:10:32 kensington Exp $
 
 EAPI=4
 
@@ -62,7 +62,8 @@
 	webkit? ( >=x11-libs/qt-webkit-${QT_PV} )
 	xmlpatterns? ( >=x11-libs/qt-xmlpatterns-${QT_PV} )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+	>=x11-libs/qt-gui-${QT_PV}"
 
 S=${WORKDIR}/${MY_P}
 



1.40                 dev-python/pyside/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyside/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	12 Jun 2012 20:18:03 -0000	1.39
+++ ChangeLog	27 Jul 2012 18:10:32 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyside
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.39 2012/06/12 20:18:03 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.40 2012/07/27 18:10:32 kensington Exp $
+
+  27 Jul 2012; Michael Palimaka <kensington@gentoo.org> pyside-1.1.1.ebuild:
+  Add missing dependency, thanks to steev.
 
   12 Jun 2012; Davide Pesavento <pesa@gentoo.org> -pyside-1.1.0-r1.ebuild:
   Remove old.
@@ -166,4 +169,3 @@
   20 Dec 2009; Dominik Kapusta <ayoy@gentoo.org> +pyside-0.2.2.ebuild,
   +files/pyside-qtscripttools.patch, +metadata.xml:
   Initial commit for pyside (bug #282138)
-





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-07-27 18:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-02 23:08 [gentoo-commits] gentoo-x86 commit in dev-python/pyside: pyside-1.1.1.ebuild ChangeLog Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-27 18:10 Michael Palimaka (kensington)
2012-06-03 16:14 Davide Pesavento (pesa)
2012-04-28 17:45 Davide Pesavento (pesa)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox