pkgsrc/lang
adam 9f2ff39631 python311 py311-html-docs: updated to 3.11.7
Python 3.11.7 final

Core and Builtins

gh-112625: Fixes a bug where a bytearray object could be cleared while iterating over an argument in the bytearray.join() method that could result in reading memory after it was freed.
gh-112388: Fix an error that was causing the parser to try to overwrite tokenizer errors. Patch by pablo Galindo
gh-112387: Fix error positions for decoded strings with backwards tokenize errors. Patch by Pablo Galindo
gh-112266: Change docstrings of __dict__ and __weakref__.
gh-109181: Speed up Traceback object creation by lazily compute the line number. Patch by Pablo Galindo
gh-102388: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out of bounds
gh-111366: Fix an issue in the codeop that was causing SyntaxError exceptions raised in the presence of invalid syntax to not contain precise error messages. Patch by Pablo Galindo
gh-111380: Fix a bug that was causing SyntaxWarning to appear twice when parsing if invalid syntax is encountered later. Patch by Pablo galindo
gh-88116: Traceback location ranges involving wide unicode characters (like emoji and asian characters) now are properly highlighted. Patch by Batuhan Taskaya and Pablo Galindo.
gh-94438: Fix a regression that prevented jumping across is None and is not None when debugging. Patch by Savannah Ostrowski.
gh-110696: Fix incorrect error message for invalid argument unpacking. Patch by Pablo Galindo
gh-110237: Fix missing error checks for calls to PyList_Append in _PyEval_MatchClass.
gh-109216: Fix possible memory leak in BUILD_MAP.
Library
gh-112618: Fix a caching bug relating to typing.Annotated. Annotated[str, True] is no longer identical to Annotated[str, 1].
gh-112509: Fix edge cases that could cause a key to be present in both the __required_keys__ and __optional_keys__ attributes of a typing.TypedDict. Patch by Jelle Zijlstra.
gh-94722: Fix bug where comparison between instances of DocTest fails if one of them has None as its lineno.
gh-112105: Make readline.set_completer_delims() work with libedit
gh-111942: Fix SystemError in the TextIOWrapper constructor with non-encodable “errors” argument in non-debug mode.
gh-109538: Issue warning message instead of having RuntimeError be displayed when event loop has already been closed at StreamWriter.__del__().
gh-111942: Fix crashes in io.TextIOWrapper.reconfigure() when pass invalid arguments, e.g. non-string encoding.
gh-111804: Remove posix.fallocate() under WASI as the underlying posix_fallocate() is not available in WASI preview2.
gh-111841: Fix truncating arguments on an embedded null character in os.putenv() and os.unsetenv() on Windows.
gh-111541: Fix doctest for SyntaxError not-builtin subclasses.
gh-110894: Call loop exception handler for exceptions in client_connected_cb of asyncio.start_server() so that applications can handle it. Patch by Kumar Aditya.
gh-111531: Fix reference leaks in bind_class() and bind_all() methods of tkinter widgets.
gh-111356: Added io.text_encoding(), io.DEFAULT_BUFFER_SIZE, and io.IncrementalNewlineDecoder to io.__all__.
gh-68166: Remove mention of not supported “vsapi” element type in tkinter.ttk.Style.element_create(). Add tests for element_create() and other ttk.Style methods. Add examples for element_create() in the documentation.
gh-111251: Fix _blake2 not checking for errors when initializing.
gh-111174: Fix crash in io.BytesIO.getbuffer() called repeatedly for empty BytesIO.
gh-111187: Postpone removal version for locale.getdefaultlocale() to Python 3.15.
gh-111159: Fix doctest output comparison for exceptions with notes.
gh-110910: Fix invalid state handling in asyncio.TaskGroup and asyncio.Timeout. They now raise proper RuntimeError if they are improperly used and are left in consistent state after this.
gh-111092: Make turtledemo run without default root enabled.
gh-110590: Fix a bug in _sre.compile() where TypeError would be overwritten by OverflowError when the code argument was a list of non-ints.
gh-65052: Prevent pdb from crashing when trying to display undisplayable objects
gh-110519: Deprecation warning about non-integer number in gettext now alwais refers to the line in the user code where gettext function or method is used. Previously it could refer to a line in gettext code.
gh-110378: contextmanager() and asynccontextmanager() context managers now close an invalid underlying generator object that yields more then one value.
gh-110365: Fix termios.tcsetattr() bug that was overwritting existing errors during parsing integers from term list.
gh-110196: Add __reduce__ method to IPv6Address in order to keep scope_id
gh-109747: Improve errors for unsupported look-behind patterns. Now re.error is raised instead of OverflowError or RuntimeError for too large width of look-behind pattern.
gh-109786: Fix possible reference leaks and crash when re-enter the __next__() method of itertools.pairwise.
gh-108791: Improved error handling in pdb command line interface, making it produce more concise error messages.
gh-73561: Omit the interface scope from an IPv6 address when used as Host header by http.client.
gh-86826: zipinfo now supports the full range of values in the TZ string determined by RFC 8536 and detects all invalid formats. Both Python and C implementations now raise exceptions of the same type on invalid data.
bpo-41422: Fixed memory leaks of pickle.Pickler and pickle.Unpickler involving cyclic references via the internal memo mapping.
bpo-40262: The ssl.SSLSocket.recv_into() method no longer requires the buffer argument to implement __len__ and supports buffers with arbitrary item size.
bpo-35191: Fix unexpected integer truncation in socket.setblocking() which caused it to interpret multiples of 2**32 as False.

