pkgsrc/lang
adam 89d99a6ba1 python39 py39-html-docs: updated to 3.9.13
Python 3.9.13

Core and Builtins

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-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-46962: Classes and functions that unconditionally declared their docstrings ignoring the --without-doc-strings compilation flag no longer do so.

The classes affected are 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-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-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-34480: Fix a bug where _markupbase raised an UnboundLocalError when an invalid keyword was found in marked section. Patch by Marek Suscak.
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-46787: Fix concurrent.futures.ProcessPoolExecutor exception memory leak
bpo-46415: Fix ipaddress.ip_{address,interface,network} raising TypeError instead of ValueError if given invalid tuple as address parameter.
bpo-44911: IsolatedAsyncioTestCase will no longer throw an exception while cancelling leaked tasks. Patch by Bar Harel.
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-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 2.4.4.
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-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-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-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

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-05-18 08:07:32 +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 lang/boomerang needs tex-epstopdf-pkg, seen in Joyent build 2021-12-27 05:14:44 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
camlp5 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 *: fix usage of versioned_dependencies 2022-05-01 09:45:41 +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 gcc8: deconditionalize CHECK_RELRO_SKIP 2022-03-10 16:43:11 +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 gcc*: only use system zlib if it is native, else use bundled 2022-03-27 15:06:11 +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 go118: update to 1.18.2 (security) 2022-05-11 19:00:55 +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 go117: update to 1.17.10 (security) 2022-05-11 18:39:42 +00:00
go118 go118: update to 1.18.2 (security) 2022-05-11 19:00:55 +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 revbump for textproc/icu update 2022-04-18 19:09:40 +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 revbump for textproc/icu update 2022-04-18 19:09:40 +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 MAINTAINER 2022-05-18 00:25:28 +00:00
njs lang/njs: update to the recent version 0.7.3 2022-04-12 14:06:28 +00:00
nodejs nodejs: fix a typo in a comment 2022-05-05 13:31:16 +00:00
nodejs12 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
nodejs14 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
nodejs16 nodejs: moved to nodejs16 2022-05-05 07:02:24 +00:00
npm npm: Switch to nodeversion.mk. 2022-05-13 10:52:27 +00:00
nqp (lang/nqp) Updated 2022.02 to 2022.03, explicit ChangeLog unknown 2022-04-02 14:04:10 +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 PLIST fix for lang/ocaml for non-native architectures 2022-03-26 19:19:07 +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: add the native path on Fedora Linux to searches 2022-02-10 18:55:10 +00:00
openjdk11 openjdk11 & 17: preemptively set PKG_FAIL_REASON when PR 55248 applies 2022-05-15 22:44:24 +00:00
openjdk17 openjdk17: fix PLIST for zerovm option 2022-05-16 12:29:33 +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: Fix master site. while here update to 0.2 2022-04-23 23:27:55 +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 lang/php80: update to 8.0.19 2022-05-12 14:03:25 +00:00
php81 lang/php81: update to 8.1.6 2022-05-13 15:02:36 +00:00
picoc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
pict lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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.950 2022-05-02 08:19:25 +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.4 2022-03-25 17:55:19 +00:00
python py-testtools24: remove 2022-05-01 07:57:42 +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 lang/python310: Make it cross-compile. 2022-04-03 10:54:52 +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.02 to 2022.03 2022-04-02 14:15:10 +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 ruby: fix spelling & grammar in comments, and update one 2022-05-17 00:42:33 +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: Enable rust-llvm on macOS arm64. 2022-05-05 10:27:33 +00:00
rust-analyzer rust-analyzer updateed to 0.0.2022.04.11 2022-04-15 17:39:42 +00:00
rust-bin rust-bin: sync with rust 2022-04-30 21:12:17 +00:00
rust-src rust-src: update / sync to rust version 1.59.0. 2022-04-15 17:46:14 +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 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
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 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
wasi-libc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
wasi-libcxx revbump for textproc/icu update 2022-04-18 19:09:40 +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