public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/qscintilla-python: ChangeLog qscintilla-python-2.3.2-r1.ebuild
@ 2009-03-07 20:28 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2009-03-07 20:28 UTC (permalink / raw
  To: gentoo-commits

patrick     09/03/07 20:28:35

  Modified:             ChangeLog
  Added:                qscintilla-python-2.3.2-r1.ebuild
  Log:
  Eapi2ification. USE-Deps for the win.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 dev-python/qscintilla-python/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	20 Feb 2009 17:53:11 -0000	1.20
+++ ChangeLog	7 Mar 2009 20:28:35 -0000	1.21
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/qscintilla-python
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.20 2009/02/20 17:53:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.21 2009/03/07 20:28:35 patrick Exp $
+
+*qscintilla-python-2.3.2-r1 (07 Mar 2009)
+
+  07 Mar 2009; Patrick Lauer <patrick@gentoo.org>
+  +qscintilla-python-2.3.2-r1.ebuild:
+  Eapi2ification. USE-Deps for the win.
 
   20 Feb 2009; Jeroen Roovers <jer@gentoo.org>
   qscintilla-python-2.3.2.ebuild:



1.1                  dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: qscintilla-python-2.3.2-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.1 2009/03/07 20:28:35 patrick Exp $

EAPI="2"

inherit eutils python

MY_PN="qscintilla"
MY_P="${MY_PN/qs/QS}-gpl-${PV}"

DESCRIPTION="Python bindings for Qscintilla"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
SRC_URI="http://www.riverbankcomputing.com/static/Downloads/QScintilla2/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="qt4"

DEPEND=">=dev-python/sip-4.4
	=x11-libs/qscintilla-${PV}*[qt4?]
	qt4? ( >=dev-python/PyQt4-4.4 )
	!qt4? ( >=dev-python/PyQt-3.17.6  )"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_P}/Python

#pkg_setup() {
#	# this package needs to have same qt flags with qscintilla.
#	if use qt4; then
#		if ! built_with_use 'x11-libs/qscintilla' 'qt4'; then
#			eerror "Please build qscintilla with qt4 useflag."
#			die "qscintilla built without qt4."
#		fi
#	else
#		if built_with_use 'x11-libs/qscintilla' 'qt4'; then
#			eerror "Please build qscintilla without qt4 useflag."
#			die "qscintilla built with qt4"
#		fi
#	fi
#}

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}"/${PN}-2.2-nostrip.patch
}

src_configure() {
	local myconf="-o /usr/lib -n /usr/include"
	if use qt4; then
		myconf="${myconf} -p 4"
	else
		myconf="${myconf} -p 3"
	fi

	python_version
	${python} configure.py ${myconf} || die "configure.py failed"
}
src_compile() {
	emake || die "emake failed"
}

