public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-09-01 14:10 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-09-01 14:10 UTC (permalink / raw
  To: gentoo-commits

commit:     d3c86a165817f84a005f1f3629c383e6ff3168f2
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  1 14:09:53 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Sep  1 14:09:53 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=d3c86a16

dev-python/qtconsole: Resolve circular dependency

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/qtconsole/qtconsole-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index e30db23..3749a84 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -23,7 +23,6 @@ SLOT="0"
 IUSE="test"
 
 RDEPEND="
-	dev-python/ipython[${PYTHON_USEDEP}]
 	dev-python/ipykernel[${PYTHON_USEDEP}]
 	dev-python/jupyter_client[${PYTHON_USEDEP}]
 	"
@@ -39,6 +38,7 @@ DEPEND="${RDEPEND}
 	dev-python/pygments[${PYTHON_USEDEP}]
 	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]
 	"
+PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
 
 python_test() {
 	nosetests --with-coverage --cover-package qtconsole qtconsole || die


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-09-04  5:46 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-09-04  5:46 UTC (permalink / raw
  To: gentoo-commits

commit:     e3c4765d92c87b9a647789b10e3177cd9e0e18d6
Author:     Sean Vig <sean.v.775 <AT> gmail <DOT> com>
AuthorDate: Wed Sep  2 18:46:23 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 13:17:59 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e3c4765d

dev-python/qtconsole: Add doc use flag

 dev-python/qtconsole/ChangeLog             |  3 +++
 dev-python/qtconsole/qtconsole-9999.ebuild | 21 ++++++++++++++++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog
index abe4e47..c08d5b9 100644
--- a/dev-python/qtconsole/ChangeLog
+++ b/dev-python/qtconsole/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  02 Sep 2015; Sean Vig <sean.v.775@gmail.com> qtconsole-9999.ebuild:
+  dev-python/qtconsole: Add doc use flag
+
   25 Aug 2015; Marius Brehler <marbre@linux.sungazer.de> qtconsole-9999.ebuild:
   dev-python/qtconsole: Take over DEPEND from ipython
 

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index 071d25f..468688e 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -20,13 +20,14 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="test"
+IUSE="doc test"
 
 RDEPEND="
 	dev-python/ipykernel[${PYTHON_USEDEP}]
 	dev-python/jupyter_client[${PYTHON_USEDEP}]
 	"
 DEPEND="${RDEPEND}
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
 	test? (
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
 	)
@@ -40,6 +41,24 @@ DEPEND="${RDEPEND}
 	"
 PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
 
+python_prepare_all() {
+	# Prevent un-needed download during build
+	if use doc; then
+		sed -e "/^    'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
+	fi
+
+	distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
 python_test() {
 	nosetests --with-coverage --cover-package qtconsole qtconsole || die
 }
+
+python_install_all() {
+	use doc && HTML_DOCS=( docs/build/html/. )
+	distutils-r1_python_install_all
+}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-09-07  6:49 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-09-07  6:49 UTC (permalink / raw
  To: gentoo-commits

commit:     1f0133483ecf9c5f814a96ccf614b7f50896a884
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Sep  5 12:47:57 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Sep  5 12:47:57 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=1f013348

dev-python/qtconsole: Add deps for doc, fixes bug #559594

Package-Manager: portage-2.2.20.1

 dev-python/qtconsole/ChangeLog                                      | 6 ++++++
 .../qtconsole/{qtconsole-4.0.1.ebuild => qtconsole-4.0.1-r1.ebuild} | 0
 dev-python/qtconsole/qtconsole-9999.ebuild                          | 5 ++++-
 3 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog
index c08d5b9..9ef4ef5 100644
--- a/dev-python/qtconsole/ChangeLog
+++ b/dev-python/qtconsole/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*qtconsole-4.0.1-r1 (05 Sep 2015)
+
+  05 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +qtconsole-4.0.1-r1.ebuild, -qtconsole-4.0.1.ebuild, qtconsole-9999.ebuild:
+  dev-python/qtconsole: Add deps for doc, fixes bug #559594
+
   02 Sep 2015; Sean Vig <sean.v.775@gmail.com> qtconsole-9999.ebuild:
   dev-python/qtconsole: Add doc use flag
 

diff --git a/dev-python/qtconsole/qtconsole-4.0.1.ebuild b/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
similarity index 100%
rename from dev-python/qtconsole/qtconsole-4.0.1.ebuild
rename to dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index 468688e..0d1ec78 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -27,7 +27,10 @@ RDEPEND="
 	dev-python/jupyter_client[${PYTHON_USEDEP}]
 	"
 DEPEND="${RDEPEND}
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	doc? (
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+	)
 	test? (
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
 	)


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-09-22  7:22 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-09-22  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f35d93b948aa810947ed6538f7450749d8573e4c
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Sep 22 06:31:15 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Sep 22 06:31:58 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=f35d93b9

dev-python/qtconsole: Add ~x86 to KEYWORDS, fixes #561032

Package-Manager: portage-2.2.20.1

 dev-python/qtconsole/ChangeLog             | 3 +++
 dev-python/qtconsole/qtconsole-9999.ebuild | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog
index 9ef4ef5..3f59785 100644
--- a/dev-python/qtconsole/ChangeLog
+++ b/dev-python/qtconsole/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  22 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> qtconsole-9999.ebuild:
+  dev-python/qtconsole: Add ~x86 to KEYWORDS, fixes #561032
+
 *qtconsole-4.0.1-r1 (05 Sep 2015)
 
   05 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index 0d1ec78..8ac99f4 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -15,7 +15,7 @@ if [ ${PV} == "9999" ] ; then
 	EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
 else
 	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~x86"
 fi
 
 LICENSE="BSD"


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-10-16 14:40 Marius Brehler
  0 siblings, 0 replies; 13+ messages in thread
From: Marius Brehler @ 2015-10-16 14:40 UTC (permalink / raw
  To: gentoo-commits

commit:     c528e00270cfd4621570dfb3ad98a85460dfa557
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Oct 16 14:39:46 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Oct 16 14:39:46 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=c528e002

dev-python/qtconsole: Version bump to 4.1.0

Package-Manager: portage-2.2.20.1

 dev-python/qtconsole/ChangeLog              |  6 +++
 dev-python/qtconsole/qtconsole-4.1.0.ebuild | 67 +++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)

diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog
index 3f59785..34ac84d 100644
--- a/dev-python/qtconsole/ChangeLog
+++ b/dev-python/qtconsole/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*qtconsole-4.1.0 (16 Oct 2015)
+
+  16 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +qtconsole-4.1.0.ebuild:
+  dev-python/qtconsole: Version bump to 4.1.0
+
   22 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> qtconsole-9999.ebuild:
   dev-python/qtconsole: Add ~x86 to KEYWORDS, fixes #561032
 

diff --git a/dev-python/qtconsole/qtconsole-4.1.0.ebuild b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
new file mode 100644
index 0000000..8ac99f4
--- /dev/null
+++ b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
+HOMEPAGE="http://jupyter.org"
+
+if [ ${PV} == "9999" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
+else
+	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/ipykernel[${PYTHON_USEDEP}]
+	dev-python/jupyter_client[${PYTHON_USEDEP}]
+	"
+DEPEND="${RDEPEND}
+	doc? (
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/sphinx[${PYTHON_USEDEP}]
+	)
+	test? (
+		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
+	)
+	|| (
+		dev-python/PyQt4[${PYTHON_USEDEP},svg]
+		dev-python/PyQt5[${PYTHON_USEDEP},svg]
+		dev-python/pyside[${PYTHON_USEDEP},svg]
+	)
+	dev-python/pygments[${PYTHON_USEDEP}]
+	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]
+	"
+PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
+
+python_prepare_all() {
+	# Prevent un-needed download during build
+	if use doc; then
+		sed -e "/^    'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
+	fi
+
+	distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	nosetests --with-coverage --cover-package qtconsole qtconsole || die
+}
+
+python_install_all() {
+	use doc && HTML_DOCS=( docs/build/html/. )
+	distutils-r1_python_install_all
+}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-10-21 13:44 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-10-21 13:44 UTC (permalink / raw
  To: gentoo-commits

commit:     23c5b3d264faa8577aed77e3a2fb874ea0ea098e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 21 12:43:38 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Oct 21 12:43:38 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=23c5b3d2

dev-python/qtconsole: Add python3.5 support

split live code to live ebuild

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/qtconsole/qtconsole-4.1.0.ebuild | 13 ++++---------
 dev-python/qtconsole/qtconsole-9999.ebuild  | 15 +++++----------
 2 files changed, 9 insertions(+), 19 deletions(-)

diff --git a/dev-python/qtconsole/qtconsole-4.1.0.ebuild b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
index 8ac99f4..e7a1b30 100644
--- a/dev-python/qtconsole/qtconsole-4.1.0.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
@@ -3,23 +3,18 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 
 DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
 HOMEPAGE="http://jupyter.org"
-
-if [ ${PV} == "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
-else
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc test"
 
 RDEPEND="

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index 8ac99f4..b873ab2 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -3,23 +3,18 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
 
-inherit distutils-r1
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1 git-r3
 
 DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
 HOMEPAGE="http://jupyter.org"
-
-if [ ${PV} == "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
-else
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
+EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
 
 LICENSE="BSD"
 SLOT="0"
+KEYWORDS=""
 IUSE="doc test"
 
 RDEPEND="


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-11-08 18:54 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-11-08 18:54 UTC (permalink / raw
  To: gentoo-commits

commit:     dbd0b5a2fd350f8ec05c5c11802d41294660fc1c
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  8 18:54:24 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Nov  8 18:54:24 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=dbd0b5a2

dev-python/qtconsole: Resort order of qt supporting libs

/usr/local/lib/python3.4/site-packages/qtconsole/qt.py:

""" A Qt API selector that can be used to switch between PyQt4/5 and PySide.

This uses the ETS 4.0 selection pattern of:
PySide first, PyQt4 (API v2.) second, then PyQt5.

Do not use this if you need PyQt4 with the old QString/QVariant API.
"""

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild | 2 +-
 dev-python/qtconsole/qtconsole-4.1.0.ebuild    | 2 +-
 dev-python/qtconsole/qtconsole-9999.ebuild     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild b/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
index 8ac99f4..04b8823 100644
--- a/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
@@ -35,9 +35,9 @@ DEPEND="${RDEPEND}
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
 	)
 	|| (
+		dev-python/pyside[${PYTHON_USEDEP},svg]
 		dev-python/PyQt4[${PYTHON_USEDEP},svg]
 		dev-python/PyQt5[${PYTHON_USEDEP},svg]
-		dev-python/pyside[${PYTHON_USEDEP},svg]
 	)
 	dev-python/pygments[${PYTHON_USEDEP}]
 	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]

diff --git a/dev-python/qtconsole/qtconsole-4.1.0.ebuild b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
index e7a1b30..6bcdb1d 100644
--- a/dev-python/qtconsole/qtconsole-4.1.0.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
@@ -30,9 +30,9 @@ DEPEND="${RDEPEND}
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
 	)
 	|| (
+		dev-python/pyside[${PYTHON_USEDEP},svg]
 		dev-python/PyQt4[${PYTHON_USEDEP},svg]
 		dev-python/PyQt5[${PYTHON_USEDEP},svg]
-		dev-python/pyside[${PYTHON_USEDEP},svg]
 	)
 	dev-python/pygments[${PYTHON_USEDEP}]
 	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index b873ab2..cf213d6 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -30,9 +30,9 @@ DEPEND="${RDEPEND}
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
 	)
 	|| (
+		dev-python/pyside[${PYTHON_USEDEP},svg]
 		dev-python/PyQt4[${PYTHON_USEDEP},svg]
 		dev-python/PyQt5[${PYTHON_USEDEP},svg]
-		dev-python/pyside[${PYTHON_USEDEP},svg]
 	)
 	dev-python/pygments[${PYTHON_USEDEP}]
 	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-11-11 17:12 Justin Lecher
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-11-11 17:12 UTC (permalink / raw
  To: gentoo-commits

commit:     9c6f270d440659889fce4e809df1d86b00a9b900
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 11 17:11:31 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Nov 11 17:11:31 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=9c6f270d

dev-python/qtconsole: Depend on threading support in python

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild | 1 +
 dev-python/qtconsole/qtconsole-4.1.0.ebuild    | 1 +
 dev-python/qtconsole/qtconsole-9999.ebuild     | 1 +
 3 files changed, 3 insertions(+)

diff --git a/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild b/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
index 04b8823..35469c1 100644
--- a/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
 

diff --git a/dev-python/qtconsole/qtconsole-4.1.0.ebuild b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
index 6bcdb1d..cc13663 100644
--- a/dev-python/qtconsole/qtconsole-4.1.0.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.1.0.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
 

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index cf213d6..d9b9a4a 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -5,6 +5,7 @@
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1 git-r3
 


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-11-27 10:04 Marius Brehler
  0 siblings, 0 replies; 13+ messages in thread
From: Marius Brehler @ 2015-11-27 10:04 UTC (permalink / raw
  To: gentoo-commits

commit:     e68d1e197effc2654454e9f56add2563390f2ebe
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Fri Nov 27 10:03:48 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Fri Nov 27 10:03:48 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e68d1e19

dev-python/qtconsole: Version bump; state dependencies more precisely

Package-Manager: portage-2.2.20.1

 dev-python/qtconsole/ChangeLog                                      | 6 ++++++
 .../qtconsole/{qtconsole-4.1.0.ebuild => qtconsole-4.1.1.ebuild}    | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog
index 34ac84d..565b466 100644
--- a/dev-python/qtconsole/ChangeLog
+++ b/dev-python/qtconsole/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+*qtconsole-4.1.1 (27 Nov 2015)
+
+  27 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>
+  +qtconsole-4.1.1.ebuild, -qtconsole-4.1.0.ebuild:
+  dev-python/qtconsole: Version bump; state dependencies more precisely
+
 *qtconsole-4.1.0 (16 Oct 2015)
 
   16 Oct 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/qtconsole/qtconsole-4.1.0.ebuild b/dev-python/qtconsole/qtconsole-4.1.1.ebuild
similarity index 89%
rename from dev-python/qtconsole/qtconsole-4.1.0.ebuild
rename to dev-python/qtconsole/qtconsole-4.1.1.ebuild
index cc13663..6c23042 100644
--- a/dev-python/qtconsole/qtconsole-4.1.0.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.1.1.ebuild
@@ -20,12 +20,12 @@ IUSE="doc test"
 
 RDEPEND="
 	dev-python/ipykernel[${PYTHON_USEDEP}]
-	dev-python/jupyter_client[${PYTHON_USEDEP}]
+	>=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
 	"
 DEPEND="${RDEPEND}
 	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
+		>=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}]
+		>=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}]
 	)
 	test? (
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2015-11-28 17:58 Marius Brehler
  0 siblings, 0 replies; 13+ messages in thread
From: Marius Brehler @ 2015-11-28 17:58 UTC (permalink / raw
  To: gentoo-commits

commit:     2fd8ca3db9b71539b7681e346b77d131d121df3b
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Nov 28 17:47:32 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Nov 28 17:47:32 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=2fd8ca3d

dev-python/qtconsole: Moved to tree

Package-Manager: portage-2.2.20.1

 dev-python/qtconsole/ChangeLog                 |  4 ++
 dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild | 68 --------------------------
 dev-python/qtconsole/qtconsole-4.1.1.ebuild    | 63 ------------------------
 3 files changed, 4 insertions(+), 131 deletions(-)

diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog
index 565b466..4d10198 100644
--- a/dev-python/qtconsole/ChangeLog
+++ b/dev-python/qtconsole/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  28 Nov 2015; Marius Brehler <marbre@linux.sungazer.de> -Manifest,
+  -qtconsole-4.0.1-r1.ebuild, -qtconsole-4.1.1.ebuild:
+  dev-python/qtconsole: Moved to tree
+
 *qtconsole-4.1.1 (27 Nov 2015)
 
   27 Nov 2015; Marius Brehler <marbre@linux.sungazer.de>

diff --git a/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild b/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
deleted file mode 100644
index 35469c1..0000000
--- a/dev-python/qtconsole/qtconsole-4.0.1-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
-HOMEPAGE="http://jupyter.org"
-
-if [ ${PV} == "9999" ] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
-else
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc test"
-
-RDEPEND="
-	dev-python/ipykernel[${PYTHON_USEDEP}]
-	dev-python/jupyter_client[${PYTHON_USEDEP}]
-	"
-DEPEND="${RDEPEND}
-	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
-	)
-	test? (
-		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
-	)
-	|| (
-		dev-python/pyside[${PYTHON_USEDEP},svg]
-		dev-python/PyQt4[${PYTHON_USEDEP},svg]
-		dev-python/PyQt5[${PYTHON_USEDEP},svg]
-	)
-	dev-python/pygments[${PYTHON_USEDEP}]
-	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]
-	"
-PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-	# Prevent un-needed download during build
-	if use doc; then
-		sed -e "/^    'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
-	fi
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	nosetests --with-coverage --cover-package qtconsole qtconsole || die
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( docs/build/html/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/qtconsole/qtconsole-4.1.1.ebuild b/dev-python/qtconsole/qtconsole-4.1.1.ebuild
deleted file mode 100644
index 6c23042..0000000
--- a/dev-python/qtconsole/qtconsole-4.1.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
-HOMEPAGE="http://jupyter.org"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-
-RDEPEND="
-	dev-python/ipykernel[${PYTHON_USEDEP}]
-	>=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
-	"
-DEPEND="${RDEPEND}
-	doc? (
-		>=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}]
-		>=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}]
-	)
-	test? (
-		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
-	)
-	|| (
-		dev-python/pyside[${PYTHON_USEDEP},svg]
-		dev-python/PyQt4[${PYTHON_USEDEP},svg]
-		dev-python/PyQt5[${PYTHON_USEDEP},svg]
-	)
-	dev-python/pygments[${PYTHON_USEDEP}]
-	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]
-	"
-PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-	# Prevent un-needed download during build
-	if use doc; then
-		sed -e "/^    'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
-	fi
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	nosetests --with-coverage --cover-package qtconsole qtconsole || die
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( docs/build/html/. )
-	distutils-r1_python_install_all
-}


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2016-06-16  9:21 Marius Brehler
  0 siblings, 0 replies; 13+ messages in thread
