public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/pyqtgraph/
@ 2013-09-07 12:45 Kacper Kowalik
  0 siblings, 0 replies; 4+ messages in thread
From: Kacper Kowalik @ 2013-09-07 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     3a362a3d194f1d025ad492a54f9186fe17a19469
Author:     Guillaume Poulin <poulin.guillaume <AT> gmail <DOT> com>
AuthorDate: Sat Sep  7 10:50:12 2013 +0000
Commit:     Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
CommitDate: Sat Sep  7 10:50:12 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3a362a3d

Add dev-python/pyqtgraph

Package-Manager: portage-2.2.1

---
 dev-python/pyqtgraph/ChangeLog              |  9 ++++++++
 dev-python/pyqtgraph/metadata.xml           | 14 +++++++++++++
 dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild | 32 +++++++++++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/dev-python/pyqtgraph/ChangeLog b/dev-python/pyqtgraph/ChangeLog
new file mode 100644
index 0000000..7aad076
--- /dev/null
+++ b/dev-python/pyqtgraph/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-python/pyqtgraph
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*pyqtgraph-0.9.7 (07 Sep 2013)
+
+  07 Sep 2013; Guillaume Poulin <poulin.guillaume@gmail.com> +metadata.xml,
+  +pyqtgraph-0.9.7.ebuild:
+  Add dev-python/pyqtgraph

diff --git a/dev-python/pyqtgraph/metadata.xml b/dev-python/pyqtgraph/metadata.xml
new file mode 100644
index 0000000..b05689e
--- /dev/null
+++ b/dev-python/pyqtgraph/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>sci</herd>
+	<longdescription>
+		PyQtGraph is a pure-python graphics and GUI library built on
+		PyQt4/PySide and numpy. It is intended for use in mathematics /
+		scientific / engineering applications. Despite being written entirely
+		in python, the library is very fast due to its heavy leverage of numpy
+		for number crunching and Qt's GraphicsView framework for fast display.
+		PyQtGraph is distributed under the MIT open-source license.
+	</longdescription>
+	<use><flag name="example">Install example of code</flag></use>
+</pkgmetadata>

