pkgsrc/lang
adam fca528ca25 python39 py39-html-docs: updated to 3.9.8
Python 3.9.8

Core and Builtins
bpo-30570: Fixed a crash in issubclass() from infinite recursion when searching pathological __bases__ tuples.
bpo-45494: Fix parser crash when reporting errors involving invalid continuation characters. Patch by Pablo Galindo.
bpo-45385: Fix reference leak from descr_check. Patch by Dong-hee Na.
bpo-45167: Fix deepcopying of types.GenericAlias objects.
bpo-44219: Release the GIL while performing isatty system calls on arbitrary file descriptors. In particular, this affects os.isatty(), os.device_encoding() and io.TextIOWrapper. By extension, io.open() in text mode is also affected. This change solves a deadlock in os.isatty(). Patch by Vincent Michel in bpo-44219.
bpo-44959: Added fallback to extension modules with ‘.sl’ suffix on HP-UX
bpo-44050: Extensions that indicate they use global state (by setting m_size to -1) can again be used in multiple interpreters. This reverts to behavior of Python 3.8.
bpo-45121: Fix issue where Protocol.__init__ raises RecursionError when it’s called directly or via super(). Patch provided by Yurii Karabas.
bpo-45083: When the interpreter renders an exception, its name now has a complete qualname. Previously only the class name was concatenated to the module name, which sometimes resulted in an incorrect full name being displayed.

(This issue impacted only the C code exception rendering, the traceback module was using qualname already).
Library
bpo-45678: Fix bug in Python 3.9 that meant functools.singledispatchmethod failed to properly wrap the attributes of the target method. Patch by Alex Waygood.
bpo-45679: Fix caching of multi-value typing.Literal. Literal[True, 2] is no longer equal to Literal[1, 2].
bpo-45438: Fix typing.Signature string representation for generic builtin types.
bpo-45581: sqlite3.connect() now correctly raises MemoryError if the underlying SQLite API signals memory error. Patch by Erlend E. Aasland.
bpo-39679: Fix bug in functools.singledispatchmethod that caused it to fail when attempting to register a classmethod() or staticmethod() using type annotations. Patch contributed by Alex Waygood.
bpo-45515: Add references to zoneinfo in the datetime documentation, mostly replacing outdated references to dateutil.tz. Change by Paul Ganssle.
bpo-45467: Fix incremental decoder and stream reader in the “raw-unicode-escape” codec. Previously they failed if the escape sequence was split.
bpo-45461: Fix incremental decoder and stream reader in the “unicode-escape” codec. Previously they failed if the escape sequence was split.
bpo-45239: Fixed email.utils.parsedate_tz() crashing with UnboundLocalError on certain invalid input instead of returning None. Patch by Ben Hoyt.
bpo-44904: Fix bug in the doctest module that caused it to fail if a docstring included an example with a classmethod property. Patch by Alex Waygood.
bpo-45406: Make inspect.getmodule() catch FileNotFoundError raised by :’func:inspect.getabsfile, and return None to indicate that the module could not be determined.
bpo-45262: Prevent use-after-free in asyncio. Make sure the cached running loop holder gets cleared on dealloc to prevent use-after-free in get_running_loop
bpo-45386: Make xmlrpc.client more robust to C runtimes where the underlying C strftime function results in a ValueError when testing for year formatting options.
bpo-45371: Fix clang rpath issue in distutils. The UnixCCompiler now uses correct clang option to add a runtime library directory (rpath) to a shared library.
bpo-20028: Improve error message of csv.Dialect when initializing. Patch by Vajrasky Kok and Dong-hee Na.
bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0
bpo-41710: On Unix, if the sem_clockwait() function is available in the C library (glibc 2.30 and newer), the threading.Lock.acquire() method now uses the monotonic clock (time.CLOCK_MONOTONIC) for the timeout, rather than using the system clock (time.CLOCK_REALTIME), to not be affected by system clock changes. Patch by Victor Stinner.
bpo-45328: Fixed http.client.HTTPConnection to work properly in OSs that don’t support the TCP_NODELAY socket option.
bpo-1596321: Fix the threading._shutdown() function when the threading module was imported first from a thread different than the main thread: no longer log an error at Python exit.
bpo-45274: Fix a race condition in the Thread.join() method of the threading module. If the function is interrupted by a signal and the signal handler raises an exception, make sure that the thread remains in a consistent state to prevent a deadlock. Patch by Victor Stinner.
bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug(): it runs now asynchronous methods and callbacks.
bpo-36674: unittest.TestCase.debug() raises now a unittest.SkipTest if the class or the test method are decorated with the skipping decorator.
bpo-45235: Fix an issue where argparse would not preserve values in a provided namespace when using a subparser with defaults.
bpo-45234: Fixed a regression in copyfile(), copy(), copy2() raising FileNotFoundError when source is a directory, which should raise IsADirectoryError
bpo-45228: Fix stack buffer overflow in parsing J1939 network address.
bpo-45192: Fix the tempfile._infer_return_type function so that the dir argument of the tempfile functions accepts an object implementing the os.PathLike protocol.