From: Marius Brehler @ 2016-06-16  9:21 UTC (permalink / raw
  To: gentoo-commits

commit:     921d77780352446a1821a4ba1f0027d1d7676cfa
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Thu Jun 16 09:08:33 2016 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Thu Jun 16 09:08:33 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=921d7778

dev-python/qtconsole: Bump to EAPI=6; adopt python_text() and deps from tree

Package-Manager: portage-2.2.28

 dev-python/qtconsole/qtconsole-9999.ebuild | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index d9b9a4a..96b48a6 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 PYTHON_REQ_USE="threads(+)"
@@ -20,12 +20,12 @@ IUSE="doc test"
 
 RDEPEND="
 	dev-python/ipykernel[${PYTHON_USEDEP}]
-	dev-python/jupyter_client[${PYTHON_USEDEP}]
+	>=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
 	"
 DEPEND="${RDEPEND}
 	doc? (
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/sphinx[${PYTHON_USEDEP}]
+		>=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}]
+		>=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}]
 	)
 	test? (
 		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
@@ -54,7 +54,12 @@ python_compile_all() {
 }
 
 python_test() {
-	nosetests --with-coverage --cover-package qtconsole qtconsole || die
+	# jupyter qtconsole --generate-config ... jupyter-qtconsole: cannot connect to X server
+	# ERROR
+	sed \
+		-e 's:test_generate_config:_&:g' \
+		-i qtconsole/tests/test_app.py || die
+	virtx nosetests --verbosity=2 qtconsole
 }
 
 python_install_all() {


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2017-01-03 10:30 Marius Brehler
  0 siblings, 0 replies; 13+ messages in thread
From: Marius Brehler @ 2017-01-03 10:30 UTC (permalink / raw
  To: gentoo-commits

commit:     18892e66396e3c543c977ebace625e73b773b18c
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jan  3 10:23:11 2017 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jan  3 10:23:11 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=18892e66

dev-python/qtconsole: Drop python3_3

Package-Manager: portage-2.3.0

 dev-python/qtconsole/qtconsole-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
index 96b48a6..eadc1ef 100644
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ b/dev-python/qtconsole/qtconsole-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1 git-r3


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

* [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
@ 2020-09-21 23:45 Aisha Tammy
  0 siblings, 0 replies; 13+ messages in thread
From: Aisha Tammy @ 2020-09-21 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0625004437556e5da77f1ef9ef032ddf3b33dd35
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon Sep 21 23:44:51 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Mon Sep 21 23:45:05 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=06250044

dev-python/qtconsole: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 dev-python/qtconsole/metadata.xml          | 12 ------
 dev-python/qtconsole/qtconsole-9999.ebuild | 67 ------------------------------
 2 files changed, 79 deletions(-)

diff --git a/dev-python/qtconsole/metadata.xml b/dev-python/qtconsole/metadata.xml
deleted file mode 100644
index d90e4df14..000000000
--- a/dev-python/qtconsole/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci@gentoo.org</email>
-		<name>Gentoo Science Project</name>
-	</maintainer>
-	<longdescription>
-A rich Qt-based console for working with Jupyter kernels,
-supporting rich media output, session export, and more.
-</longdescription>
-</pkgmetadata>

diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild
deleted file mode 100644
index 6d023675b..000000000
--- a/dev-python/qtconsole/qtconsole-9999.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Qt-based console for Jupyter with support for rich media output"
-HOMEPAGE="http://jupyter.org"
-EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-IUSE="doc test"
-
-RDEPEND="
-	dev-python/ipykernel[${PYTHON_USEDEP}]
-	>=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}]
-	"
-DEPEND="${RDEPEND}
-	doc? (
-		>=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}]
-		>=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}]
-	)
-	test? (
-		>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
-	)
-	|| (
-		dev-python/pyside[${PYTHON_USEDEP},svg]
-		dev-python/PyQt4[${PYTHON_USEDEP},svg]
-		dev-python/PyQt5[${PYTHON_USEDEP},svg]
-	)
-	dev-python/pygments[${PYTHON_USEDEP}]
-	>=dev-python/pyzmq-13[${PYTHON_USEDEP}]
-	"
-PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-	# Prevent un-needed download during build
-	if use doc; then
-		sed -e "/^    'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
-	fi
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	# jupyter qtconsole --generate-config ... jupyter-qtconsole: cannot connect to X server
-	# ERROR
-	sed \
-		-e 's:test_generate_config:_&:g' \
-		-i qtconsole/tests/test_app.py || die
-	virtx nosetests --verbosity=2 qtconsole
-}
-
-python_install_all() {
-	use doc && HTML_DOCS=( docs/build/html/. )
-	distutils-r1_python_install_all
-}


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

end of thread, other threads:[~2020-09-21 23:45 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-01 14:10 [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2015-09-04  5:46 Justin Lecher
2015-09-07  6:49 Justin Lecher
2015-09-22  7:22 Justin Lecher
2015-10-16 14:40 Marius Brehler
2015-10-21 13:44 Justin Lecher
2015-11-08 18:54 Justin Lecher
2015-11-11 17:12 Justin Lecher
2015-11-27 10:04 Marius Brehler
2015-11-28 17:58 Marius Brehler
2016-06-16  9:21 Marius Brehler
2017-01-03 10:30 Marius Brehler
2020-09-21 23:45 Aisha Tammy

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