Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/nbformat/
Date: Sat, 28 Nov 2015 17:58:22
Message-Id: 1448732556.58456081c070a9e3c3fc061679c1a4ba69f3e37f.marbre@gentoo
1 commit: 58456081c070a9e3c3fc061679c1a4ba69f3e37f
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sat Nov 28 17:42:36 2015 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Sat Nov 28 17:42:36 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=58456081
7
8 dev-python/nbformat: Moved to tree
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/nbformat/ChangeLog | 4 +++
13 dev-python/nbformat/nbformat-4.0.0.ebuild | 59 ------------------------------
14 dev-python/nbformat/nbformat-4.0.1.ebuild | 60 -------------------------------
15 3 files changed, 4 insertions(+), 119 deletions(-)
16
17 diff --git a/dev-python/nbformat/ChangeLog b/dev-python/nbformat/ChangeLog
18 index 934c6c2..0374cbb 100644
19 --- a/dev-python/nbformat/ChangeLog
20 +++ b/dev-python/nbformat/ChangeLog
21 @@ -2,6 +2,10 @@
22 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
23 # $Id$
24
25 + 28 Nov 2015; Marius Brehler <marbre@××××××××××××××.de> -Manifest,
26 + -nbformat-4.0.0.ebuild, -nbformat-4.0.1.ebuild:
27 + dev-python/nbformat: Moved to tree
28 +
29 *nbformat-4.0.1 (06 Oct 2015)
30
31 06 Oct 2015; Marius Brehler <marbre@××××××××××××××.de> +nbformat-4.0.1.ebuild:
32
33 diff --git a/dev-python/nbformat/nbformat-4.0.0.ebuild b/dev-python/nbformat/nbformat-4.0.0.ebuild
34 deleted file mode 100644
35 index cc116c0..0000000
36 --- a/dev-python/nbformat/nbformat-4.0.0.ebuild
37 +++ /dev/null
38 @@ -1,59 +0,0 @@
39 -# Copyright 1999-2015 Gentoo Foundation
40 -# Distributed under the terms of the GNU General Public License v2
41 -# $Id$
42 -
43 -EAPI=5
44 -PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
45 -PYTHON_REQ_USE='sqlite'
46 -
47 -inherit distutils-r1
48 -
49 -DESCRIPTION="Reference implementation of the Jupyter Notebook format"
50 -HOMEPAGE="http://jupyter.org"
51 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
52 -KEYWORDS="~amd64 ~x86"
53 -
54 -LICENSE="BSD"
55 -SLOT="0"
56 -IUSE="doc test"
57 -
58 -RDEPEND="
59 - dev-python/jsonschema[${PYTHON_USEDEP}]
60 - dev-python/ipython_genutils[${PYTHON_USEDEP}]
61 - dev-python/traitlets[${PYTHON_USEDEP}]
62 - dev-python/jupyter_core[${PYTHON_USEDEP}]
63 - "
64 -DEPEND="${RDEPEND}
65 - doc? (
66 - dev-python/sphinx[${PYTHON_USEDEP}]
67 - dev-python/numpydoc[${PYTHON_USEDEP}]
68 - )
69 - test? (
70 - dev-python/nose[${PYTHON_USEDEP}]
71 - dev-python/coverage[${PYTHON_USEDEP}]
72 - )
73 - "
74 -
75 -python_prepare_all() {
76 - # Prevent un-needed download during build
77 - if use doc; then
78 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die
79 - fi
80 -
81 - distutils-r1_python_prepare_all
82 -}
83 -
84 -python_compile_all() {
85 - use doc && emake -C docs html
86 -}
87 -
88 -python_test() {
89 - distutils_install_for_testing
90 - cd "${TEST_DIR}"/lib || die
91 - nosetests --with-coverage --cover-package=nbformat nbformat || die
92 -}
93 -
94 -python_install_all() {
95 - use doc && HTML_DOCS=( docs/_build/html/. )
96 - distutils-r1_python_install_all
97 -}
98
99 diff --git a/dev-python/nbformat/nbformat-4.0.1.ebuild b/dev-python/nbformat/nbformat-4.0.1.ebuild
100 deleted file mode 100644
101 index 449d99c..0000000
102 --- a/dev-python/nbformat/nbformat-4.0.1.ebuild
103 +++ /dev/null
104 @@ -1,60 +0,0 @@
105 -# Copyright 1999-2015 Gentoo Foundation
106 -# Distributed under the terms of the GNU General Public License v2
107 -# $Id$
108 -
109 -EAPI=5
110 -
111 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
112 -PYTHON_REQ_USE='sqlite'
113 -
114 -inherit distutils-r1
115 -
116 -DESCRIPTION="Reference implementation of the Jupyter Notebook format"
117 -HOMEPAGE="http://jupyter.org"
118 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
119 -KEYWORDS="~amd64 ~x86"
120 -
121 -LICENSE="BSD"
122 -SLOT="0"
123 -IUSE="doc test"
124 -
125 -RDEPEND="
126 - dev-python/jsonschema[${PYTHON_USEDEP}]
127 - dev-python/ipython_genutils[${PYTHON_USEDEP}]
128 - dev-python/traitlets[${PYTHON_USEDEP}]
129 - dev-python/jupyter_core[${PYTHON_USEDEP}]
130 - "
131 -DEPEND="${RDEPEND}
132 - doc? (
133 - dev-python/sphinx[${PYTHON_USEDEP}]
134 - dev-python/numpydoc[${PYTHON_USEDEP}]
135 - )
136 - test? (
137 - dev-python/nose[${PYTHON_USEDEP}]
138 - dev-python/coverage[${PYTHON_USEDEP}]
139 - )
140 - "
141 -
142 -python_prepare_all() {
143 - # Prevent un-needed download during build
144 - if use doc; then
145 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die
146 - fi
147 -
148 - distutils-r1_python_prepare_all
149 -}
150 -
151 -python_compile_all() {
152 - use doc && emake -C docs html
153 -}
154 -
155 -python_test() {
156 - distutils_install_for_testing
157 - cd "${TEST_DIR}"/lib || die
158 - nosetests --with-coverage --cover-package=nbformat nbformat || die
159 -}
160 -
161 -python_install_all() {
162 - use doc && HTML_DOCS=( docs/_build/html/. )
163 - distutils-r1_python_install_all
164 -}