public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.6.3.ebuild ChangeLog
@ 2011-05-07 10:47 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 4+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-05-07 10:47 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/05/07 10:47:43

  Modified:             ChangeLog
  Added:                pykde4-4.6.3.ebuild
  Log:
  Version bump to KDE SC 4.6.3.
  
  (Portage version: 2.2.0_alpha31/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.108                kde-base/pykde4/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	4 May 2011 11:15:54 -0000	1.107
+++ ChangeLog	7 May 2011 10:47:43 -0000	1.108
@@ -1,6 +1,11 @@
 # ChangeLog for kde-base/pykde4
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.107 2011/05/04 11:15:54 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.108 2011/05/07 10:47:43 scarabeus Exp $
+
+*pykde4-4.6.3 (07 May 2011)
+
+  07 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> +pykde4-4.6.3.ebuild:
+  Version bump KDE SC 4.6.3
 
   04 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> -pykde4-4.4.5.ebuild,
   -files/pykde4-4.5.5-typedefs-fix.patch:



1.1                  kde-base/pykde4/pykde4-4.6.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.1&content-type=text/plain

Index: pykde4-4.6.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.1 2011/05/07 10:47:43 scarabeus Exp $

EAPI=3

KMNAME="kdebindings"
if [[ ${PV} != *9999 ]]; then
	KMMODULE="python/pykde4"
else
	# HACK HACK HACK
	KMMODULE="."
fi
OPENGL_REQUIRED="always"
PYTHON_USE_WITH="threads"
RESTRICT_PYTHON_ABIS="2.4"
KDE_SCM="git"
EGIT_REPONAME="pykde4"
inherit python kde4-meta

DESCRIPTION="Python bindings for KDE4"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug doc examples semantic-desktop"

# blocker added due to compatibility issues and error during compile time
DEPEND="
	!dev-python/pykde
	>=dev-python/sip-4.12
	$(add_kdebase_dep kdelibs 'opengl,semantic-desktop=')
	semantic-desktop? ( $(add_kdebase_dep kdepimlibs 'semantic-desktop') )
	aqua? ( >=dev-python/PyQt4-4.8.2[dbus,declarative,sql,svg,webkit,aqua] )
	!aqua? ( >=dev-python/PyQt4-4.8.2[dbus,declarative,sql,svg,webkit,X] )
"
RDEPEND="${DEPEND}"

pkg_setup() {
	python_pkg_setup
	kde4-meta_pkg_setup
}

src_prepare() {
	kde4-meta_src_prepare

	if ! use examples; then
		sed -e '/^ADD_SUBDIRECTORY(examples)/s/^/# DISABLED /' -i ${KMMODULE}/CMakeLists.txt \
			|| die "Failed to disable examples"
	fi

	# See bug 322351
	use arm && epatch "${FILESDIR}/${PN}-4.4.4-arm-sip.patch"
}

src_configure() {
	# Required for KTabWidget::label
	append-cxxflags -DKDE3_SUPPORT

	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)
	)

	kde4-meta_src_configure
}

src_install() {
	use doc && HTML_DOCS=("${S}/${KMMODULE}/docs/html/")

	kde4-meta_src_install

	python_convert_shebangs -q -r $(python_get_version) "${ED}"
	python_clean_installation_image -q
}

pkg_postinst() {
	kde4-meta_pkg_postinst

	python_mod_optimize PyKDE4 PyQt4

	if use examples; then
		echo
		elog "PyKDE4 examples have been installed to"
		elog "${EKDEDIR}/share/apps/${PN}/examples"
		echo
	fi
}

pkg_postrm() {
	kde4-meta_pkg_postrm

	python_mod_cleanup PyKDE4 PyQt4
}






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

* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.6.3.ebuild ChangeLog
@ 2011-06-08 23:43 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2011-06-08 23:43 UTC (permalink / raw
  To: gentoo-commits

tomka       11/06/08 23:43:25

  Modified:             pykde4-4.6.3.ebuild ChangeLog
  Log:
  x86 stable per bug 369979
  
  (Portage version: 2.1.9.50/cvs/Linux i686)

Revision  Changes    Path
1.2                  kde-base/pykde4/pykde4-4.6.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?r1=1.1&r2=1.2

Index: pykde4-4.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pykde4-4.6.3.ebuild	7 May 2011 10:47:43 -0000	1.1
+++ pykde4-4.6.3.ebuild	8 Jun 2011 23:43:25 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.1 2011/05/07 10:47:43 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.2 2011/06/08 23:43:25 tomka Exp $
 
 EAPI=3
 
@@ -19,7 +19,7 @@
 inherit python kde4-meta
 
 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"
 
 # blocker added due to compatibility issues and error during compile time



1.113                kde-base/pykde4/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.112&r2=1.113

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	2 Jun 2011 21:57:59 -0000	1.112
+++ ChangeLog	8 Jun 2011 23:43:25 -0000	1.113
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/pykde4
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.112 2011/06/02 21:57:59 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.113 2011/06/08 23:43:25 tomka Exp $
+
+  08 Jun 2011; Thomas Kahle <tomka@gentoo.org> pykde4-4.6.3.ebuild:
+  x86 stable per bug 369979
 
   02 Jun 2011; Andreas K. Huettel <dilfridge@gentoo.org>
   -pykde4-4.4.5-r1.ebuild, -files/pykde4-4.4.5-PyQt4-4.7.5.patch,






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

* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.6.3.ebuild ChangeLog
@ 2011-06-10 11:50 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-06-10 11:50 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/06/10 11:50:33

  Modified:             pykde4-4.6.3.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #369979
  
  (Portage version: 2.1.9.49/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  kde-base/pykde4/pykde4-4.6.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?r1=1.2&r2=1.3

Index: pykde4-4.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pykde4-4.6.3.ebuild	8 Jun 2011 23:43:25 -0000	1.2
+++ pykde4-4.6.3.ebuild	10 Jun 2011 11:50:33 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.2 2011/06/08 23:43:25 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.3 2011/06/10 11:50:33 hwoarang Exp $
 
 EAPI=3
 
@@ -19,7 +19,7 @@
 inherit python kde4-meta
 
 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"
 
 # blocker added due to compatibility issues and error during compile time



1.114                kde-base/pykde4/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.113&r2=1.114

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog	8 Jun 2011 23:43:25 -0000	1.113
+++ ChangeLog	10 Jun 2011 11:50:33 -0000	1.114
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/pykde4
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.113 2011/06/08 23:43:25 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.114 2011/06/10 11:50:33 hwoarang Exp $
+
+  10 Jun 2011; Markos Chandras <hwoarang@gentoo.org> pykde4-4.6.3.ebuild:
+  Stable on amd64 wrt bug #369979
 
   08 Jun 2011; Thomas Kahle <tomka@gentoo.org> pykde4-4.6.3.ebuild:
   x86 stable per bug 369979






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

* [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.6.3.ebuild ChangeLog
@ 2011-06-26  1:54 Brent Baude (ranger)
  0 siblings, 0 replies; 4+ messages in thread
From: Brent Baude (ranger) @ 2011-06-26  1:54 UTC (permalink / raw
  To: gentoo-commits

ranger      11/06/26 01:54:34

  Modified:             pykde4-4.6.3.ebuild ChangeLog
  Log:
  Commiting kde-4.6.3 ppc on bug 369979
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.4                  kde-base/pykde4/pykde4-4.6.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild?r1=1.3&r2=1.4

Index: pykde4-4.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pykde4-4.6.3.ebuild	10 Jun 2011 11:50:33 -0000	1.3
+++ pykde4-4.6.3.ebuild	26 Jun 2011 01:54:34 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.3 2011/06/10 11:50:33 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/pykde4-4.6.3.ebuild,v 1.4 2011/06/26 01:54:34 ranger Exp $
 
 EAPI=3
 
@@ -19,7 +19,7 @@
 inherit python kde4-meta
 
 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"
 
 # blocker added due to compatibility issues and error during compile time



1.120                kde-base/pykde4/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.120&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?rev=1.120&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/pykde4/ChangeLog?r1=1.119&r2=1.120

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ChangeLog	24 Jun 2011 21:01:56 -0000	1.119
+++ ChangeLog	26 Jun 2011 01:54:34 -0000	1.120
@@ -1,6 +1,9 @@
 # ChangeLog for kde-base/pykde4
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.119 2011/06/24 21:01:56 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/pykde4/ChangeLog,v 1.120 2011/06/26 01:54:34 ranger Exp $
+
+  26 Jun 2011; Brent Baude <ranger@gentoo.org> pykde4-4.6.3.ebuild:
+  Marking pykde4-4.6.3 ppc stable for bug 369979
 
   24 Jun 2011; Markos Chandras <hwoarang@gentoo.org> pykde4-4.6.3-r1.ebuild,
   +files/pykde4-4.6.3-python-3.2.patch, pykde4-4.6.4-r1.ebuild:






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

end of thread, other threads:[~2011-06-26  2:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-10 11:50 [gentoo-commits] gentoo-x86 commit in kde-base/pykde4: pykde4-4.6.3.ebuild ChangeLog Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2011-06-26  1:54 Brent Baude (ranger)
2011-06-08 23:43 Thomas Kahle (tomka)
2011-05-07 10:47 Tomas Chvatal (scarabeus)

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