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

commit:     cd0458c433e8a7ed634730f6098abfa865cf749d
Author:     Sean Vig <sean.v.775 <AT> gmail <DOT> com>
AuthorDate: Thu Sep  3 03:46:35 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Sep  3 03:46:35 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=cd0458c4

dev-python/jupyter: Initial commit

 dev-python/jupyter/ChangeLog            |  9 +++++++
 dev-python/jupyter/jupyter-1.0.0.ebuild | 45 +++++++++++++++++++++++++++++++++
 dev-python/jupyter/metadata.xml         | 12 +++++++++
 3 files changed, 66 insertions(+)

diff --git a/dev-python/jupyter/ChangeLog b/dev-python/jupyter/ChangeLog
new file mode 100644
index 0000000..a81b063
--- /dev/null
+++ b/dev-python/jupyter/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-python/jupyter
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*jupyter-1.0.0 (02 Sep 2015)
+
+  02 Sep 2015; Sean Vig <sean.v.775@gmail.com> +jupyter-1.0.0.ebuild,
+  +metadata.xml:
+  dev-python/jupyter: Initial commit

diff --git a/dev-python/jupyter/jupyter-1.0.0.ebuild b/dev-python/jupyter/jupyter-1.0.0.ebuild
new file mode 100644
index 0000000..e1142bd
--- /dev/null
+++ b/dev-python/jupyter/jupyter-1.0.0.ebuild
@@ -0,0 +1,45 @@
+# 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} )
+
+inherit distutils-r1
+
+DESCRIPTION="Jupyter metapackage. Install all the Jupyter components in one go."
+HOMEPAGE="http://jupyter.org"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc"
+
+RDEPEND="
+	dev-python/notebook[${PYTHON_USEDEP}]
+	dev-python/qtconsole[${PYTHON_USEDEP}]
+	dev-python/jupyter_console[${PYTHON_USEDEP}]
+	dev-python/nbconvert[${PYTHON_USEDEP}]
+	dev-python/ipykernel[${PYTHON_USEDEP}]
+	dev-python/ipywidgets[${PYTHON_USEDEP}]"
+DEPEND="doc? ( dev-python/sphinx[${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_install_all() {
+	use doc && HTML_DOCS=( "${S}"/docs/build/html/. )
+	distutils-r1_python_install_all
+}

diff --git a/dev-python/jupyter/metadata.xml b/dev-python/jupyter/metadata.xml
new file mode 100644
index 0000000..00118fe
--- /dev/null
+++ b/dev-python/jupyter/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci</herd>
+  <longdescription>
+Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel.
+  </longdescription>
+  <upstream>
+    <remote-id type="pypi">jupyter</remote-id>
+    <remote-id type="github">jupyter/jupyter</remote-id>
+  </upstream>
+</pkgmetadata>


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

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

commit:     6625299b8e45890a382d1c1344b40cedc27c816b
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 21 12:55:04 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Oct 21 12:55:04 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=6625299b

dev-python/jupyter: Add python3.5 support

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

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

diff --git a/dev-python/jupyter/jupyter-1.0.0.ebuild b/dev-python/jupyter/jupyter-1.0.0.ebuild
index 6f6ef69..7dfd006 100644
--- a/dev-python/jupyter/jupyter-1.0.0.ebuild
+++ b/dev-python/jupyter/jupyter-1.0.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{3,4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 
 inherit distutils-r1
 


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

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

commit:     1ddf6bbb8b7e97cbf5cee0acc00c6e0de0f4248c
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Nov 28 17:55:31 2015 +0000
Commit:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Nov 28 17:55:31 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=1ddf6bbb

dev-python/jupyter: Moved to tree

 dev-python/jupyter/ChangeLog            |  9 -------
 dev-python/jupyter/jupyter-1.0.0.ebuild | 45 ---------------------------------
 dev-python/jupyter/metadata.xml         | 12 ---------
 3 files changed, 66 deletions(-)

diff --git a/dev-python/jupyter/ChangeLog b/dev-python/jupyter/ChangeLog
deleted file mode 100644
index a81b063..0000000
--- a/dev-python/jupyter/ChangeLog
+++ /dev/null
@@ -1,9 +0,0 @@
-# ChangeLog for dev-python/jupyter
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Id$
-
-*jupyter-1.0.0 (02 Sep 2015)
-
-  02 Sep 2015; Sean Vig <sean.v.775@gmail.com> +jupyter-1.0.0.ebuild,
-  +metadata.xml:
-  dev-python/jupyter: Initial commit

diff --git a/dev-python/jupyter/jupyter-1.0.0.ebuild b/dev-python/jupyter/jupyter-1.0.0.ebuild
deleted file mode 100644
index 7dfd006..0000000
--- a/dev-python/jupyter/jupyter-1.0.0.ebuild
+++ /dev/null
@@ -1,45 +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} )
-
-inherit distutils-r1
-
-DESCRIPTION="Jupyter metapackage. Install all the Jupyter components in one go"
-HOMEPAGE="http://jupyter.org"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc"
-
-RDEPEND="
-	dev-python/notebook[${PYTHON_USEDEP}]
-	dev-python/qtconsole[${PYTHON_USEDEP}]
-	dev-python/jupyter_console[${PYTHON_USEDEP}]
-	dev-python/nbconvert[${PYTHON_USEDEP}]
-	dev-python/ipykernel[${PYTHON_USEDEP}]
-	dev-python/ipywidgets[${PYTHON_USEDEP}]"
-DEPEND="doc? ( dev-python/sphinx[${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_install_all() {
-	use doc && HTML_DOCS=( "${S}"/docs/build/html/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/jupyter/metadata.xml b/dev-python/jupyter/metadata.xml
deleted file mode 100644
index 00118fe..0000000
--- a/dev-python/jupyter/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>
-  <herd>sci</herd>
-  <longdescription>
-Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel.
-  </longdescription>
-  <upstream>
-    <remote-id type="pypi">jupyter</remote-id>
-    <remote-id type="github">jupyter/jupyter</remote-id>
-  </upstream>
-</pkgmetadata>


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

end of thread, other threads:[~2015-11-28 17:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-28 17:58 [gentoo-commits] proj/sci:master commit in: dev-python/jupyter/ Marius Brehler
  -- strict thread matches above, loose matches on Subject: below --
2015-10-21 13:44 Justin Lecher
2015-09-03 11:04 Justin Lecher

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