src_install() {
	python_need_rebuild
	emake DESTDIR="${D}" install || die "emake install failed"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-python/qscintilla-python: ChangeLog qscintilla-python-2.3.2-r1.ebuild
@ 2009-06-01 22:10 Ben de Groot (yngwin)
  0 siblings, 0 replies; 4+ messages in thread
From: Ben de Groot (yngwin) @ 2009-06-01 22:10 UTC (permalink / raw
  To: gentoo-commits

yngwin      09/06/01 22:10:04

  Modified:             ChangeLog qscintilla-python-2.3.2-r1.ebuild
  Log:
  Correct use dep, move patching to src_prepare
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-python/qscintilla-python/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	27 Mar 2009 23:03:30 -0000	1.22
+++ ChangeLog	1 Jun 2009 22:10:04 -0000	1.23
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/qscintilla-python
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.22 2009/03/27 23:03:30 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.23 2009/06/01 22:10:04 yngwin Exp $
+
+  01 Jun 2009; Ben de Groot <yngwin@gentoo.org>
+  qscintilla-python-2.3.2-r1.ebuild:
+  Correct use dep, move patching to src_prepare
 
   27 Mar 2009; Ben de Groot <yngwin@gentoo.org>
   -files/qscintilla-python-2.1-nostrip.patch, -qscintilla-python-2.1.ebuild,



1.2                  dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?r1=1.1&r2=1.2

Index: qscintilla-python-2.3.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qscintilla-python-2.3.2-r1.ebuild	7 Mar 2009 20:28:35 -0000	1.1
+++ qscintilla-python-2.3.2-r1.ebuild	1 Jun 2009 22:10:04 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.1 2009/03/07 20:28:35 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.2 2009/06/01 22:10:04 yngwin Exp $
 
 EAPI="2"
 
@@ -19,32 +19,14 @@
 IUSE="qt4"
 
 DEPEND=">=dev-python/sip-4.4
-	=x11-libs/qscintilla-${PV}*[qt4?]
+	=x11-libs/qscintilla-${PV}*[qt4=]
 	qt4? ( >=dev-python/PyQt4-4.4 )
 	!qt4? ( >=dev-python/PyQt-3.17.6  )"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}/Python
 
-#pkg_setup() {
-#	# this package needs to have same qt flags with qscintilla.
-#	if use qt4; then
-#		if ! built_with_use 'x11-libs/qscintilla' 'qt4'; then
-#			eerror "Please build qscintilla with qt4 useflag."
-#			die "qscintilla built without qt4."
-#		fi
-#	else
-#		if built_with_use 'x11-libs/qscintilla' 'qt4'; then
-#			eerror "Please build qscintilla without qt4 useflag."
-#			die "qscintilla built with qt4"
-#		fi
-#	fi
-#}
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-
+src_prepare() {
 	epatch "${FILESDIR}"/${PN}-2.2-nostrip.patch
 }
 
@@ -59,6 +41,7 @@
 	python_version
 	${python} configure.py ${myconf} || die "configure.py failed"
 }
+
 src_compile() {
 	emake || die "emake failed"
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-python/qscintilla-python: ChangeLog qscintilla-python-2.3.2-r1.ebuild
@ 2009-06-15  5:41 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2009-06-15  5:41 UTC (permalink / raw
  To: gentoo-commits

jer         09/06/15 05:41:33

  Modified:             ChangeLog qscintilla-python-2.3.2-r1.ebuild
  Log:
  Stable for HPPA (bug #274063).
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.25                 dev-python/qscintilla-python/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	9 Jun 2009 19:03:20 -0000	1.24
+++ ChangeLog	15 Jun 2009 05:41:33 -0000	1.25
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/qscintilla-python
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.24 2009/06/09 19:03:20 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.25 2009/06/15 05:41:33 jer Exp $
+
+  15 Jun 2009; Jeroen Roovers <jer@gentoo.org>
+  qscintilla-python-2.3.2-r1.ebuild:
+  Stable for HPPA (bug #274063).
 
 *qscintilla-python-2.4 (09 Jun 2009)
 



1.3                  dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?r1=1.2&r2=1.3

Index: qscintilla-python-2.3.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qscintilla-python-2.3.2-r1.ebuild	1 Jun 2009 22:10:04 -0000	1.2
+++ qscintilla-python-2.3.2-r1.ebuild	15 Jun 2009 05:41:33 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.2 2009/06/01 22:10:04 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.3 2009/06/15 05:41:33 jer Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="qt4"
 
 DEPEND=">=dev-python/sip-4.4






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

* [gentoo-commits] gentoo-x86 commit in dev-python/qscintilla-python: ChangeLog qscintilla-python-2.3.2-r1.ebuild
@ 2009-06-17 13:12 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-06-17 13:12 UTC (permalink / raw
  To: gentoo-commits

fauli       09/06/17 13:12:16

  Modified:             ChangeLog qscintilla-python-2.3.2-r1.ebuild
  Log:
  stable x86, bug 274063
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.26                 dev-python/qscintilla-python/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	15 Jun 2009 05:41:33 -0000	1.25
+++ ChangeLog	17 Jun 2009 13:12:16 -0000	1.26
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/qscintilla-python
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.25 2009/06/15 05:41:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.26 2009/06/17 13:12:16 fauli Exp $
+
+  17 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
+  qscintilla-python-2.3.2-r1.ebuild:
+  stable x86, bug 274063
 
   15 Jun 2009; Jeroen Roovers <jer@gentoo.org>
   qscintilla-python-2.3.2-r1.ebuild:



1.4                  dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild?r1=1.3&r2=1.4

Index: qscintilla-python-2.3.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qscintilla-python-2.3.2-r1.ebuild	15 Jun 2009 05:41:33 -0000	1.3
+++ qscintilla-python-2.3.2-r1.ebuild	17 Jun 2009 13:12:16 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.3 2009/06/15 05:41:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.3.2-r1.ebuild,v 1.4 2009/06/17 13:12:16 fauli Exp $
 
 EAPI="2"
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="qt4"
 
 DEPEND=">=dev-python/sip-4.4






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

end of thread, other threads:[~2009-06-17 13:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-15  5:41 [gentoo-commits] gentoo-x86 commit in dev-python/qscintilla-python: ChangeLog qscintilla-python-2.3.2-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2009-06-17 13:12 Christian Faulhammer (fauli)
2009-06-01 22:10 Ben de Groot (yngwin)
2009-03-07 20:28 Patrick Lauer (patrick)

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