Patch by Kyungmin Lee.
bpo-45160: When tracing a tkinter variable used by a ttk OptionMenu, callbacks are no longer made twice.
bpo-35474: Calling mimetypes.guess_all_extensions() with strict=False no longer affects the result of the following call with strict=True. Also, mutating the returned list no longer affects the global state.
bpo-45166: typing.get_type_hints() now works with Final wrapped in ForwardRef.
bpo-45097: Remove deprecation warnings about the loop argument in asyncio incorrectly emitted in cases when the user does not pass the loop argument.
bpo-45081: Fix issue when dataclasses that inherit from typing.Protocol subclasses have wrong __init__. Patch provided by Yurii Karabas.
bpo-24444: Fixed an error raised in argparse help display when help for an option is set to 1+ blank spaces or when choices arg is an empty container.
bpo-45021: Fix a potential deadlock at shutdown of forked children when using concurrent.futures module
bpo-45030: Fix integer overflow in pickling and copying the range iterator.
bpo-39039: tarfile.open raises ReadError when a zlib error occurs during file extraction.
bpo-44594: Fix an edge case of ExitStack and AsyncExitStack exception chaining. They will now match with block behavior when __context__ is explicitly set to None when the exception is in flight.
Documentation
bpo-45726: Improve documentation for functools.singledispatch() and functools.singledispatchmethod.
bpo-45680: Amend the docs on GenericAlias objects to clarify that non-container classes can also implement __class_getitem__. Patch contributed by Alex Waygood.
bpo-45655: Add a new “relevant PEPs” section to the top of the documentation for the typing module. Patch by Alex Waygood.
bpo-45604: Add level argument to multiprocessing.log_to_stderr function docs.
bpo-45464: Mention in the documentation of Built-in Exceptions that inheriting from multiple exception types in a single subclass is not recommended due to possible memory layout incompatibility.
bpo-45449: Add note about PEP 585 in collections.abc.
bpo-45516: Add protocol description to the importlib.abc.Traversable documentation.
bpo-20692: Add Programming FAQ entry explaining that int literal attribute access requires either a space after or parentheses around the literal.
bpo-45216: Remove extra documentation listing methods in difflib. It was rendering twice in pydoc and was outdated in some places.
Tests
bpo-45578: Add tests for dis.distb()
bpo-45577: Add subtests for all pickle protocols in test_zoneinfo.
bpo-43592: test.libregrtest now raises the soft resource limit for the maximum number of file descriptors when the default is too low for our test suite as was often the case on macOS.
bpo-40173: Fix test.support.import_helper.import_fresh_module().
bpo-45280: Add a test case for empty typing.NamedTuple.
bpo-45269: Cover case when invalid markers type is supplied to c_make_encoder.
bpo-45209: Fix UserWarning: resource_tracker warning in _test_multiprocessing._TestSharedMemory.test_shared_memory_cleaned_after_process_termination
bpo-45195: Fix test_readline.test_nonascii(): sometimes, the newline character is not written at the end, so don’t expect it in the output. Patch by Victor Stinner.
bpo-45156: Fixes infinite loop on unittest.mock.seal() of mocks created by create_autospec().
bpo-45042: Fixes that test classes decorated with @hashlib_helper.requires_hashdigest were skipped all the time.
Build
bpo-43158: setup.py now uses values from configure script to build the _uuid extension module. Configure now detects util-linux’s libuuid, too.
bpo-45571: Modules/Setup now use PY_CFLAGS_NODIST instead of PY_CFLAGS to compile shared modules.
bpo-45532: Update sys.version to use main as fallback information. Patch by Jeong YunWon.
bpo-45405: Prevent internal configure error when running configure with recent versions of non-Apple clang. Patch by David Bohman.
bpo-45220: Avoid building with the Windows 11 SDK previews automatically. This may be overridden by setting the DefaultWindowsSDKVersion environment variable before building.
Windows
bpo-45337: venv now warns when the created environment may need to be accessed at a different path, due to redirections, links or junctions. It also now correctly installs or upgrades components when the alternate path is required.
macOS
bpo-44828: Avoid tkinter file dialog failure on macOS 12 Monterey when using the Tk 8.6.11 provided by python.org macOS installers. Patch by Marc Culler of the Tk project.
IDLE
bpo-45296: On Windows, change exit/quit message to suggest Ctrl-D, which works, instead of <Ctrl-Z Return>, which does not work in IDLE.
C API
bpo-44687: BufferedReader.peek() no longer raises ValueError when the entire file has already been buffered.
bpo-44751: Remove crypt.h include from the public Python.h header.
2021-11-06 12:24:34 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
asn1c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
clang lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
clang-tools-extra lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
classpath lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
classpath-gui *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
clisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
clojure lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
compiler-rt lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
coq lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
cparser lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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
duktape lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
eag lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ecl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
eieio lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
gcc2 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc5-aux Mark a few GCC packages unsupported by RELRO. 2021-11-06 09:33:37 +00:00
gcc6 lang/gcc*: skip some RELRO checks when --disable-boostrap 2021-10-12 13:46:14 +00:00
gcc6-aux Mark a few GCC packages unsupported by RELRO. 2021-11-06 09:33:37 +00:00
gcc6-libs lang/gcc*: skip some RELRO checks when --disable-boostrap 2021-10-12 13:46:14 +00:00
gcc7 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc7-libs lang/gcc*: skip some RELRO checks when --disable-boostrap 2021-10-12 13:46:14 +00:00
gcc8 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc8-libs lang/gcc*: skip some RELRO checks when --disable-boostrap 2021-10-12 13:46:14 +00:00
gcc9 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc9-libs lang/gcc*: skip some RELRO checks when --disable-boostrap 2021-10-12 13:46:14 +00:00
gcc10 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc10-libs lang/gcc*: skip some RELRO checks when --disable-boostrap 2021-10-12 13:46:14 +00:00
gforth lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
ghc80 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
ghc84 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
ghc88 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
ghc90 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
ghc810 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
gjs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 go117 to 1.17.3. 2021-11-05 19:35:00 +00:00
go-bin lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +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.10. 2021-11-04 19:18:59 +00:00
go117 Update go117 to 1.17.3. 2021-11-05 19:35:00 +00:00
gpc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gprolog lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
guile lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
guile20 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
guile22 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gwydion-dylan lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
heirloom-awk
hs-hslua lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
inform lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
intercal lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ja-gawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
jamvm lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
janet janet: update to 1.18.1. jpm is now a separate package. 2021-11-04 13:52:23 +00:00
japhar lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
kali lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
konoha lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libcxxabi lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libduktape lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libLLVM lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
libunwind lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
likepython lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
llvm lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lua lua: fix typo in luaversion.mk 2020-08-25 22:46:24 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lua54 lua54: Include correct objects in luac binary 2021-10-27 13:02:40 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
micropython lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mono-basic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
moscow_ml lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mozjs78 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mpd lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nawk
neko lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nodejs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nodejs10 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nodejs12 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
npm lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nqp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
nuitka lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
objc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ocaml lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
openjdk11 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
opensource-cobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
oracle-jdk8 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
oracle-jre8 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
ossp-js lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
owl-lisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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/php73: update to 7.3.32 2021-10-30 07:45:42 +00:00
php56 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
php73 lang/php73: update to 7.3.32 2021-10-30 07:45:42 +00:00
php74 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
php80 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-asttokens lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-basicproperty lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-byterun lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-cmake-language-server lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-cxfreeze lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-execjs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-hy lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-inflect lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-js2py lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-jsparser lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-lsp-server py-lsp-server: fix 5/7 failing tests. 2021-11-05 15:58:23 +00:00
py-mypy lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-mypy_extensions lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-parso lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-paver lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-py3c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-pygls lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-pyrex lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-python-language-server py-python-language-server: cleanup 2021-11-05 13:42:46 +00:00
py-python-lua lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-pythonz lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-six lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-spark-parser lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py-uncompyle6 py-uncompyle6: updated to 3.8.0 2021-10-31 08:44:00 +00:00
py27-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py36-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py37-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py38-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py39-html-docs python39 py39-html-docs: updated to 3.9.8 2021-11-06 12:24:34 +00:00
py310-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
python python: add support for markdown to versioned_dependencies.mk 2021-11-01 21:07:00 +00:00
python27 python27: fix definition of variable added in security patch 2021-10-27 23:58:55 +00:00
python36 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
python37 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
python38 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
python39 python39 py39-html-docs: updated to 3.9.8 2021-11-06 12:24:34 +00:00
python310 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
qore lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
quickjs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
R-cpp11 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
R-sourcetools lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
racket lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
racket-textual lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rakudo lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby typo in error message 2021-09-25 00:47:26 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby-doc-stdlib lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby-execjs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby-rkelly-remix lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby26
ruby26-base lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby27
ruby27-base lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby30 lang/ruby30: add version 3.0.0 package 2021-02-14 14:35:54 +00:00
ruby30-base ruby30-base: Fix ALTERNATIVES to use PKGMANDIR. 2021-11-03 11:03:22 +00:00
runawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rust lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
rust-bin lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
sablevm lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sablevm-classpath lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sablevm-classpath-gui *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
sather lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sbcl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
smalltalk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
smlnj lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
smlnj11072 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
snobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
squeak lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
squeak-vm lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
STk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
sun-jdk7 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +00:00
sun-jre7 lang: Remove SHA1 hashes for distfiles 2021-10-07 14:20:45 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
tcl-expect lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +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: remove bash test dependency 2021-11-01 11:01:26 +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
wsbasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
yabasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
yap lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
zenlisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
zig lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
Makefile lang: sync package list 2021-11-05 12:37:32 +00:00