* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.11.5.ebuild ChangeLog
@ 2014-01-10 4:21 Chris Reffett (creffett)
0 siblings, 0 replies; 5+ messages in thread
From: Chris Reffett (creffett) @ 2014-01-10 4:21 UTC (permalink / raw
To: gentoo-commits
creffett 14/01/10 04:21:56
Modified: ChangeLog
Added: pykde4-4.11.5.ebuild
Log:
Bump KDE SC 4.11.5
(Portage version: 2.2.8/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 42618354)
Revision Changes Path
1.254 kde-base/pykde4/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.254&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.254&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.253&r2=1.254
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- ChangeLog 18 Dec 2013 19:58:03 -0000 1.253
+++ ChangeLog 10 Jan 2014 04:21:56 -0000 1.254
@@ -1,6 +1,12 @@
# ChangeLog for kde-base/pykde4
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.253 2013/12/18 19:58:03 johu Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.254 2014/01/10 04:21:56 creffett Exp $
+
+*pykde4-4.11.5 (10 Jan 2014)
+
+ 10 Jan 2014; Chris Reffett <creffett@gentoo.org> +pykde4-4.11.5.ebuild,
+ files/kpythonpluginfactorywrapper.c-r1, files/pykde4-4.10.1-arm-sip.patch:
+ Bump KDE SC 4.11.5
*pykde4-4.12.0 (18 Dec 2013)
1.1 kde-base/pykde4/pykde4-4.11.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.1&content-type=text/plain
Index: pykde4-4.11.5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.1 2014/01/10 04:21:56 creffett Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
PYTHON_REQ_USE="threads"
OPENGL_REQUIRED="always"
inherit python-r1 portability kde4-base multilib
DESCRIPTION="Python bindings for KDE4"
KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug doc examples semantic-desktop test"
HOMEPAGE="http://techbase.kde.org/Development/Languages/Python"
REQUIRED_USE="${PYTHON_REQUIRED_USE} test? ( semantic-desktop )"
RDEPEND="
${PYTHON_DEPS}
>=dev-python/PyQt4-4.9.5[${PYTHON_USEDEP},dbus,declarative,script(+),sql,svg,webkit,X]
>=dev-python/sip-4.14:=[${PYTHON_USEDEP}]
$(add_kdebase_dep kdelibs 'opengl,semantic-desktop?')
semantic-desktop? (
$(add_kdebase_dep kdepimlibs)
>=dev-libs/soprano-2.9.0
)
"
DEPEND="${RDEPEND}
dev-lang/python-exec:0[${PYTHON_USEDEP}]
sys-devel/libtool
"
pkg_setup() {
kde4-base_pkg_setup
have_python2=false
scan_python_versions() {
if [[ ${EPYTHON} == python2.* ]]; then
have_python2=true
fi
}
python_foreach_impl scan_python_versions
if ! ${have_python2}; then
ewarn "You do not have a Python 2 version selected."
ewarn "kpythonpluginfactory will not be built"
fi
}
src_prepare() {
kde4-base_src_prepare
if ! use examples; then
sed -e '/^ADD_SUBDIRECTORY(examples)/s/^/# DISABLED /' -i CMakeLists.txt \
|| die "Failed to disable examples"
fi
# See bug 322351
use arm && epatch "${FILESDIR}/${PN}-4.10.1-arm-sip.patch"
sed -e 's/kpythonpluginfactory /kpython${PYTHON_SHORT_VERSION}pluginfactory /g' \
-i kpythonpluginfactory/CMakeLists.txt || die
if ${have_python2}; then
mkdir -p "${WORKDIR}/wrapper" || die "failed to copy wrapper"
cp "${FILESDIR}/kpythonpluginfactorywrapper.c-r1" "${WORKDIR}/wrapper/kpythonpluginfactorywrapper.c" || die "failed to copy wrapper"
fi
python_copy_sources
}
src_configure() {
configuration() {
local mycmakeargs=(
-DWITH_PolkitQt=OFF
-DWITH_QScintilla=OFF
$(cmake-utils_use_with semantic-desktop Soprano)
$(cmake-utils_use_with semantic-desktop Nepomuk)
$(cmake-utils_use_with semantic-desktop KdepimLibs)
-DPYTHON_EXECUTABLE=${PYTHON}
-DPYKDEUIC4_ALTINSTALL=TRUE
)
local CMAKE_BUILD_DIR=${S}_build-${PYTHON_ABI}
kde4-base_src_configure
}
python_foreach_impl run_in_build_dir configuration
}
echo_and_run() {
echo "$@"
"$@"
}
src_compile() {
compilation() {
local CMAKE_BUILD_DIR=${S}_build-${PYTHON_ABI}
kde4-base_src_compile
}
python_foreach_impl run_in_build_dir compilation
if ${have_python2}; then
pushd "${WORKDIR}/wrapper" > /dev/null
echo_and_run libtool --tag=CC --mode=compile $(tc-getCC) \
-shared \
${CFLAGS} ${CPPFLAGS} \
-DEPREFIX="\"${EPREFIX}\"" \
-DPLUGIN_DIR="\"/usr/$(get_libdir)/kde4\"" -c \
-o kpythonpluginfactorywrapper.lo \
kpythonpluginfactorywrapper.c
echo_and_run libtool --tag=CC --mode=link $(tc-getCC) \
-shared -module -avoid-version \
${CFLAGS} ${LDFLAGS} \
-o kpythonpluginfactory.la \
-rpath "${EPREFIX}/usr/$(get_libdir)/kde4" \
kpythonpluginfactorywrapper.lo \
$(dlopen_lib)
popd > /dev/null
fi
}
src_test() {
python_foreach_impl run_in_build_dir kde4-base_src_test
}
src_install() {
installation() {
emake DESTDIR="${D}" install
mv "${ED}"/usr/bin/pykdeuic4-{${EPYTHON/python/},${EPYTHON}} || die
python_optimize
}
python_foreach_impl run_in_build_dir installation
dosym python-exec /usr/bin/pykdeuic4
# As we don't call the eclass's src_install, we have to install the docs manually
DOCS=("${S}"/{AUTHORS,NEWS,README})
use doc && HTML_DOCS=("${S}/docs/html/")
base_src_install_docs
if ${have_python2}; then
pushd "${WORKDIR}/wrapper" > /dev/null
echo_and_run libtool --mode=install install kpythonpluginfactory.la "${ED}/usr/$(get_libdir)/kde4/kpythonpluginfactory.la"
rm "${ED}/usr/$(get_libdir)/kde4/kpythonpluginfactory.la"
popd > /dev/null
fi
}
pkg_postinst() {
kde4-base_pkg_postinst
if use examples; then
echo
elog "PyKDE4 examples have been installed to"
elog "${EPREFIX}/usr/share/apps/${PN}/examples"
echo
fi
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.11.5.ebuild ChangeLog
@ 2014-02-09 10:04 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-09 10:04 UTC (permalink / raw
To: gentoo-commits
ago 14/02/09 10:04:39
Modified: pykde4-4.11.5.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #493782
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 kde-base/pykde4/pykde4-4.11.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?r1=1.2&r2=1.3
Index: pykde4-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pykde4-4.11.5.ebuild 20 Jan 2014 08:00:22 -0000 1.2
+++ pykde4-4.11.5.ebuild 9 Feb 2014 10:04:39 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.2 2014/01/20 08:00:22 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.3 2014/02/09 10:04:39 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -10,7 +10,7 @@
inherit python-r1 portability kde4-base multilib
DESCRIPTION="Python bindings for KDE4"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug doc examples semantic-desktop test"
HOMEPAGE="http://techbase.kde.org/Development/Languages/Python"
1.260 kde-base/pykde4/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.260&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.260&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.259&r2=1.260
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog 6 Feb 2014 23:20:25 -0000 1.259
+++ ChangeLog 9 Feb 2014 10:04:39 -0000 1.260
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/pykde4
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.259 2014/02/06 23:20:25 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.260 2014/02/09 10:04:39 ago Exp $
+
+ 09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> pykde4-4.11.5.ebuild:
+ Stable for amd64, wrt bug #493782
*pykde4-4.12.2 (06 Feb 2014)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.11.5.ebuild ChangeLog
@ 2014-02-16 7:18 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-16 7:18 UTC (permalink / raw
To: gentoo-commits
ago 14/02/16 07:18:41
Modified: pykde4-4.11.5.ebuild ChangeLog
Log:
Stable for x86, wrt bug #493782
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 kde-base/pykde4/pykde4-4.11.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?r1=1.3&r2=1.4
Index: pykde4-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pykde4-4.11.5.ebuild 9 Feb 2014 10:04:39 -0000 1.3
+++ pykde4-4.11.5.ebuild 16 Feb 2014 07:18:41 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.3 2014/02/09 10:04:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.4 2014/02/16 07:18:41 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -10,7 +10,7 @@
inherit python-r1 portability kde4-base multilib
DESCRIPTION="Python bindings for KDE4"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug doc examples semantic-desktop test"
HOMEPAGE="http://techbase.kde.org/Development/Languages/Python"
1.262 kde-base/pykde4/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.262&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.262&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.261&r2=1.262
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog 14 Feb 2014 12:23:37 -0000 1.261
+++ ChangeLog 16 Feb 2014 07:18:41 -0000 1.262
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/pykde4
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.261 2014/02/14 12:23:37 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.262 2014/02/16 07:18:41 ago Exp $
+
+ 16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> pykde4-4.11.5.ebuild:
+ Stable for x86, wrt bug #493782
14 Feb 2014; Johannes Huber <johu@gentoo.org> -pykde4-4.12.1.ebuild:
Remove KDE SC 4.12.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.11.5.ebuild ChangeLog
@ 2014-02-20 9:27 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-20 9:27 UTC (permalink / raw
To: gentoo-commits
ago 14/02/20 09:27:21
Modified: pykde4-4.11.5.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #493782
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 kde-base/pykde4/pykde4-4.11.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?r1=1.4&r2=1.5
Index: pykde4-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pykde4-4.11.5.ebuild 16 Feb 2014 07:18:41 -0000 1.4
+++ pykde4-4.11.5.ebuild 20 Feb 2014 09:27:21 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.4 2014/02/16 07:18:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.5 2014/02/20 09:27:21 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -10,7 +10,7 @@
inherit python-r1 portability kde4-base multilib
DESCRIPTION="Python bindings for KDE4"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug doc examples semantic-desktop test"
HOMEPAGE="http://techbase.kde.org/Development/Languages/Python"
1.263 kde-base/pykde4/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.263&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.263&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.262&r2=1.263
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog 16 Feb 2014 07:18:41 -0000 1.262
+++ ChangeLog 20 Feb 2014 09:27:21 -0000 1.263
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/pykde4
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.262 2014/02/16 07:18:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.263 2014/02/20 09:27:21 ago Exp $
+
+ 20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> pykde4-4.11.5.ebuild:
+ Stable for ppc, wrt bug #493782
16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> pykde4-4.11.5.ebuild:
Stable for x86, wrt bug #493782
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.11.5.ebuild ChangeLog
@ 2014-02-23 9:08 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-23 9:08 UTC (permalink / raw
To: gentoo-commits
ago 14/02/23 09:08:10
Modified: pykde4-4.11.5.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #493782
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 kde-base/pykde4/pykde4-4.11.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild?r1=1.5&r2=1.6
Index: pykde4-4.11.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pykde4-4.11.5.ebuild 20 Feb 2014 09:27:21 -0000 1.5
+++ pykde4-4.11.5.ebuild 23 Feb 2014 09:08:10 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.5 2014/02/20 09:27:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.11.5.ebuild,v 1.6 2014/02/23 09:08:10 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -10,7 +10,7 @@
inherit python-r1 portability kde4-base multilib
DESCRIPTION="Python bindings for KDE4"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="debug doc examples semantic-desktop test"
HOMEPAGE="http://techbase.kde.org/Development/Languages/Python"
1.264 kde-base/pykde4/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.264&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.264&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.263&r2=1.264
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -r1.263 -r1.264
--- ChangeLog 20 Feb 2014 09:27:21 -0000 1.263
+++ ChangeLog 23 Feb 2014 09:08:10 -0000 1.264
@@ -1,6 +1,9 @@
# ChangeLog for kde-base/pykde4
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.263 2014/02/20 09:27:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.264 2014/02/23 09:08:10 ago Exp $
+
+ 23 Feb 2014; Agostino Sarubbo <ago@gentoo.org> pykde4-4.11.5.ebuild:
+ Stable for ppc64, wrt bug #493782
20 Feb 2014; Agostino Sarubbo <ago@gentoo.org> pykde4-4.11.5.ebuild:
Stable for ppc, wrt bug #493782
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-02-23 9:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-23 9:08 [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.11.5.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2014-02-20 9:27 Agostino Sarubbo (ago)
2014-02-16 7:18 Agostino Sarubbo (ago)
2014-02-09 10:04 Agostino Sarubbo (ago)
2014-01-10 4:21 Chris Reffett (creffett)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox