pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-ipython
Module Name: pkgsrc
Committed By: adam
Date: Tue Oct 29 20:11:49 UTC 2024
Modified Files:
pkgsrc/devel/py-ipython: Makefile distinfo
pkgsrc/devel/py-ipython/patches: patch-setupbase.py
Log Message:
py-ipython: updated to 8.29.0
IPython 8.29
Medium release for this end of october;
- Misc Python 3.13 compatibility
- Add a ``uv`` line magic
- Add support for WEBP to ``IPython.display.Image``.
- And many more bugfixes and quality of life improvements.
To generate a diff of this commit:
cvs rdiff -u -r1.103 -r1.104 pkgsrc/devel/py-ipython/Makefile
cvs rdiff -u -r1.73 -r1.74 pkgsrc/devel/py-ipython/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-ipython/patches/patch-setupbase.py
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-ipython/Makefile
diff -u pkgsrc/devel/py-ipython/Makefile:1.103 pkgsrc/devel/py-ipython/Makefile:1.104
--- pkgsrc/devel/py-ipython/Makefile:1.103 Mon Oct 14 06:45:39 2024
+++ pkgsrc/devel/py-ipython/Makefile Tue Oct 29 20:11:48 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.103 2024/10/14 06:45:39 wiz Exp $
+# $NetBSD: Makefile,v 1.104 2024/10/29 20:11:48 adam Exp $
-DISTNAME= ipython-8.28.0
+DISTNAME= ipython-8.29.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipython/}
Index: pkgsrc/devel/py-ipython/distinfo
diff -u pkgsrc/devel/py-ipython/distinfo:1.73 pkgsrc/devel/py-ipython/distinfo:1.74
--- pkgsrc/devel/py-ipython/distinfo:1.73 Thu Oct 3 10:11:47 2024
+++ pkgsrc/devel/py-ipython/distinfo Tue Oct 29 20:11:48 2024
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.73 2024/10/03 10:11:47 adam Exp $
+$NetBSD: distinfo,v 1.74 2024/10/29 20:11:48 adam Exp $
-BLAKE2s (ipython-8.28.0.tar.gz) = 914225968596a728a99eed7dee7277e3466ba7f9e75262ff25948ed067555e81
-SHA512 (ipython-8.28.0.tar.gz) = 5634b9faf55eec9cf2775587e994b4298ae9ddd6420fbdcc6a9c32c0f9bbe39f5137e6b39a2f5a5c40efa1deba668d81fe39867151480eb4b88f3850d8670719
-Size (ipython-8.28.0.tar.gz) = 5495762 bytes
-SHA1 (patch-setupbase.py) = 241463d5368a4c80c8194244f5c3895196b44da5
+BLAKE2s (ipython-8.29.0.tar.gz) = 8532d28ee904e3d60caa0d7cefd38c8420bc313833c38bcd242765a8eb67e319
+SHA512 (ipython-8.29.0.tar.gz) = 684c6f541c407ace48f6f889ad2fe776e3e32092c2af1d5863a07708c84469695165ae2765c98341d5098a362d47ee7f62e9ebd014494321b1928e44e64064f3
+Size (ipython-8.29.0.tar.gz) = 5497513 bytes
+SHA1 (patch-setupbase.py) = 1de0975a186c250f03c996f7974750811de9607e
Index: pkgsrc/devel/py-ipython/patches/patch-setupbase.py
diff -u pkgsrc/devel/py-ipython/patches/patch-setupbase.py:1.3 pkgsrc/devel/py-ipython/patches/patch-setupbase.py:1.4
--- pkgsrc/devel/py-ipython/patches/patch-setupbase.py:1.3 Sat Aug 3 12:31:47 2019
+++ pkgsrc/devel/py-ipython/patches/patch-setupbase.py Tue Oct 29 20:11:49 2024
@@ -1,18 +1,18 @@
-$NetBSD: patch-setupbase.py,v 1.3 2019/08/03 12:31:47 adam Exp $
+$NetBSD: patch-setupbase.py,v 1.4 2024/10/29 20:11:49 adam Exp $
Honor PKGMANDIR
---- setupbase.py.orig 2019-07-26 21:57:01.000000000 +0000
+--- setupbase.py.orig 2024-10-25 08:39:51.000000000 +0000
+++ setupbase.py
-@@ -162,10 +162,7 @@ def find_data_files():
+@@ -93,10 +93,7 @@ def find_data_files():
Just man pages at this point.
"""
- if "freebsd" in sys.platform:
-- manpagebase = pjoin('man', 'man1')
+- manpagebase = Path("man") / "man1"
- else:
-- manpagebase = pjoin('share', 'man', 'man1')
-+ manpagebase = pjoin(os.environ.get('PKGMANDIR'), 'man1')
+- manpagebase = Path("share") / "man" / "man1"
++ manpagebase = Path(os.environ.get("PKGMANDIR")) / "man1"
# Simple file lists can be made by hand
- manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
+ manpages = [f for f in Path("docs/man").glob("*.1.gz") if f.is_file()]
Home |
Main Index |
Thread Index |
Old Index