pesa        14/05/23 12:36:55

  Modified:             ChangeLog
  Added:                pyside-1.2.2.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  Changes    Path
1.60                 dev-python/pyside/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog   24 Feb 2014 01:19:22 -0000      1.59
+++ ChangeLog   23 May 2014 12:36:55 -0000      1.60
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pyside
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.59 
2014/02/24 01:19:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/ChangeLog,v 1.60 
2014/05/23 12:36:55 pesa Exp $
+
+*pyside-1.2.2 (23 May 2014)
+
+  23 May 2014; Davide Pesavento <[email protected]> +pyside-1.2.2.ebuild:
+  Version bump.
 
   24 Feb 2014; Pawel Hajdan jr <[email protected]> pyside-1.2.1-r1.ebuild:
   x86 stable wrt bug #499408



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

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

Index: pyside-1.2.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyside/pyside-1.2.2.ebuild,v 1.1 
2014/05/23 12:36:55 pesa Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )

inherit multilib cmake-utils python-r1 virtualx

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

DESCRIPTION="Python bindings for the Qt framework"
HOMEPAGE="http://qt-project.org/wiki/PySide";
SRC_URI="http://download.qt-project.org/official_releases/${PN}/${MY_P}.tar.bz2";

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="X declarative designer help multimedia opengl phonon script scripttools 
sql svg test webkit xmlpatterns"

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

# Minimal supported version of Qt.
QT_PV="4.7.0:4"

RDEPEND="
        >=dev-python/shiboken-${PV}[${PYTHON_USEDEP}]
        >=dev-qt/qtcore-${QT_PV}
        X? (
                >=dev-qt/qtgui-${QT_PV}[accessibility]
                >=dev-qt/qttest-${QT_PV}
        )
        declarative? ( >=dev-qt/qtdeclarative-${QT_PV} )
        designer? ( || ( dev-qt/designer:4 <dev-qt/qtgui-4.8.5:4 ) )
        help? ( >=dev-qt/qthelp-${QT_PV} )
        multimedia? ( >=dev-qt/qtmultimedia-${QT_PV} )
        opengl? ( >=dev-qt/qtopengl-${QT_PV} )
        phonon? ( || (
                media-libs/phonon[qt4(+)]
                >=dev-qt/qtphonon-${QT_PV}
        ) )
        script? ( >=dev-qt/qtscript-${QT_PV} )
        sql? ( >=dev-qt/qtsql-${QT_PV} )
        svg? ( >=dev-qt/qtsvg-${QT_PV}[accessibility] )
        webkit? ( >=dev-qt/qtwebkit-${QT_PV} )
        xmlpatterns? ( >=dev-qt/qtxmlpatterns-${QT_PV} )
"
DEPEND="${RDEPEND}
        >=dev-qt/qtgui-${QT_PV}
"

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

        if use prefix; then
                cp "${FILESDIR}"/rpath.cmake . || die
                sed -i -e '1iinclude(rpath.cmake)' CMakeLists.txt || die
        fi
}

src_configure() {
        local mycmakeargs=(
                $(cmake-utils_use_build test TESTS)
                $(cmake-utils_use_disable X QtGui)
                $(cmake-utils_use_disable X QtTest)
                $(cmake-utils_use_disable declarative QtDeclarative)
                $(cmake-utils_use_disable designer QtDesigner)
                $(cmake-utils_use_disable designer QtUiTools)
                $(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)
        )

        if use phonon && has_version "media-libs/phonon[qt4(+)]"; then
                # bug 475786
                mycmakeargs+=(
                        -DQT_PHONON_INCLUDE_DIR="${EPREFIX}/usr/include/phonon"
                        
-DQT_PHONON_LIBRARY_RELEASE="${EPREFIX}/usr/$(get_libdir)/libphonon.so"
                )
        fi

        configuration() {
                local mycmakeargs=(
                        -DPYTHON_SUFFIX="-${EPYTHON}"
                        "${mycmakeargs[@]}"
                )
                cmake-utils_src_configure
        }
        python_foreach_impl configuration
}

src_compile() {
        python_foreach_impl cmake-utils_src_make
}

src_test() {
        local PYTHONDONTWRITEBYTECODE
        export PYTHONDONTWRITEBYTECODE

        local VIRTUALX_COMMAND="cmake-utils_src_test"
        python_foreach_impl virtualmake
}

src_install() {
        installation() {
                cmake-utils_src_install
                mv "${ED}"usr/$(get_libdir)/pkgconfig/${PN}{,-${EPYTHON}}.pc || 
die
        }
        python_foreach_impl installation
}




Reply via email to