pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-langkit
Module Name: pkgsrc
Committed By: dkazankov
Date: Sun Oct 12 13:11:20 UTC 2025
Modified Files:
pkgsrc/devel/py-langkit: distinfo
pkgsrc/devel/py-langkit/patches: patch-langkit_compiled__types.py
Log Message:
py-langkit: fix incomplete patch
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-langkit/distinfo
cvs rdiff -u -r1.2 -r1.3 \
pkgsrc/devel/py-langkit/patches/patch-langkit_compiled__types.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-langkit/distinfo
diff -u pkgsrc/devel/py-langkit/distinfo:1.3 pkgsrc/devel/py-langkit/distinfo:1.4
--- pkgsrc/devel/py-langkit/distinfo:1.3 Thu Oct 9 15:18:55 2025
+++ pkgsrc/devel/py-langkit/distinfo Sun Oct 12 13:11:19 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.3 2025/10/09 15:18:55 dkazankov Exp $
+$NetBSD: distinfo,v 1.4 2025/10/12 13:11:19 dkazankov Exp $
BLAKE2s (langkit-25.2.tar.gz) = 18dd9330655d0afcd61b6c9c2656fe01eb012f4c1f64ddb3f77e485189c44bec
SHA512 (langkit-25.2.tar.gz) = 01fa35fc8341665a2b545955c578ce894489e6123322e3a63fa7e954ed1dd7546827b6f4e85e406a575609416ec7179fa70e07a42a50b4cbf88123216cb3fa45
Size (langkit-25.2.tar.gz) = 1526506 bytes
-SHA1 (patch-langkit_compiled__types.py) = f39a8b6081783094cb89b6f55edce17885f591bf
+SHA1 (patch-langkit_compiled__types.py) = e80846d319a44a4623a1a1af14662d4dd3345cd2
SHA1 (patch-langkit_libmanage.py) = c842e39940354c8978fd0b3eaf84ac7c88a33f55
SHA1 (patch-langkit_utils_____init____.py) = f58649998fed08017310f8c584981a65f833199b
Index: pkgsrc/devel/py-langkit/patches/patch-langkit_compiled__types.py
diff -u pkgsrc/devel/py-langkit/patches/patch-langkit_compiled__types.py:1.2 pkgsrc/devel/py-langkit/patches/patch-langkit_compiled__types.py:1.3
--- pkgsrc/devel/py-langkit/patches/patch-langkit_compiled__types.py:1.2 Thu Oct 9 15:18:55 2025
+++ pkgsrc/devel/py-langkit/patches/patch-langkit_compiled__types.py Sun Oct 12 13:11:19 2025
@@ -1,4 +1,4 @@
-$NetBSD: patch-langkit_compiled__types.py,v 1.2 2025/10/09 15:18:55 dkazankov Exp $
+$NetBSD: patch-langkit_compiled__types.py,v 1.3 2025/10/12 13:11:19 dkazankov Exp $
Transition uses of the Python pipes module to shlex
"pipes" was removed from Python 3.13.
@@ -15,3 +15,12 @@ https://github.com/AdaCore/langkit/commi
from typing import (
Any,
Callable,
+@@ -58,7 +58,7 @@
+ :param list[str] args: Elements of the special comment.
+ :rtype: str
+ """
+- return ('--# {}'.format(' '.join(pipes.quote(a) for a in args))
++ return ('--# {}'.format(' '.join(shlex.quote(a) for a in args))
+ if get_context().emitter.generate_gdb_hook else '')
+
+
Home |
Main Index |
Thread Index |
Old Index