pkgsrc/lang
adam 69b7d8ebdc python310 py310-html-docs: updated to 3.10.5
Python 3.10.5 final

Core and Builtins

gh-93418: Fixed an assert where an f-string has an equal sign ‘=’ following an expression, but there’s no trailing brace. For example, f”{i=”.

gh-91924: Fix __ltrace__ debug feature if the stdout encoding is not UTF-8. Patch by Victor Stinner.

gh-93061: Backward jumps after async for loops are no longer given dubious line numbers.

gh-93065: Fix contextvars HAMT implementation to handle iteration over deep trees.

The bug was discovered and fixed by Eli Libman. See MagicStack/immutables#84 for more details.

gh-92311: Fixed a bug where setting frame.f_lineno to jump over a list comprehension could misbehave or crash.

gh-92112: Fix crash triggered by an evil custom mro() on a metaclass.

gh-92036: Fix a crash in subinterpreters related to the garbage collector. When a subinterpreter is deleted, untrack all objects tracked by its GC. To prevent a crash in deallocator functions expecting objects to be tracked by the GC, leak a strong reference to these objects on purpose, so they are never deleted and their deallocator functions are not called. Patch by Victor Stinner.

gh-91421: Fix a potential integer overflow in _Py_DecodeUTF8Ex.

bpo-47212: Raise IndentationError instead of SyntaxError for a bare except with no following indent. Improve SyntaxError locations for an un-parenthesized generator used as arguments. Patch by Matthieu Dartiailh.

bpo-47182: Fix a crash when using a named unicode character like "\N{digit nine}" after the main interpreter has been initialized a second time.

bpo-46775: Some Windows system error codes(>= 10000) are now mapped into the correct errno and may now raise a subclass of OSError. Patch by Dong-hee Na.

bpo-47117: Fix a crash if we fail to decode characters in interactive mode if the tokenizer buffers are uninitialized. Patch by Pablo Galindo.

bpo-39829: Removed the __len__() call when initializing a list and moved initializing to list_extend. Patch by Jeremiah Pascual.

bpo-46962: Classes and functions that unconditionally declared their docstrings ignoring the --without-doc-strings compilation flag no longer do so.

The classes affected are ctypes.UnionType, pickle.PickleBuffer, testcapi.RecursingInfinitelyError, and types.GenericAlias.

The functions affected are 24 methods in ctypes.

Patch by Oleg Iarygin.

bpo-36819: Fix crashes in built-in encoders with error handlers that return position less or equal than the starting position of non-encodable characters.

Library

gh-93156: Accessing the pathlib.PurePath.parents sequence of an absolute path using negative index values produced incorrect results.

gh-89973: Fix re.error raised in fnmatch if the pattern contains a character range with upper bound lower than lower bound (e.g. [c-a]). Now such ranges are interpreted as empty ranges.

gh-93010: In a very special case, the email package tried to append the nonexistent InvalidHeaderError to the defect list. It should have been InvalidHeaderDefect.

gh-92839: Fixed crash resulting from calling bisect.insort() or bisect.insort_left() with the key argument not equal to None.

gh-91581: utcfromtimestamp() no longer attempts to resolve fold in the pure Python implementation, since the fold is never 1 in UTC. In addition to being slightly faster in the common case, this also prevents some errors when the timestamp is close to datetime.min. Patch by Paul Ganssle.

gh-92530: Fix an issue that occurred after interrupting threading.Condition.notify().

gh-92049: Forbid pickling constants re._constants.SUCCESS etc. Previously, pickling did not fail, but the result could not be unpickled.

bpo-47029: Always close the read end of the pipe used by multiprocessing.Queue after the last write of buffered data to the write end of the pipe to avoid BrokenPipeError at garbage collection and at multiprocessing.Queue.close() calls. Patch by Géry Ogam.

gh-91401: Provide a fail-safe way to disable subprocess use of vfork() via a private subprocess._USE_VFORK attribute. While there is currently no known need for this, if you find a need please only set it to False. File a CPython issue as to why you needed it and link to that from a comment in your code. This attribute is documented as a footnote in 3.11.

gh-91910: Add missing f prefix to f-strings in error messages from the multiprocessing and asyncio modules.

gh-91810: ElementTree method write() and function tostring() now use the text file’s encoding (“UTF-8” if not available) instead of locale encoding in XML declaration when encoding="unicode" is specified.

gh-91832: Add required attribute to argparse.Action repr output.

gh-91734: Fix OSS audio support on Solaris.

gh-91700: Compilation of regular expression containing a conditional expression (?(group)...) now raises an appropriate re.error if the group number refers to not defined group. Previously an internal RuntimeError was raised.

gh-91676: Fix unittest.IsolatedAsyncioTestCase to shutdown the per test event loop executor before returning from its run method so that a not yet stopped or garbage collected executor state does not persist beyond the test.

gh-90568: Parsing \N escapes of Unicode Named Character Sequences in a regular expression raises now re.error instead of TypeError.

gh-91595: Fix the comparison of character and integer inside Tools.gdb.libpython.write_repr(). Patch by Yu Liu.

gh-90622: Worker processes for concurrent.futures.ProcessPoolExecutor are no longer spawned on demand (a feature added in 3.9) when the multiprocessing context start method is "fork" as that can lead to deadlocks in the child processes due to a fork happening while threads are running.

gh-91575: Update case-insensitive matching in the re module to the latest Unicode version.

gh-91581: Remove an unhandled error case in the C implementation of calls to datetime.fromtimestamp with no time zone (i.e. getting a local time from an epoch timestamp). This should have no user-facing effect other than giving a possibly more accurate error message when called with timestamps that fall on 10000-01-01 in the local time. Patch by Paul Ganssle.

bpo-47260: Fix os.closerange() potentially being a no-op in a Linux seccomp sandbox.

bpo-39064: zipfile.ZipFile now raises zipfile.BadZipFile instead of ValueError when reading a corrupt zip file in which the central directory offset is negative.

bpo-47151: When subprocess tries to use vfork, it now falls back to fork if vfork returns an error. This allows use in situations where vfork isn’t allowed by the OS kernel.

bpo-27929: Fix asyncio.loop.sock_connect() to only resolve names for socket.AF_INET or socket.AF_INET6 families. Resolution may not make sense for other families, like socket.AF_BLUETOOTH and socket.AF_UNIX.

bpo-43323: Fix errors in the email module if the charset itself contains undecodable/unencodable characters.

bpo-47101: hashlib.algorithms_available now lists only algorithms that are provided by activated crypto providers on OpenSSL 3.0. Legacy algorithms are not listed unless the legacy provider has been loaded into the default OSSL context.

bpo-46787: Fix concurrent.futures.ProcessPoolExecutor exception memory leak

bpo-45393: Fix the formatting for await x and not x in the operator precedence table when using the help() system.

bpo-46415: Fix ipaddress.ip_{address,interface,network} raising TypeError instead of ValueError if given invalid tuple as address parameter.

bpo-28249: Set doctest.DocTest.lineno to None when object does not have __doc__.

bpo-45138: Fix a regression in the sqlite3 trace callback where bound parameters were not expanded in the passed statement string. The regression was introduced in Python 3.10 by bpo-40318. Patch by Erlend E. Aasland.

bpo-44493: Add missing terminated NUL in sockaddr_un’s length

This was potentially observable when using non-abstract AF_UNIX datagram sockets to processes written in another programming language.

bpo-42627: Fix incorrect parsing of Windows registry proxy settings

bpo-36073: Raise ProgrammingError instead of segfaulting on recursive usage of cursors in sqlite3 converters. Patch by Sergey Fedoseev.

Documentation

gh-86438: Clarify that -W and PYTHONWARNINGS are matched literally and case-insensitively, rather than as regular expressions, in warnings.
gh-92240: Added release dates for “What’s New in Python 3.X” for 3.0, 3.1, 3.2, 3.8 and 3.10
gh-91888: Add a new gh role to the documentation to link to GitHub issues.
gh-91783: Document security issues concerning the use of the function shutil.unpack_archive()
gh-91547: Remove “Undocumented modules” page.
bpo-44347: Clarify the meaning of dirs_exist_ok, a kwarg of shutil.copytree().
bpo-38668: Update the introduction to documentation for os.path to remove warnings that became irrelevant after the implementations of PEP 383 and PEP 529.
bpo-47138: Pin Jinja to a version compatible with Sphinx version 3.2.1.
bpo-46962: All docstrings in code snippets are now wrapped into PyDoc_STR() to follow the guideline of PEP 7’s Documentation Strings paragraph. Patch by Oleg Iarygin.
bpo-26792: Improve the docstrings of runpy.run_module() and runpy.run_path(). Original patch by Andrew Brezovsky.
bpo-40838: Document that inspect.getdoc(), inspect.getmodule(), and inspect.getsourcefile() might return None.
bpo-45790: Adjust inaccurate phrasing in Defining Extension Types: Tutorial about the ob_base field and the macros used to access its contents.
bpo-42340: Document that in some circumstances KeyboardInterrupt may cause the code to enter an inconsistent state. Provided a sample workaround to avoid it if needed.
bpo-41233: Link the errnos referenced in Doc/library/exceptions.rst to their respective section in Doc/library/errno.rst, and vice versa. Previously this was only done for EINTR and InterruptedError. Patch by Yan “yyyyyyyan” Orestes.
bpo-38056: Overhaul the Error Handlers documentation in codecs.
bpo-13553: Document tkinter.Tk args.

Tests

gh-92886: Fixing tests that fail when running with optimizations (-O) in test_imaplib.py.
gh-92670: Skip test_shutil.TestCopy.test_copyfile_nonexistent_dir test on AIX as the test uses a trailing slash to force the OS consider the path as a directory, but on AIX the trailing slash has no effect and is considered as a file.
gh-91904: Fix initialization of PYTHONREGRTEST_UNICODE_GUARD which prevented running regression tests on non-UTF-8 locale.
gh-91607: Fix test_concurrent_futures to test the correct multiprocessing start method context in several cases where the test logic mixed this up.
bpo-47205: Skip test for sched_getaffinity() and sched_setaffinity() error case on FreeBSD.
bpo-47104: Rewrite asyncio.to_thread() tests to use unittest.IsolatedAsyncioTestCase.
bpo-29890: Add tests for ipaddress.IPv4Interface and ipaddress.IPv6Interface construction with tuple arguments. Original patch and tests by louisom.

Build

bpo-47103: Windows PGInstrument builds now copy a required DLL into the output directory, making it easier to run the profile stage of a PGO build.

Windows

gh-92984: Explicitly disable incremental linking for non-Debug builds
bpo-47194: Update zlib to v1.2.12 to resolve CVE-2018-25032.
bpo-46785: Fix race condition between os.stat() and unlinking a file on Windows, by using errors codes returned by FindFirstFileW() when appropriate in win32_xstat_impl.
bpo-40859: Update Windows build to use xz-5.2.5

Tools/Demos
gh-91583: Fix regression in the code generated by Argument Clinic for functions with the defining_class parameter.
2022-06-08 17:56:46 +00:00
..
a60 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
abcl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
adoptopenjdk11-bin lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
algol68g lang/algol68g: update homepage and outdated maintainer mail address. 2022-04-03 13:56:50 +00:00
asn1c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ats2 Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
awka lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
baci lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
boomerang Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
brandybasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
bwbasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
caml-light lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
camlp4 Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
camlp5 camlp5: mark as BROKEN, does not support ocaml 4.14 2022-06-03 08:10:56 +00:00
cbmbasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ccsh lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
cdl3 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
Cg-compiler lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
chibi-scheme lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
chicken lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
chicken5 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
cim lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
cint cint: fix configure args, now it fails later in the build 2022-03-29 18:38:06 +00:00
clang clang: PLIST fix for Darwin 2022-05-09 11:52:44 +00:00
clang-tools-extra revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
classpath lang/classpath: fix broken build on netbsd-current 2021-12-27 05:28:38 +00:00
classpath-gui revbump for icu and libffi 2021-12-08 16:01:42 +00:00
clisp clisp: follow redirects chain for HOMEPAGE, point to SourceForge directly. 2022-05-15 17:26:39 +00:00
clojure lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
compiler-rt llvm: updated to 13.0.1 2022-02-03 20:38:39 +00:00
coq coq: mark as BROKEN because it does not support ocaml 4.14 2022-06-03 08:21:55 +00:00
cparser Fix broken build of lang/cparser; escaping hashes in gmake broke 2021-12-25 21:45:42 +00:00
csmith lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
cu-prolog lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
dhall Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
duktape duktape: update to 2.7. 2022-02-25 20:51:27 +00:00
eag lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ecl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
eieio Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
elisp-manual lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
elixir lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
elk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
embryo lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
erlang erlang: fix rebar3 modules with an option to include rebar3 only. 2022-04-25 12:51:11 +00:00
erlang-doc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
erlang-luerl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
erlang-man lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
erlang21 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
execline execline: Update MAINTAINER 2022-05-18 00:26:00 +00:00
f2c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ficl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
focal lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
fort77 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
forth-retro lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
g95 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gambc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gauche lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gawk gawk: update to 5.1.1. 2021-11-01 07:07:52 +00:00
gcc-aux gcc*-aux: disable hardening for ada compilers 2022-03-10 16:40:30 +00:00
gcc2 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc5-aux gcc*-aux: disable hardening for ada compilers 2022-03-10 16:40:30 +00:00
gcc6 gcc6: workaround: get this at least building by disabling RELRO 2022-05-21 12:21:43 +00:00
gcc6-aux gcc6-aux: MKPIE not supported 2022-03-07 16:41:30 +00:00
gcc6-libs Fix PKGREVISION values of gcc*-libs that got out of sync (again) 2022-01-10 00:50:46 +00:00
gcc7 gcc8: deconditionalize CHECK_RELRO_SKIP 2022-03-10 16:43:11 +00:00
gcc7-libs Fix PKGREVISION values of gcc*-libs that got out of sync (again) 2022-01-10 00:50:46 +00:00
gcc8 gcc8: deconditionalize CHECK_RELRO_SKIP 2022-03-10 16:43:11 +00:00
gcc8-libs Fix PKGREVISION values of gcc*-libs that got out of sync (again) 2022-01-10 00:50:46 +00:00
gcc9 gcc*: only use system zlib if it is native, else use bundled 2022-03-27 15:06:11 +00:00
gcc9-libs Fix PKGREVISION values of gcc*-libs that got out of sync (again) 2022-01-10 00:50:46 +00:00
gcc10 gcc10: disable libsanitizer on SunOS 2022-03-27 17:01:30 +00:00
gcc10-aux gcc10-aux: Fix build when lang/libunwind is installed 2022-05-19 15:57:23 +00:00
gcc10-libs Fix PKGREVISION values of gcc*-libs that got out of sync (again) 2022-01-10 00:50:46 +00:00
gforth revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ghc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ghc-bootstrap lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ghc7 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
ghc80 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
ghc84 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
ghc88 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
ghc90 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
ghc92 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
ghc810 ghc*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:18:59 +00:00
gjs revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gleam lang/gleam: import package. 2022-05-03 08:57:33 +00:00
gnat_util lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gnucobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
go Update go118 to 1.18.3 2022-06-02 18:50:40 +00:00
go-bin go-bin: update to 1.17.8 2022-03-13 20:56:52 +00:00
go14 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
go19 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
go110 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
go116 Update go116 to 1.16.15. 2022-03-06 09:53:43 +00:00
go117 Update go117 to 1.17.11 2022-06-02 18:19:26 +00:00
go118 Update go118 to 1.18.3 2022-06-02 18:50:40 +00:00
gpc Mark lang/gpc NOT_FOR aarch64. It's gcc 2.95, there's not a chance. 2021-12-25 21:34:12 +00:00
gprolog lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
guile18 guile18: fix edit-o 2022-03-09 08:20:53 +00:00
guile20 lang/guile*: Adjust namespacing comments to reality 2022-03-09 00:37:46 +00:00
guile22 lang/guile*: Adjust namespacing comments to reality 2022-03-09 00:37:46 +00:00
guile30 guile30: update to 3.0.8. 2022-03-30 07:48:13 +00:00
gwydion-dylan lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
heirloom-awk
hs-hslua Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslua-classes Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslua-core Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslua-marshalling Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslua-objectorientation Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslua-packaging Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-language-javascript Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-lua Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-purescript-cst Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-sourcemap Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hugs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
icon lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
idris *: Bump packages that depend on devel/hs-fsnotify 2022-02-26 12:35:11 +00:00
inform lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
intercal lang/intercal: fix build on platforms where sizeof(bool) != sizeof(int) 2021-12-27 04:27:10 +00:00
ja-gawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
jamvm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
janet janet: update to 1.18.1. jpm is now a separate package. 2021-11-04 13:52:23 +00:00
japhar Tell this it can build on arm. Don't see any reason it shouldn't go. 2021-12-25 21:29:17 +00:00
jasmin lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
jikes lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
jimtcl jimtcl: Enable --compat configure argument. 2021-12-14 10:19:12 +00:00
joos lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
jpm janet: update to 1.18.1. jpm is now a separate package. 2021-11-04 13:52:23 +00:00
js lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
kaffe lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
kaffe-x11 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kali lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
konoha revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ksi lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libBlocksRuntime lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libcxx llvm: updated to 13.0.1 2022-02-03 20:38:39 +00:00
libcxxabi llvm: updated to 13.0.1 2022-02-03 20:38:39 +00:00
libduktape libduktape: update to 2.7. 2022-02-25 20:50:07 +00:00
libLLVM libLLVM: update to 13.0.1, for mesa update 2022-03-13 15:22:32 +00:00
libLLVM4 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libLLVM34 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libobjc2 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
librep revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libunwind llvm: updated to 13.0.1 2022-02-03 20:38:39 +00:00
likepython lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
llvm llvm: document additional dependants 2022-05-28 01:51:16 +00:00
lua lua/module.mk: Allow passing arguments to busted 2022-03-06 09:13:44 +00:00
lua-moonscript lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lua51 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lua52 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lua53 lang/lua53: Explain why theere is no builtin.mk 2022-05-12 12:32:49 +00:00
lua54 lua54: update to 5.4.4 2022-03-06 07:46:10 +00:00
LuaJIT2 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lush lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
maude lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mercury (lang/mercury) regen PLIST, just confirmed on amd64 2022-01-14 22:13:04 +00:00
micropython revbump for icu and libffi 2021-12-08 16:01:42 +00:00
minischeme lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mit-scheme-bin lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mono mono: Set MAKE_JOBS_SAFE=no 2022-05-27 11:33:30 +00:00
mono-basic revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
moscow_ml lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mozjs78 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
mpd lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nawk
neko neko: Update MAINTAINER 2022-05-18 00:25:44 +00:00
newlisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
newsqueak lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nhc98 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nim nim: Update to 1.6.6 2022-05-19 01:50:25 +00:00
njs lang/njs: update to the recent version 0.7.3 2022-04-12 14:06:28 +00:00
nodejs nodejs: updated to 18.3.0 2022-06-02 09:46:41 +00:00
nodejs12 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
nodejs14 nodejs14: updated to 14.19.3 2022-06-01 20:08:14 +00:00
nodejs16 (lang/nodejs16) regen distinfo 2022-06-05 08:18:53 +00:00
npm npm: Switch to nodeversion.mk. 2022-05-13 10:52:27 +00:00
nqp (lang/nqp) Updated 2022.03 to 2022.06, ChangeLog not known 2022-06-08 11:59:45 +00:00
nuitka *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
objc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ocaml Updated lang/ocaml to version 4.14.0. 2022-05-24 18:25:38 +00:00
oo2c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
open-cobol-ce lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
opencobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
openjdk-bin lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
openjdk8 openjdk8: clean up references to defunct zeroshark option 2022-05-26 22:03:39 +00:00
openjdk11 openjdk{11,17}: match earmv[67]hf 2022-05-25 20:00:56 +00:00
openjdk17 openjdk{11,17}: match earmv[67]hf 2022-05-25 20:00:56 +00:00
opensource-cobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
oracle-jdk8 oracle-jdk8: RMD160 -> BLAKE2s 2022-04-28 06:21:49 +00:00
oracle-jre8 oracle-jre8: RMD160 -> BLAKE2s 2022-04-28 06:26:35 +00:00
ossp-js lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
owl-lisp owl-lisp: switch to USE_GITLAB. 2022-05-24 12:54:27 +00:00
p2c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
p5-Perl-LanguageServer lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
p5-Switch lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
parrot revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pc-lisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
pcc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
pcc-current lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
pear lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
perl5 perl5: update to 5.34.1 2022-04-01 16:39:12 +00:00
pfe lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
pforth lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
php lang/php81: update to 8.1.6 2022-05-13 15:02:36 +00:00
php56 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
php74 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
php80 php80: allow copying files with size zero 2022-05-21 16:00:11 +00:00
php81 lang/php80: forgot to add a file 2022-05-21 16:01:40 +00:00
picoc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
pict Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
polyml revbump for icu and libffi 2021-12-08 16:01:42 +00:00
purescript *: Bump packages that depend on devel/hs-fsnotify 2022-02-26 12:35:11 +00:00
py-asttokens *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-basicproperty *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-byterun py-byterun: fix PLIST for python 2.7 2022-01-22 14:42:28 +00:00
py-cmake-language-server python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-cxfreeze *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-execjs *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-executing py-executing: updated to 0.8.3 2022-04-15 17:46:17 +00:00
py-hy *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-inflect *: use versioned_dependencies.mk for py-importlib-metadata 2022-01-25 09:05:10 +00:00
py-js2py *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-jsparser *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-lark-parser lang/py-lark-parser: import py-lark-parser-0.12.0 2022-02-23 11:36:12 +00:00
py-libcst py-libcst: updated to 0.4.3 2022-05-16 19:20:04 +00:00
py-lsp-server *: py37 incompatibility via matplotlib via numpy 2022-05-15 10:05:15 +00:00
py-mypy py-mypy: updated to 0.960 2022-05-28 11:46:13 +00:00
py-mypy_extensions *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-parso *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-paver *: mark dependencies of py-virtualenv as not-for-python-2.x 2022-04-29 23:22:31 +00:00
py-pure-eval py-pure-eval: add missing build dependency 2022-01-27 08:05:17 +00:00
py-py3c py-py3c: updated to 1.4 2022-01-31 13:44:39 +00:00
py-pygls *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pyrex *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-python-language-server python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-python-lua *: convert to egg.mk 2022-01-10 23:46:48 +00:00
py-pythonz *: set USE_PKG_RESOURCES for some more packages 2022-01-05 20:07:10 +00:00
py-six *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-spark-parser *: depend on py-click via versioned_dependencies 2022-01-31 09:48:35 +00:00
py-uncompyle6 python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py27-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py37-html-docs python37 py37-html-docs: updated to 3.7.13 2022-03-19 18:55:44 +00:00
py38-html-docs python38 py38-html-docs: updated to 3.8.13 2022-03-19 18:56:44 +00:00
py39-html-docs python39 py39-html-docs: updated to 3.9.13 2022-05-18 08:07:32 +00:00
py310-html-docs python310 py310-html-docs: updated to 3.10.5 2022-06-08 17:56:46 +00:00
python py-Pmw{,2}: remove 2022-06-07 10:37:23 +00:00
python27 python27: properly undo the isysroot change 2022-05-13 19:24:02 +00:00
python37 python37 py37-html-docs: updated to 3.7.13 2022-03-19 18:55:44 +00:00
python38 python38 py38-html-docs: updated to 3.8.13 2022-03-19 18:56:44 +00:00
python39 python39 py39-html-docs: updated to 3.9.13 2022-05-18 08:07:32 +00:00
python310 python310 py310-html-docs: updated to 3.10.5 2022-06-08 17:56:46 +00:00
qore qore: Avoid Linux-specific AF_* interfaces. 2022-05-09 12:51:04 +00:00
quickjs lang/quickjs: import DESCR from wip/quickjs 2022-03-21 23:00:33 +00:00
R-cpp11 (lang/R-cpp11) Updated 0.3.1 to 0.4.2 2022-04-30 14:33:39 +00:00
R-sourcetools lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
racket revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
racket-textual lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rakudo (lang/rakudo) Updated 2022.03 to 2022.06 2022-06-08 12:46:35 +00:00
rcfunge lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rexx-imc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rexx-regina rexx-regina: Respect LDFLAGS when linking 2022-05-05 13:49:41 +00:00
ruby lang/ruby/rails.mk: start update of RoR to 7.0.3 2022-06-07 15:12:58 +00:00
ruby-coffee-script lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby-coffee-script-source lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby-cucumber-gherkin lang/ruby-cucumber-gherkin: update to 22.0.0 2021-11-23 14:05:24 +00:00
ruby-doc-stdlib lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby-execjs ruby-execjs: Switch to nodeversion.mk, bump PKGREVISION. 2022-05-13 10:56:05 +00:00
ruby-rkelly-remix lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby26 lang/ruby26-base: update to 2.6.10 2022-04-12 14:16:43 +00:00
ruby26-base lang/ruby26-base: update to 2.6.10 2022-04-12 14:16:43 +00:00
ruby27 lang/ruby27-base: update to 2.6.7 2022-04-12 14:21:00 +00:00
ruby27-base lang/ruby27-base: update to 2.6.7 2022-04-12 14:21:00 +00:00
ruby30 lang/ruby30-base: update to 3.0.4 2022-04-12 14:52:27 +00:00
ruby30-base lang/ruby: fix Ruby 3.0 build problem on NetBSD 8.0 2022-05-04 16:44:53 +00:00
ruby31 lang/ruby31: add package version 3.1.0 2022-01-16 13:59:42 +00:00
ruby31-base lang/ruby31-base: better fix than privious one 2022-05-07 09:36:16 +00:00
runawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rust rust: Put back SunOS AR fix. 2022-05-28 14:31:04 +00:00
rust-analyzer rust-analyzer: update to 0.0.2022.05.23. 2022-05-28 10:56:07 +00:00
rust-bin Sync to main rust version, upgrade rust-bin to 1.60.0. 2022-05-26 07:17:30 +00:00
rust-src rust-src: update / sync to rust version 1.60.0. 2022-05-25 21:54:43 +00:00
sablevm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
sablevm-classpath lang/sablevm-classpath: Recognize big-endian aargh64 as well. 2021-12-27 03:31:57 +00:00
sablevm-classpath-gui sablevm-classpath-gui: remove patch that is not in distinfo 2022-02-03 08:10:48 +00:00
sather lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sbcl Update to 2.1.10. 2021-11-30 23:35:05 +00:00
scala lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
scala-sbt lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
scheme48 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
scm lang/scm: Detect aargh64. 2021-12-27 03:17:17 +00:00
see lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sigscheme lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
siod siod: incompatible with MKPIE/RELRO 2021-11-18 14:12:48 +00:00
smalltalk revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
smlnj smlnj: use BLAKE2s 2021-11-18 07:33:11 +00:00
smlnj11072 smlnj11072: use BLAKE2s 2021-11-18 07:43:31 +00:00
snobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
spago *: Bump packages that depend on devel/hs-fsnotify 2022-02-26 12:35:11 +00:00
spidermonkey lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
spidermonkey185 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
spl revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
squeak lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
squeak-vm {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
sr lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sr-examples lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
stalin lang/stalin: revert accidental extra commits 2021-12-27 06:33:28 +00:00
STk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sun-jdk7 sun-jdk7: RMD160 -> BLAKE2s for Solaris files 2022-04-28 06:29:57 +00:00
sun-jre7 sun-jre7: RMD160 -> BLAKE2s for solaris files 2022-04-28 06:31:46 +00:00
surgescript lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
swi-prolog
swi-prolog-jpl
swi-prolog-lite lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
swi-prolog-packages
tcl revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
tcl-expect lang/tcl-expect: add workaround for deadlock seen on Linux and Solaris 2022-05-15 01:56:24 +00:00
tcl-otcl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
tcl85 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
tcltutor lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
tinyscheme lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ucblogo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
umb-scheme lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
utilisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
vala vala: update to 0.56.1. 2022-05-04 05:42:49 +00:00
vscm lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
vslisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
wasi-compiler-rt wasi-compiler-rt & wasi-libcxx: build fix for firefox 2022-06-04 00:34:30 +00:00
wasi-libc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
wasi-libcxx wasi-libcxx: revert comment, not necessary here 2022-06-04 00:56:53 +00:00
wsbasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
yabasic yabasic: update to 2.90.2. 2022-01-23 21:51:19 +00:00
yap lang/yap: Fix broken build on some platforms by disabling the offending code. 2021-12-29 03:14:35 +00:00
zenlisp zenlisp: switch MASTER_SITES to HTTPS, fix HOMEPAGE. 2022-05-15 17:48:57 +00:00
zig revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
Makefile lang: Enable openjdk17 2022-05-13 14:27:35 +00:00