public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ipython-notebook/
@ 2022-05-04 16:43 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2022-05-04 16:43 UTC (permalink / raw
  To: gentoo-commits

commit:     7a5f78645fed60fb43aa8930a4e06615fb2c0c23
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed May  4 16:42:18 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed May  4 16:42:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a5f7864

app-emacs/emacs-ipython-notebook: add missing mocker dep

Closes: https://bugs.gentoo.org/842579
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 .../emacs-ipython-notebook-0.17.0_p20220419.ebuild                   | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild
index 9e0ed53eda37..c920c630fbc1 100644
--- a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild
+++ b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild
@@ -36,7 +36,10 @@ RDEPEND="
 "
 BDEPEND="
 	${RDEPEND}
-	test? ( app-emacs/ert-runner )
+	test? (
+		app-emacs/ert-runner
+		app-emacs/mocker
+	)
 "
 
 DOCS=( README.rst thumbnail.png )


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

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ipython-notebook/
@ 2022-09-26  8:31 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2022-09-26  8:31 UTC (permalink / raw
  To: gentoo-commits

commit:     9fee34c9cc1ada4d5bb5729338b79f43f8e25570
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 08:20:57 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 08:31:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fee34c9

app-emacs/emacs-ipython-notebook: correctly depend on py packages

fix QA - correctly depend on python packages

Closes: https://bugs.gentoo.org/872986
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 ...macs-ipython-notebook-0.17.0_p20220419-r1.ebuild} | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
similarity index 80%
rename from app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild
rename to app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
index e04873c402a4..1d67af472a51 100644
--- a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419.ebuild
+++ b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
@@ -8,8 +8,9 @@ EAPI=8
 
 H=388c8f753cfb99b4f82acbdff26bbe27189d2299
 NEED_EMACS=25
+PYTHON_COMPAT=( python3_{8..10} )
 
-inherit elisp readme.gentoo-r1
+inherit elisp readme.gentoo-r1 python-single-r1
 
 DESCRIPTION="Jupyter notebook client in Emacs"
 HOMEPAGE="https://github.com/millejoh/emacs-ipython-notebook/"
@@ -21,8 +22,10 @@ KEYWORDS="~amd64 ~x86"
 SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="
+	${PYTHON_DEPS}
 	app-emacs/anaphora
 	app-emacs/dash
 	app-emacs/deferred
@@ -30,9 +33,11 @@ RDEPEND="
 	app-emacs/request
 	app-emacs/websocket
 	app-emacs/with-editor
-	dev-python/ipython
-	dev-python/notebook
-	dev-python/tornado
+	$(python_gen_cond_dep '
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/notebook[${PYTHON_USEDEP}]
+		dev-python/tornado[${PYTHON_USEDEP}]
+	')
 "
 BDEPEND="
 	${RDEPEND}
@@ -52,13 +57,18 @@ DOC_CONTENTS="There may be problems with connecting to Jupyter Notebooks
 
 SITEFILE="50${PN}-gentoo.el"
 
+pkg_setup() {
+	elisp_pkg_setup
+	python-single-r1_pkg_setup
+}
+
 src_compile() {
 	BYTECOMPFLAGS="-L lisp" elisp-compile lisp/*.el
 }
 
 src_test() {
 	ert-runner -L lisp -L test -l test/testein.el \
-			   --reporter ert+duration test/test-ein*.el || die
+		--reporter ert+duration test/test-ein*.el || die
 }
 
 src_install() {


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

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ipython-notebook/
@ 2023-02-27  0:05 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2023-02-27  0:05 UTC (permalink / raw
  To: gentoo-commits

commit:     33836f4302a71e504bc41821e62db742dcc2cbcd
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 26 23:48:37 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 00:05:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33836f43

app-emacs/emacs-ipython-notebook: enable python 3.11

Closes: https://bugs.gentoo.org/896534
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 .../emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild                   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
index a66a15d33fe2..e41358fe8e8a 100644
--- a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
+++ b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
@@ -8,7 +8,7 @@ EAPI=8
 
 COMMIT=388c8f753cfb99b4f82acbdff26bbe27189d2299
 NEED_EMACS=25
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit elisp readme.gentoo-r1 python-single-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ipython-notebook/
@ 2024-01-12 23:22 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2024-01-12 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     09707584708818614ce4b379e5e1bfe5ea7d0c23
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 22:25:12 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 23:22:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09707584

app-emacs/emacs-ipython-notebook: bump to 0.17.1_pre20230826

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/emacs-ipython-notebook/Manifest          |  1 +
 ...macs-ipython-notebook-0.17.1_pre20230826.ebuild | 81 ++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/app-emacs/emacs-ipython-notebook/Manifest b/app-emacs/emacs-ipython-notebook/Manifest
index 41326ee84aa3..c864dcc0f93f 100644
--- a/app-emacs/emacs-ipython-notebook/Manifest
+++ b/app-emacs/emacs-ipython-notebook/Manifest
@@ -1 +1,2 @@
 DIST emacs-ipython-notebook-0.17.0_p20220419.tar.gz 313340 BLAKE2B 5ab9b82d8d17c3f64c375de7638aa4006e7dc47137260ab0a8222f7c507a54b32aa145d1630b3d0018c8303e0f116da81b61df27cd401875dfad5fd49ecdae13 SHA512 f6c2c293e7d2ddcba9dfac751523e0f8d55047ed01d4546ba1ece1f8833a1d54a1bcc066f34f06e111c34baee21a97c2ede2d90d188d7a05f407631acfd74037
+DIST emacs-ipython-notebook-0.17.1_pre20230826.tar.gz 312767 BLAKE2B 742df1a4fdf8409d711bd9903baa103cd28d110400f46c97e0fc0962e1ef3cf4f0fb696881bb54d83c7e1d342669dcd493e5e24067f6f439a8639dcef2140dae SHA512 1df8551c75fbd8e3c0543ec304cae9974024e36710fb6e7f418c4c8052bbfdefde357000e4df135ddbc58faf808d9bdf1ec731113e317500ad5fed48c1d1bd6f

diff --git a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.1_pre20230826.ebuild b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.1_pre20230826.ebuild
new file mode 100644
index 000000000000..83f23a778891
--- /dev/null
+++ b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.1_pre20230826.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# NOTICE: Check package version in "lisp/ein-pkg.el".
+# NOTICE: File "lisp/ein-pkg.el" is needed by the "ein:dev-sys-info" function.
+
+EAPI=8
+
+[[ "${PV}" == *20230826 ]] && COMMIT=998ba22660be2035cd23bed1555e47748c4da8a2
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit elisp readme.gentoo-r1 python-single-r1
+
+DESCRIPTION="Jupyter notebook client in Emacs"
+HOMEPAGE="https://github.com/millejoh/emacs-ipython-notebook/"
+SRC_URI="https://github.com/millejoh/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/${PN}-${COMMIT}
+
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+	${PYTHON_DEPS}
+	app-emacs/anaphora
+	app-emacs/dash
+	app-emacs/deferred
+	app-emacs/polymode
+	app-emacs/request
+	app-emacs/websocket
+	app-emacs/with-editor
+	$(python_gen_cond_dep '
+		dev-python/ipython[${PYTHON_USEDEP}]
+		dev-python/notebook[${PYTHON_USEDEP}]
+		dev-python/tornado[${PYTHON_USEDEP}]
+	')
+"
+BDEPEND="
+	${RDEPEND}
+	test? (
+		app-emacs/ert-runner
+		app-emacs/mocker
+	)
+"
+
+DOCS=( README.rst thumbnail.png )
+DOC_CONTENTS="There may be problems with connecting to Jupyter Notebooks
+	because of the tokens, in that case you can try running	\"jupyter
+	notebook\" with --NotebookApp.token=\"\" (and --NotebookApp.ip=127.0.0.1 to
+	limit connections only to local machine), but be warned that this can
+	compromise your system if used without caution! For reference check out
+	https://github.com/millejoh/emacs-ipython-notebook/issues/838"
+
+SITEFILE="50${PN}-gentoo.el"
+
+pkg_setup() {
+	#  * ACCESS DENIED:  open_wr: ~/.config/python/jupyter/migrated
+	unset JUPYTER_CONFIG_DIR
+
+	elisp_pkg_setup
+	python-single-r1_pkg_setup
+}
+
+src_compile() {
+	BYTECOMPFLAGS="-L lisp" elisp-compile lisp/*.el
+}
+
+src_test() {
+	ert-runner -L lisp -L test -l test/testein.el \
+		--reporter ert+duration test/test-ein*.el || die
+}
+
+src_install() {
+	elisp-install ${PN} lisp/*.el{,c}
+	elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+
+	readme.gentoo_create_doc
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ipython-notebook/
@ 2024-06-25 15:26 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2024-06-25 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ce124613334fdc07833cf23aaa091cffbef93c7d
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 14:38:41 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 15:26:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce124613

app-emacs/emacs-ipython-notebook: drop old 0.17.0_p20220419-r1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/emacs-ipython-notebook/Manifest          |  1 -
 ...acs-ipython-notebook-0.17.0_p20220419-r1.ebuild | 78 ----------------------
 2 files changed, 79 deletions(-)

diff --git a/app-emacs/emacs-ipython-notebook/Manifest b/app-emacs/emacs-ipython-notebook/Manifest
index c864dcc0f93f..93c21db286be 100644
--- a/app-emacs/emacs-ipython-notebook/Manifest
+++ b/app-emacs/emacs-ipython-notebook/Manifest
@@ -1,2 +1 @@
-DIST emacs-ipython-notebook-0.17.0_p20220419.tar.gz 313340 BLAKE2B 5ab9b82d8d17c3f64c375de7638aa4006e7dc47137260ab0a8222f7c507a54b32aa145d1630b3d0018c8303e0f116da81b61df27cd401875dfad5fd49ecdae13 SHA512 f6c2c293e7d2ddcba9dfac751523e0f8d55047ed01d4546ba1ece1f8833a1d54a1bcc066f34f06e111c34baee21a97c2ede2d90d188d7a05f407631acfd74037
 DIST emacs-ipython-notebook-0.17.1_pre20230826.tar.gz 312767 BLAKE2B 742df1a4fdf8409d711bd9903baa103cd28d110400f46c97e0fc0962e1ef3cf4f0fb696881bb54d83c7e1d342669dcd493e5e24067f6f439a8639dcef2140dae SHA512 1df8551c75fbd8e3c0543ec304cae9974024e36710fb6e7f418c4c8052bbfdefde357000e4df135ddbc58faf808d9bdf1ec731113e317500ad5fed48c1d1bd6f

diff --git a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild b/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
deleted file mode 100644
index f28692641514..000000000000
--- a/app-emacs/emacs-ipython-notebook/emacs-ipython-notebook-0.17.0_p20220419-r1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTICE: Check package version in "lisp/ein-pkg.el".
-# NOTICE: File "lisp/ein-pkg.el" is needed by the "ein:dev-sys-info" function.
-
-EAPI=8
-
-COMMIT=388c8f753cfb99b4f82acbdff26bbe27189d2299
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit elisp readme.gentoo-r1 python-single-r1
-
-DESCRIPTION="Jupyter notebook client in Emacs"
-HOMEPAGE="https://github.com/millejoh/emacs-ipython-notebook/"
-SRC_URI="https://github.com/millejoh/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${COMMIT}
-
-LICENSE="GPL-3+"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
-	${PYTHON_DEPS}
-	app-emacs/anaphora
-	app-emacs/dash
-	app-emacs/deferred
-	app-emacs/polymode
-	app-emacs/request
-	app-emacs/websocket
-	app-emacs/with-editor
-	$(python_gen_cond_dep '
-		dev-python/ipython[${PYTHON_USEDEP}]
-		dev-python/notebook[${PYTHON_USEDEP}]
-		dev-python/tornado[${PYTHON_USEDEP}]
-	')
-"
-BDEPEND="
-	${RDEPEND}
-	test? (
-		app-emacs/ert-runner
-		app-emacs/mocker
-	)
-"
-
-DOCS=( README.rst thumbnail.png )
-DOC_CONTENTS="There may be problems with connecting to Jupyter Notebooks
-	because of the tokens, in that case you can try running	\"jupyter
-	notebook\" with --NotebookApp.token=\"\" (and --NotebookApp.ip=127.0.0.1 to
-	limit connections only to local machine), but be warned that this can
-	compromise your system if used without caution! For reference check out
-	https://github.com/millejoh/emacs-ipython-notebook/issues/838"
-
-SITEFILE="50${PN}-gentoo.el"
-
-pkg_setup() {
-	elisp_pkg_setup
-	python-single-r1_pkg_setup
-}
-
-src_compile() {
-	BYTECOMPFLAGS="-L lisp" elisp-compile lisp/*.el
-}
-
-src_test() {
-	ert-runner -L lisp -L test -l test/testein.el \
-		--reporter ert+duration test/test-ein*.el || die
-}
-
-src_install() {
-	elisp-install ${PN} lisp/*.el{,c}
-	elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-
-	readme.gentoo_create_doc
-}


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

end of thread, other threads:[~2024-06-25 15:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-04 16:43 [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-ipython-notebook/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2022-09-26  8:31 Maciej Barć
2023-02-27  0:05 Maciej Barć
2024-01-12 23:22 Maciej Barć
2024-06-25 15:26 Maciej Barć

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