diff --git a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
new file mode 100644
index 0000000..5d8f7f5
--- /dev/null
+++ b/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+PYTHON_COMPAT=( python{2_6,2_7,3_2} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure-python graphics and GUI library built on PyQt4/PySide and numpy."
+HOMEPAGE="http://www.pyqtgraph.org/"
+SRC_URI="http://www.pyqtgraph.org/downloads/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos ~x86-linux"
+IUSE="opengl example"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+	dev-python/numpy
+	sci-libs/scipy
+	opengl? ( dev-python/pyopengl )
+	|| ( >=dev-python/PyQt4-4.7.0 dev-python/pyside )"
+
+src_prepare() {
+	use opengl || rm -r pyqtgraph/opengl
+	if ! use example; then
+		 sed -i -e '/package_dir/d' setup.py || die "Unable to remove example"
+		 sed -i -e "s/+ \['pyqtgraph\.examples'\]//" setup.py || die "Unable to remove example"
+	fi
+}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pyqtgraph/
@ 2013-09-07 12:45 Kacper Kowalik
  0 siblings, 0 replies; 4+ messages in thread
From: Kacper Kowalik @ 2013-09-07 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     80aeda948f6a4444d47b71ec12a9368936a91267
Author:     Guillaume Poulin <poulin.guillaume <AT> gmail <DOT> com>
AuthorDate: Sat Sep  7 11:46:16 2013 +0000
Commit:     Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
CommitDate: Sat Sep  7 11:46:16 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=80aeda94

add [${PYTHON_USEDEP}] to depencies to sastify python-r1

Package-Manager: portage-2.2.1

---
 dev-python/pyqtgraph/ChangeLog              | 4 ++++
 dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-python/pyqtgraph/ChangeLog b/dev-python/pyqtgraph/ChangeLog
index 7aad076..86d0a71 100644
--- a/dev-python/pyqtgraph/ChangeLog
+++ b/dev-python/pyqtgraph/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  07 Sep 2013; Guillaume Poulin <poulin.guillaume@gmail.com>
+  pyqtgraph-0.9.7.ebuild:
+  add [${PYTHON_USEDEP}] to depencies to sastify python-r1
+
 *pyqtgraph-0.9.7 (07 Sep 2013)
 
   07 Sep 2013; Guillaume Poulin <poulin.guillaume@gmail.com> +metadata.xml,

diff --git a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
index 5d8f7f5..aa9868c 100644
--- a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
+++ b/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
@@ -18,10 +18,10 @@ IUSE="opengl example"
 
 DEPEND=""
 RDEPEND="${DEPEND}
-	dev-python/numpy
-	sci-libs/scipy
-	opengl? ( dev-python/pyopengl )
-	|| ( >=dev-python/PyQt4-4.7.0 dev-python/pyside )"
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
+	|| ( >=dev-python/PyQt4-4.7.0[${PYTHON_USEDEP}] dev-python/pyside[${PYTHON_USEDEP}] )"
 
 src_prepare() {
 	use opengl || rm -r pyqtgraph/opengl


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pyqtgraph/
@ 2013-09-07 12:45 Kacper Kowalik
  0 siblings, 0 replies; 4+ messages in thread
From: Kacper Kowalik @ 2013-09-07 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     fb449786137f3f4f5713158a10e4c1afddbc9beb
Author:     Guillaume Poulin <poulin.guillaume <AT> gmail <DOT> com>
AuthorDate: Sat Sep  7 11:49:01 2013 +0000
Commit:     Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
CommitDate: Sat Sep  7 11:49:01 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fb449786

remove untested keywords

Package-Manager: portage-2.2.1

---
 dev-python/pyqtgraph/ChangeLog              | 4 ++++
 dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-python/pyqtgraph/ChangeLog b/dev-python/pyqtgraph/ChangeLog
index 86d0a71..bac3994 100644
--- a/dev-python/pyqtgraph/ChangeLog
+++ b/dev-python/pyqtgraph/ChangeLog
@@ -4,6 +4,10 @@
 
   07 Sep 2013; Guillaume Poulin <poulin.guillaume@gmail.com>
   pyqtgraph-0.9.7.ebuild:
+  remove untested keywords
+
+  07 Sep 2013; Guillaume Poulin <poulin.guillaume@gmail.com>
+  pyqtgraph-0.9.7.ebuild:
   add [${PYTHON_USEDEP}] to depencies to sastify python-r1
 
 *pyqtgraph-0.9.7 (07 Sep 2013)

diff --git a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
index aa9868c..b5325d2 100644
--- a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
+++ b/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.pyqtgraph.org/downloads/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos ~x86-linux"
+KEYWORDS="~amd64 ~x86"
 IUSE="opengl example"
 
 DEPEND=""


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

* [gentoo-commits] proj/sci:master commit in: dev-python/pyqtgraph/
@ 2013-11-25 18:48 Justin Lecher
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher @ 2013-11-25 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ca8e33fbbd443dbc076bf47e46a6a641d5a7a42a
Author:     Guillaume Poulin <poulin.guillaume <AT> gmail <DOT> com>
AuthorDate: Mon Nov 25 12:49:02 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Nov 25 12:49:02 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ca8e33fb

Update PyQtGraph to 0.9.8. Support of python 3.3

Package-Manager: portage-2.2.7

---
 dev-python/pyqtgraph/ChangeLog                                      | 6 ++++++
 .../pyqtgraph/{pyqtgraph-0.9.7.ebuild => pyqtgraph-0.9.8.ebuild}    | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/pyqtgraph/ChangeLog b/dev-python/pyqtgraph/ChangeLog
index bac3994..417792d 100644
--- a/dev-python/pyqtgraph/ChangeLog
+++ b/dev-python/pyqtgraph/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*pyqtgraph-0.9.8 (25 Nov 2013)
+
+  25 Nov 2013; Guillaume Poulin <poulin.guillaume@gmail.com>
+  +pyqtgraph-0.9.8.ebuild, -pyqtgraph-0.9.7.ebuild:
+  Update PyQtGraph to 0.9.8. Support of python 3.3
+
   07 Sep 2013; Guillaume Poulin <poulin.guillaume@gmail.com>
   pyqtgraph-0.9.7.ebuild:
   remove untested keywords

diff --git a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.9.8.ebuild
similarity index 95%
rename from dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
rename to dev-python/pyqtgraph/pyqtgraph-0.9.8.ebuild
index b5325d2..f413626 100644
--- a/dev-python/pyqtgraph/pyqtgraph-0.9.7.ebuild
+++ b/dev-python/pyqtgraph/pyqtgraph-0.9.8.ebuild
@@ -3,7 +3,7 @@
 # $Header: $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2} )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
 
 inherit distutils-r1
 


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

end of thread, other threads:[~2013-11-25 18:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-25 18:48 [gentoo-commits] proj/sci:master commit in: dev-python/pyqtgraph/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2013-09-07 12:45 Kacper Kowalik
2013-09-07 12:45 Kacper Kowalik
2013-09-07 12:45 Kacper Kowalik

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