Documentation

gh-108826: dis module command-line interface is now mentioned in documentation.

Tests

gh-110367: Make regrtest --verbose3 option compatible with --huntrleaks -jN options. The ./python -m test -j1 -R 3:3 --verbose3 command now works as expected. Patch by Victor Stinner.
gh-111309: distutils tests can now be run via unittest.
gh-111165: Remove no longer used functions run_unittest() and run_doctest() and class BasicTestRunner from the test.support module.
gh-110932: Fix regrtest if the SOURCE_DATE_EPOCH environment variable is defined: use the variable value as the random seed. Patch by Victor Stinner.
gh-110995: test_gdb: Fix detection of gdb built without Python scripting support. Patch by Victor Stinner.
gh-110918: Test case matching patterns specified by options --match, --ignore, --matchfile and --ignorefile are now tested in the order of specification, and the last match determines whether the test case be run or ignored.
gh-110647: Fix test_stress_modifying_handlers() of test_signal. Patch by Victor Stinner.
gh-103053: Fix test_tools.test_freeze on FreeBSD: run “make distclean” instead of “make clean” in the copied source directory to remove also the “python” program. Patch by Victor Stinner.
gh-110167: Fix a deadlock in test_socket when server fails with a timeout but the client is still running in its thread. Don’t hold a lock to call cleanup functions in doCleanups(). One of the cleanup function waits until the client completes, whereas the client could deadlock if it called addCleanup() in such situation. Patch by Victor Stinner.
gh-110388: Add tests for tty.
gh-81002: Add tests for termios.
gh-110267: Add tests for pickling and copying PyStructSequence objects. Patched by Xuehai Pan.
gh-109974: Fix race conditions in test_threading lock tests. Wait until a condition is met rather than using time.sleep() with a hardcoded number of seconds. Patch by Victor Stinner.
gh-109972: Split test_gdb.py file into a test_gdb package made of multiple tests, so tests can now be run in parallel. Patch by Victor Stinner.
gh-104736: Fix test_gdb on Python built with LLVM clang 16 on Linux ppc64le (ex: Fedora 38). Search patterns in gdb “bt” command output to detect when gdb fails to retrieve the traceback. For example, skip a test if Backtrace stopped: frame did not save the PC is found. Patch by Victor Stinner.
gh-108927: Fixed order dependence in running tests in the same process when a test that has submodules (e.g. test_importlib) follows a test that imports its submodule (e.g. test_importlib.util) and precedes a test (e.g. test_unittest or test_compileall) that uses that submodule.

Build

gh-103053: “make check-clean-src” now also checks if the “python” program is found in the source directory: fail with an error if it does exist. Patch by Victor Stinner.
gh-109191: Fix compile error when building with recent versions of libedit.

Windows

gh-110913: WindowsConsoleIO now correctly chunks large buffers without splitting up UTF-8 sequences.
gh-110437: Allows overriding the source of VC redistributables so that releases can be guaranteed to never downgrade between updates.
gh-109286: Update Windows installer to use SQLite 3.43.1.

macOS

gh-110950: Update macOS installer to include an upstream Tcl/Tk fix for the Secure coding is not enabled for restorable state! warning encountered in Tkinter on macOS 14 Sonoma.
gh-111015: Ensure that IDLE.app and Python Launcher.app are installed with appropriate permissions on macOS builds.
gh-109286: Update macOS installer to use SQLite 3.43.1.
gh-71383: Update macOS installer to include an upstream Tcl/Tk fix for the ttk::ThemeChanged error encountered in Tkinter.
gh-92603: Update macOS installer to include a fix accepted by upstream Tcl/Tk for a crash encountered after the first tkinter.Tk() instance is destroyed.
gh-99834: Update macOS installer to Tcl/Tk 8.6.13.

IDLE

bpo-35668: Add docstrings to the IDLE debugger module. Fix two bugs: initialize Idb.botframe (should be in Bdb); in Idb.in_rpc_code, check whether prev_frame is None before trying to use it. Greatly expand test_debugger.

C API

gh-112438: Fix support of format units “es”, “et”, “es#”, and “et#” in nested tuples in PyArg_ParseTuple()-like functions.
gh-109521: PyImport_GetImporter() now sets RuntimeError if it fails to get sys.path_hooks or sys.path_importer_cache or they are not list and dict correspondingly. Previously it could return NULL without setting error in obscure cases, crash or raise SystemError if these attributes have wrong type.
2023-12-11 10:23:42 +00:00
..
a60 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
abcl Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
adoptopenjdk11-bin lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
algol68g lang/algol68g: update to 3.4.4. 2023-12-01 18:35:11 +00:00
asn1c *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ats2 lang/ats2: USE_TOOLS+=find, install fails using solaris's 2023-01-16 04:38:04 +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 Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +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 caml-light: point MASTER_SITES to caml.inria.fr. 2023-05-13 17:36:35 +00:00
camlp5 Fixed interpreter problem with perl script in lang/camlp5 2022-11-17 10:21:14 +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
chezscheme lang/chezscheme: import chezscheme-9.9.9alpha2023.11.03 2023-11-06 17:15:57 +00:00
chibi-scheme *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
chicken lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
chicken5 chicken5: add comment on why chicken5-boot is needed, with upstream ticket 2023-05-04 20:54:40 +00:00
chicken5-boot chicken5, chicken5-boot: split shared mk code off into Makefile.common. 2023-04-30 20:18:08 +00:00
cim *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
clang *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
clang-tools-extra *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
classpath Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
classpath-gui *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
clisp clisp: Unbreak shell syntax. 2023-05-17 10:33:24 +00:00
clojure clojure: Update to 1.11.1.1155 2022-09-12 18:44:09 +00:00
compiler-rt llvm: updated to 16.0.6 2023-10-06 19:15:19 +00:00
coq *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
cparser cparser: set license 2023-04-03 11:30:59 +00:00
csmith *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cu-prolog lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
dhall Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +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 lang/ecl: update to ecl-23.9.9 2023-09-10 06:28:21 +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 elixir: updated to 1.15.7 2023-10-23 14:42:23 +00:00
elk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
embryo Reset MAINTAINER 2022-11-09 13:14:06 +00:00
erlang erlang: use BSD_INSTALL_LIB to install shared libraries instead of INSTALL_PROGRAM; this avoid stripping on some platforms like Darwin 2023-11-02 19:20:46 +00:00
erlang-doc erlang: updated to 26.1.2 2023-10-23 14:41:05 +00:00
erlang-luerl erlang-luerl: Update to 1.0 2022-10-15 17:55:28 +00:00
erlang-man erlang: updated to 26.1.2 2023-10-23 14:41:05 +00:00
erlang21 *: bump for openssl 3 2023-10-24 22:08:07 +00:00
execline execline: update to 2.9.4.0. Changes: 2023-11-11 11:52:41 +00:00
f2c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
fennel lang/fennel: update to fennel-1.3.1 2023-07-22 21:38:17 +00:00
ficl lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
flang *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
focal lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
fort77 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
forth-retro lang/forth-retro: honor $(PKGMANDIR) 2023-01-16 04:10:47 +00:00
g95 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gambc *: Mark packages that were originally identified as requiring 2023-08-02 19:20:16 +00:00
gauche lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gawk Centralize per-package hacks for lack of -rpath on Darwin/powerpc. 2023-11-07 13:19:47 +00:00
gcc-aux Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gcc2 lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
gcc5-aux Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gcc6 gcc6: can't work on NetBSD/aarch64 2023-11-16 09:24:04 +00:00
gcc6-aux Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gcc6-libs gcc*-libs: fix PKGREVISION values that got out of sync (again) 2023-10-05 05:20:10 +00:00
gcc7 gcc*: include missing header and unbreak build on Linux. 2023-09-05 16:54:19 +00:00
gcc7-libs Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gcc8 gcc8: move admonition about PKGREVSION next to the entry (NFC) 2023-10-05 05:27:38 +00:00
gcc8-libs gcc8-libs: fix PKGREVISION value that got out of sync (again) 2023-10-05 05:15:36 +00:00
gcc9 gcc9: move admonition about PKGREVSION next to the entry (NFC) 2023-10-05 06:03:11 +00:00
gcc9-libs gcc*-libs: fix PKGREVISION values that got out of sync (again) 2023-10-05 05:20:10 +00:00
gcc10 gcc*: include missing header and unbreak build on Linux. 2023-09-05 16:54:19 +00:00
gcc10-aux gcc*: replace gnarly cargo-culted extract logic with EXTRACT_ONLY 2023-08-15 13:49:17 +00:00
gcc10-libjit lang/gcc10-libjit: import gcc10-libjit-10.4.0 2023-04-06 22:09:59 +00:00
gcc10-libs Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gcc12 gcc12: Stop subverting buildlink with LDFLAGS. 2023-11-27 14:45:40 +00:00
gcc12-libjit lang/gcc12-libjit: import gcc12-libjit-12.2.0 2023-04-07 06:48:58 +00:00
gcc12-libs Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gcc13 gcc*: Disable FORTIFY on Linux only 2023-08-29 09:48:46 +00:00
gcc13-libjit lang/gcc13-libjit: import gcc13-libjit-13.1.0 2023-05-03 20:04:10 +00:00
gcc13-libs Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
gforth *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ghc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ghc-bootstrap *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ghc7 Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
ghc80 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
ghc84 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
ghc88 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
ghc90 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
ghc92 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
ghc94 lang/ghc94: Fix "make bootstrap" on Darwin 2023-10-12 07:51:09 +00:00
ghc96 ghc96: Build with LC_ALL=en_US.UTF-8. 2023-11-30 16:23:59 +00:00
ghc810 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
gjs *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
gleam *: bump for openssl 3 2023-10-24 22:08:07 +00:00
gnucobol *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
go go121: update to 1.21.5 (security) 2023-12-05 19:28:26 +00:00
go-bin go-bin: Support illumos/amd64. 2022-12-19 19:23:41 +00:00
go14 Revbump all Go packages after go120 update 2023-07-15 10:52:52 +00:00
go118 Revbump all Go packages after go120 update 2023-07-15 10:52:52 +00:00
go119 go119: add missing file to PLIST 2023-09-24 23:45:39 +00:00
go120 go120: update to 1.20.12 (security) 2023-12-05 19:17:57 +00:00
go121 go121: do not trim paths in the installed go tool 2023-12-08 14:57:37 +00:00
gpc *: Remove many GCC_REQD for particularly old GCCs 2023-07-17 22:00:22 +00:00
gprolog lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
guile18 lang/guile18: Note SunOS build failure 2023-11-07 18:51:56 +00:00
guile20 *: bump PKGREVISION for libunistring shlib major bump 2022-10-26 10:31:00 +00:00
guile22 *: bump PKGREVISION for libunistring shlib major bump 2022-10-26 10:31:00 +00:00
guile30 guile30: remove paxctl workaround for JIT on NetBSD 2023-03-04 09:41:13 +00:00
gwydion-dylan *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
hamlet Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
heirloom-awk
hjsmin Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-classes Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-cli Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-core Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-list Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-marshalling Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-objectorientation Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-packaging Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-repl Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-hslua-typing Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-language-javascript Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-lua Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hs-sourcemap Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
hugs Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
icon lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
idris Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
idris2 lang/idris2: Add upstream URLs to patches 2023-11-07 03:40:19 +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 lang/janet: Update to 1.31.0. 2023-09-27 23:58:51 +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 *: bump for openssl 3 2023-10-24 22:08:07 +00:00
joker Revbump all Go packages after go121 update 2023-12-05 19:46:02 +00:00
joos lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
jpm jpm: Update MAINTAINER 2023-01-14 07:41:00 +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 *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
kali lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
kona lang/kona: don't feed the compiler -fast on solaris, doesn't work 2023-01-16 04:15:37 +00:00
konoha *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
kotlin lang/kotlin: import kotlin-1.8.10 2023-03-20 13:56:27 +00:00
ksi lang/ksi: be more robust about detecting the number of signals. 2023-01-16 03:58:09 +00:00
libBlocksRuntime Reset MAINTAINER 2022-11-09 13:14:06 +00:00
libcxx llvm: updated to 16.0.6 2023-10-06 19:15:19 +00:00
libcxxabi llvm: updated to 16.0.6 2023-10-06 19:15:19 +00:00
libduktape libduktape: update to 2.7. 2022-02-25 20:50:07 +00:00
libLLVM *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +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 libunwind: Use correct flags to link. 2023-12-01 18:27:22 +00:00
likepython *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
llvm llvm: Switch PYTHON_FOR_BUILD_ONLY to "tool". 2023-11-23 11:01:46 +00:00
lua lua: update docs 2022-06-28 09:39:59 +00:00
lua-moonscript lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
lua51 lua*: honor BUILD_USES_CMAKE 2023-03-25 18:55:46 +00:00
lua52 lua*: honor BUILD_USES_CMAKE 2023-03-25 18:55:46 +00:00
lua53 lua*: honor BUILD_USES_CMAKE 2023-03-25 18:55:46 +00:00
lua54 lua54: fix man page name to match executable name 2023-09-06 11:48:15 +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 *: Mark packages that were originally identified as requiring 2023-08-02 19:20:16 +00:00
mawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
mercury Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
micropython *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +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
mlir llvm: updated to 16.0.6 2023-10-06 19:15:19 +00:00
mono mono: Update 6.12.0.199 2023-11-24 13:58:45 +00:00
mono-basic *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
moscow_ml moscow_ml: Spell SunOS correctly. 2023-06-26 16:29:18 +00:00
mozjs78 *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
mpd mpd: make this build on NetBSD/powerpc 10.0_BETA. 2023-02-16 17:59:49 +00:00
mujs mujs: Update to 1.3.4 2023-12-07 09:21:34 +00:00
nawk lang/nawk: downgrade to 20230909. 2023-09-17 10:32:05 +00:00
neko *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
newlisp lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
newsqueak lang/newsqueak: add configury for macos 2023-02-01 02:06:30 +00:00
nim nim: Update to 2.0.0 2023-11-23 16:41:31 +00:00
njs *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
nodejs nodejs: updated to 21.4.0 2023-12-07 12:23:22 +00:00
nodejs16 nodejs*: Consolidate and fix python includes. 2023-11-23 16:57:37 +00:00
nodejs18 nodejs*: Consolidate and fix python includes. 2023-11-23 16:57:37 +00:00
nodejs20 nodejs20: updated to 20.10.0 2023-11-26 07:55:53 +00:00
nqp (lang/nqp) Updated 2023.04 to 2023.05, explicit ChangeLog unknown 2023-06-10 15:35:18 +00:00
nuitka *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
objc lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ocaml ocaml: fix some pkglint 2023-04-09 07:28:27 +00:00
oo2c oo2c: fix xsltproc error 2022-12-21 11:34:53 +00:00
open-cobol-ce open-cobol-ce: Explicitly disable nls. 2022-12-13 13:23:21 +00:00
opencobol opencobol: reset MAINTAINER to pkgsrc-users@. 2023-08-22 21:17:53 +00:00
openjdk-bin openjdk-bin: Update to 21.0.1 2023-11-22 14:11:32 +00:00
openjdk8 openjdk*: try hw.physmem64 before hw.physmem in configure 2023-12-04 01:08:16 +00:00
openjdk11 openjdk11: Fix runtime error of Bazel 2023-12-09 01:19:54 +00:00
openjdk17 openjdk*: try hw.physmem64 before hw.physmem in configure 2023-12-04 01:08:16 +00:00
openjdk21 openjdk21: regen + gpg sign bootstrap. Enable for i386 and aarch64. Bump. 2023-12-07 16:26:37 +00:00
opensource-cobol lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
oracle-jdk8 oracle-jdk8: Fix PLIST for latest version. 2023-03-13 09:33:10 +00:00
oracle-jdk17 oracle-jdk17: updated to 17.0.9 2023-11-10 18:30:26 +00:00
oracle-jre8 oracle-jre8: Disable STRIP_DEBUG. 2023-03-13 09:34:38 +00:00
ossp-js *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
owl-lisp lang/owl-lisp: requires -lsocket -lnsl on solaris 2023-01-16 03:52:32 +00:00
p2c lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
p5-Perl-LanguageServer *: recursive bump for perl 5.38 2023-07-06 09:38:07 +00:00
p5-Switch *: recursive bump for perl 5.38 2023-07-06 09:38:07 +00:00
parrot *: recursive bump for icu 74.1 2023-11-08 13:18:02 +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 pcc-current: update to version 20230506 2023-05-06 15:19:25 +00:00
pear lang/pear: update to 1.10.14 2023-11-29 16:02:12 +00:00
perl5 perl: update to 5.38.2. 2023-12-05 19:36:26 +00:00
pfe *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
pforth lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
php lang/php: add PHP 8.3 support 2023-11-30 16:14:00 +00:00
php56 PHP 7.4 reached EOL November 28 2022. 2023-11-14 02:00:58 +00:00
php74 PHP 7.4 reached EOL November 28 2022. 2023-11-14 02:00:58 +00:00
php80 *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
php81 lang/php81: update to 8.1.26 2023-11-24 06:03:45 +00:00
php82 PHP 8.2.13 (2023-11-23) 2023-11-24 06:01:26 +00:00
php83 lang/php83: add version 8.3.0 2023-11-30 16:14:50 +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 polyml: update to 5.9. 2023-03-05 20:19:11 +00:00
purescript Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
py-asttokens py-asttokens: updated to 2.4.1 2023-10-26 13:09:46 +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 py-cmake-language-server: make PKGNAME match directory name 2023-11-09 14:19:49 +00:00
py-cxfreeze py-cxfreeze: fix PLIST for python != 3.11 2022-11-15 12:23:45 +00:00
py-execjs *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-executing py-executing: updated to 2.0.1 2023-10-29 16:42:13 +00:00
py-findpython py-findpython: updated to 0.4.1 2023-12-08 12:26:11 +00:00
py-hy *: use PYTHON_VERSION instead of _PYTHON_VERSION 2023-03-29 09:34:04 +00:00
py-inflect python/wheel.mk: simplify a lot, and switch to 'installer' for installation 2023-10-28 19:56:54 +00:00
py-js2py *: remove more references to Python 3.7 2023-08-01 23:20:37 +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 1.1.0 2023-10-07 20:14:31 +00:00
py-lsp-server py-lsp-server: update to 1.9.0. 2023-11-13 11:15:06 +00:00
py-lsprotocol py-lsprotocol: increase version to make it higher than before 2023-11-19 20:27:49 +00:00
py-mypy py-mypy: updated to 1.7.1 2023-11-23 20:52:09 +00:00
py-mypy_extensions py-mypy py-mypy_extensions: updated to 1.0.0 2023-02-14 19:09:59 +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 Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
py-py3c py-py3c: updated to 1.4 2022-01-31 13:44:39 +00:00
py-pygls py-pygls: update to 1.2.1. 2023-12-07 08:43:32 +00:00
py-pyrex *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-python-lua Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
py-pythonz *: set USE_PKG_RESOURCES for some more packages 2022-01-05 20:07:10 +00:00
py-six *: only run tests for python 3 2023-04-30 19:40:20 +00:00
py-solc-select py-solc-select: updated to 1.0.4 2023-07-25 08:31:38 +00:00
py-spark-parser *: depend on py-click via versioned_dependencies 2022-01-31 09:48:35 +00:00
py-test-mypy-testing py-test-mypy-testing: added version 0.1.1 2023-10-27 08:18:38 +00:00
py-uncompyle6 py-uncompyle6: no support for Python 3.12 yet 2023-11-05 11:49:51 +00:00
py27-html-docs lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
py38-html-docs python38 py38-html-docs: updated to 3.8.18 2023-08-25 08:25:28 +00:00
py39-html-docs python39 py39-html-docs: updated to 3.9.18 2023-08-25 08:26:13 +00:00
py310-html-docs python310 py310-html-docs: updated to 3.10.13 2023-08-25 08:26:49 +00:00
py311-html-docs python311 py311-html-docs: updated to 3.11.7 2023-12-11 10:23:42 +00:00
py312-html-docs python312 py312-html-docs: updated to 3.12.1 2023-12-08 09:22:42 +00:00
python lang/python/wheel.mk: add WHEEL_ARGS to influence build 2023-12-07 17:59:17 +00:00
python27 python: Exclude dependencies for build. 2023-11-29 11:02:40 +00:00
python38 python: Exclude dependencies for build. 2023-11-29 11:02:40 +00:00
python39 python: Exclude dependencies for build. 2023-11-29 11:02:40 +00:00
python310 python: Exclude dependencies for build. 2023-11-29 11:02:40 +00:00
python311 python311 py311-html-docs: updated to 3.11.7 2023-12-11 10:23:42 +00:00
python312 python312 py312-html-docs: updated to 3.12.1 2023-12-08 09:22:42 +00:00
qbe lang/qbe: Update to 1.1 2023-03-02 05:50:05 +00:00
qore *: bump for openssl 3 2023-10-24 22:08:07 +00:00
qt6-qtdeclarative qt6: updated to 6.6.1 2023-11-30 20:11:26 +00:00
qt6-qtlanguageserver qt6: updated to 6.6.1 2023-11-30 20:11:26 +00:00
qt6-qtscxml qt6: updated to 6.6.1 2023-11-30 20:11:26 +00:00
quickjs quickjs: make it build on macppc again, or more generally... 2023-03-07 14:38:03 +00:00
R-cpp11 (lang/R-cpp11) Updated 0.4.2 to 0.4.3 2023-02-18 09:21:40 +00:00
R-sourcetools lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
racket *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
racket-textual lang/racket lang/racket-textual: review dependencies 2023-09-25 12:06:35 +00:00
rakudo (lang/rakudo) Updated 2023.04 to 2023.05 2023-06-10 15:57:16 +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: add support for Ruby on Rails 7.1 2023-11-30 15:05:10 +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 lang/ruby-execjs: update to 2.9.1 2023-09-18 17:31:11 +00:00
ruby-rkelly-remix lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
ruby31 lang/ruby31: add package version 3.1.0 2022-01-16 13:59:42 +00:00
ruby31-base *: bump for openssl 3 2023-10-24 22:08:07 +00:00
ruby32 lang/ruby32: add ruby32 version 3.2.0 2023-01-21 13:52:02 +00:00
ruby32-base *: bump for openssl 3 2023-10-24 22:08:07 +00:00
runawk lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
rust rust: add CHECK_PORTABILITY_SKIP 2023-11-17 20:08:12 +00:00
rust-bin rust-bin: fix checksum for NetBSD/aarch64, and new bits for NetBSD/powerpc. 2023-12-02 21:32:39 +00:00
sablevm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
sablevm-classpath Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/. 2023-06-06 12:40:15 +00:00
sablevm-classpath-gui *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
sather *: revebump for new brotli option for freetype2 2023-11-12 13:20:31 +00:00
sbcl Update to sbcl-2.3.11. 2023-11-28 15:03:55 +00:00
scala scala: minor pkglint fixes 2023-04-30 15:26:36 +00:00
scala-sbt lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
scheme48 scheme48: Honor LDFLAGS when linking, fixes RELRO builds 2022-09-23 12:28:22 +00:00
scm lang/scm: Detect aargh64. 2021-12-27 03:17:17 +00:00
see *: ahoka is Observer, remove him from MAINTAINER 2023-04-15 09:17: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 *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +00:00
smlnj smlnj: Update to 110.99.3 2023-02-25 17:58:39 +00:00
smlnj11072 smlnj11072: use its own Makefile.common to fix 'make checksum' 2023-02-26 18:18:11 +00:00
snobol lang/snobol: fix installation on solaris by not using /etc/install 2023-01-16 03:46:28 +00:00
spago Revbump all Haskell after updating lang/ghc96 2023-11-02 06:36:09 +00:00
spidermonkey lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
spidermonkey185 *: recursive bump for Python 3.11 as new default 2023-08-14 05:23:45 +00:00
spl *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
squeak lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
squeak-vm *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +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 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +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: Disable STRIP_DEBUG. 2023-03-13 09:35:15 +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-jpl: limit JVMs 2022-12-21 13:06:48 +00:00
swi-prolog-lite *: bump for openssl 3 2023-10-24 22:08:07 +00:00
swi-prolog-packages *: revebump for new brotli option for freetype2 2023-11-12 13:20:31 +00:00
tcl *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
tcl-expect lang/tcl-expect: Limit deadlock workaround to affected platforms 2022-06-19 22:22:21 +00:00
tcl-otcl *: revebump for new brotli option for freetype2 2023-11-12 13:20:31 +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 *: recursive bump for cairo dependency changes 2023-11-14 14:01:17 +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 *: Simplify vala buildlink3. 2023-11-27 11:16:40 +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 *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
wasi-libc *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
wasi-libcxx *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
wsbasic lang: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:51:29 +00:00
yabasic yabasic: update to 2.90.4. 2023-11-06 21:55:58 +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 *: recursive bump for icu 74.1 2023-11-08 13:18:02 +00:00
Makefile lang/Makefile: add and enable php83 2023-11-30 16:16:17 +00:00