pkgsrc/lang
adam c0ca9abdc4 python37: updated to 3.7.2
Python 3.7.2 final

Library
- bpo-31715: Associate .mjs file extension with application/javascript MIME Type.

Build
- bpo-35499: make profile-opt no longer replaces CFLAGS_NODIST with CFLAGS. It now adds profile-guided optimization (PGO) flags to CFLAGS_NODIST: existing CFLAGS_NODIST flags are kept.
- bpo-35257: Avoid leaking the linker flags from Link Time Optimizations (LTO) into distutils when compiling C extensions.

C API
- bpo-35259: Conditionally declare Py_FinalizeEx() (new in 3.6) based on Py_LIMITED_API.


Python 3.7.2 release candidate 1

Security
- bpo-34812: The -I command line option (run Python in isolated mode) is now also copied by the multiprocessing and distutils modules when spawning child processes. Previously, only -E and -s options (enabled by -I) were copied.
- bpo-34791: The xml.sax and xml.dom.domreg no longer use environment variables to override parser implementations when sys.flags.ignore_environment is set by -E or -I arguments.

Core and Builtins
- bpo-35444: Fixed error handling in pickling methods when fail to look up builtin “getattr”.
- bpo-35436: Fix various issues with memory allocation error handling. Patch by Zackery Spytz.
- bpo-35357: Internal attributes’ names of unittest.mock._Call and unittest.mock.MagicProxy (name, parent & from_kall) are now prefixed with _mock_ in order to prevent clashes with widely used object attributes. Fixed minor typo in test function name.
- bpo-35372: Fixed the code page decoder for input longer than 2 GiB containing undecodable bytes.
- bpo-35336: Fix PYTHONCOERCECLOCALE=1 environment variable: only coerce the C locale if the LC_CTYPE locale is “C”.
- bpo-33954: For str.format(), float.__format__() and complex.__format__() methods for non-ASCII decimal point when using the “n” formatter.
- bpo-35269: Fix a possible segfault involving a newly-created coroutine. Patch by Zackery Spytz.
- bpo-35214: Fixed an out of bounds memory access when parsing a truncated unicode escape sequence at the end of a string such as '\N'. It would read one byte beyond the end of the memory allocation.
- bpo-35214: The interpreter and extension modules have had annotations added so that they work properly under clang’s Memory Sanitizer. A new configure flag –with-memory-sanitizer has been added to make test builds of this nature easier to perform.
- bpo-35193: Fix an off by one error in the bytecode peephole optimizer where it could read bytes beyond the end of bounds of an array when removing unreachable code. This bug was present in every release of Python 3.6 and 3.7 until now.
- bpo-29341: Clarify in the docstrings of os methods that path-like objects are also accepted as input parameters.
- bpo-35050: socket: Fix off-by-one bug in length check for AF_ALG name and type.
- bpo-34974: bytes and bytearray constructors no longer convert unexpected exceptions (e.g. MemoryError and KeyboardInterrupt) to TypeError.
- bpo-34973: Fixed crash in bytes() when the list argument is mutated while it is iterated.
- bpo-34824: Fix a possible null pointer dereference in Modules/_ssl.c. Patch by Zackery Spytz.
- bpo-1621: Do not assume signed integer overflow behavior (C undefined behavior) when performing set hash table resizing.

Library
- bpo-35052: Fix xml.dom.minidom cloneNode() on a document with an entity: pass the correct arguments to the user data handler of an entity.
- bpo-35330: When a Mock instance was used to wrap an object, if side_effect is used in one of the mocks of it methods, don’t call the original implementation and return the result of using the side effect the same way that it is done with return_value.
- bpo-34172: Revert the fix for this issue previously released in 3.7.1 pending further investigation: Fix a reference issue inside multiprocessing.Pool that caused the pool to remain alive if it was deleted without being closed or terminated explicitly.
- bpo-10496: posixpath.expanduser() now returns the input path unchanged if the HOME environment variable is not set and the current user has no home directory (if the current user identifier doesn’t exist in the password database). This change fix the site module if the current user doesn’t exist in the password database (if the user has no home directory).
- bpo-35310: Fix a bug in select.select() where, in some cases, the file descriptor sequences were returned unmodified after a signal interruption, even though the file descriptors might not be ready yet. select.select() will now always return empty lists if a timeout has occurred. Patch by Oran Avraham.
- bpo-35380: Enable TCP_NODELAY on Windows for proactor asyncio event loop.
- bpo-35341: Add generic version of collections.OrderedDict to the typing module. Patch by Ismo Toijala.
- bpo-35371: Fixed possible crash in os.utime() on Windows when pass incorrect arguments.
- bpo-27903: Fix ResourceWarning in platform.dist() on SuSE and Caldera OpenLinux. Patch by Ville Skyttä.
- bpo-35308: Fix regression in webbrowser where default browsers may be preferred over browsers in the BROWSER environment variable.
- bpo-28604: locale.localeconv() now sets temporarily the LC_CTYPE locale to the LC_MONETARY locale if the two locales are different and monetary strings are non-ASCII. This temporary change affects other threads.
- bpo-35277: Update ensurepip to install pip 18.1 and setuptools 40.6.2.
- bpo-35226: Recursively check arguments when testing for equality of unittest.mock.call objects and add note that tracking of parameters used to create ancestors of mocks in mock_calls is not possible.
- bpo-29564: The warnings module now suggests to enable tracemalloc if the source is specified, the tracemalloc module is available, but tracemalloc is not tracing memory allocations.
- bpo-35189: Modify the following fnctl function to retry if interrupted by a signal (EINTR): flock, lockf, fnctl
- bpo-35062: Fix incorrect parsing of _io.IncrementalNewlineDecoder’s translate argument.
- bpo-35079: Improve difflib.SequenceManager.get_matching_blocks doc by adding ‘non-overlapping’ and changing ‘!=’ to ‘<’.
- bpo-35017: socketserver.BaseServer.serve_forever() now exits immediately if it’s shutdown() method is called while it is polling for new events.
- bpo-31047: Fix ntpath.abspath regression where it didn’t remove a trailing separator on Windows. Patch by Tim Graham.
- bpo-34794: Fixed a leak in Tkinter when pass the Python wrapper around Tcl_Obj back to Tcl/Tk.
- bpo-35008: Fixed references leaks when call the __setstate__() method of xml.etree.ElementTree.Element in the C implementation for already initialized element.
- bpo-23420: Verify the value for the parameter ‘-s’ of the cProfile CLI. Patch by Robert Kuska
- bpo-33947: dataclasses now handle recursive reprs without raising RecursionError.
- bpo-16965: The 2to3 execfile fixer now opens the file with mode 'rb'. Patch by Zackery Spytz.
- bpo-34966: pydoc now supports aliases not only to methods defined in the end class, but also to inherited methods. The docstring is not duplicated for aliases.
- bpo-34941: Methods find(), findtext() and findall() of the Element class in the xml.etree.ElementTree module are now able to find children which are instances of Element subclasses.
- bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). Patch by Juliette Monsel.
- bpo-34866: Adding max_num_fields to cgi.FieldStorage to make DOS attacks harder by limiting the number of MiniFieldStorage objects created by FieldStorage.
- bpo-34022: The SOURCE_DATE_EPOCH environment variable no longer overrides the value of the invalidation_mode argument to py_compile.compile(), and determines its default value instead.
- bpo-34738: ZIP files created by distutils will now include entries for directories.
- bpo-31177: Fix bug that prevented using reset_mock on mock instances with deleted attributes
- bpo-34536: Enum._missing_: raise ValueError if None returned and TypeError if non-member is returned.
- bpo-34604: Fix possible mojibake in the error message of pwd.getpwnam and grp.getgrnam using string representation because of invisible characters or trailing whitespaces. Patch by William Grzybowski.
- bpo-34574: OrderedDict iterators are not exhausted during pickling anymore. Patch by Sergey Fedoseev.
- bpo-34052: sqlite3.Connection.create_aggregate(), sqlite3.Connection.create_function(), sqlite3.Connection.set_authorizer(), sqlite3.Connection.set_progress_handler() methods raises TypeError when unhashable objects are passed as callable. These methods now don’t pass such objects to SQLite API. Previous behavior could lead to segfaults. Patch by Sergey Fedoseev.
- bpo-29877: compileall: import ProcessPoolExecutor only when needed, preventing hangs on low resource platforms
- bpo-22005: Implemented unpickling instances of datetime, date and time pickled by Python 2. encoding='latin1' should be used for successful decoding.
2018-12-31 10:07:59 +00:00
..
a60 Fix HOMEPAGE 2017-07-06 20:04:52 +00:00
abcl Fix build for Java 1.8. 2018-10-10 21:55:20 +00:00
algol68g Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
asn1c Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
awka
baci baci: update HOMEPAGE 2017-10-09 08:07:55 +00:00
basic256 revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
boomerang Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
brandybasic
bwbasic Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
caml-light
camlp4 Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
camlp5 Updated lang/camlp5 to version 7.07. 2018-11-12 16:10:51 +00:00
ccsh *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
cdl3 Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
Cg-compiler Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
chicken chicken: Set INSTALL_PROGRAM, fixes install on SunOS. 2018-10-18 14:32:43 +00:00
chicken5 chicken5: Import chicken-5.0.0 as lang/chicken5 2018-12-21 12:35:38 +00:00
cim Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
cint *: reset maintainer for drochner 2018-08-19 20:16:39 +00:00
clang llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
clang-static-analyzer llvm: updated to 7.0.0 2018-12-09 20:04:38 +00:00
classpath
classpath-gui Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
clisp clisp: Fix SunOS/C99. 2018-01-29 17:38:23 +00:00
clojure Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
compiler-rt llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
coq revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
coreclr revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
cparser
cu-prolog
duktape duktape: Update lang/duktape to 2.2.0 2017-10-29 22:26:56 +00:00
eag Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
ecl *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
eieio eieio: Use default EMACS_VERSIONS_ACCEPTED. 2018-02-06 16:36:44 +00:00
elisp-manual
elixir lang/elixir: update to 1.7.4. 2018-11-09 17:17:28 +00:00
elk Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
embryo
erlang erlang: Update to version 21.1.4. 2018-11-30 13:47:02 +00:00
erlang-doc erlang-{doc,man}: Fix DEPENDS to handle DIST_VERSION_PATCH. 2018-09-13 09:02:52 +00:00
erlang-luerl lang/erlang-luerl: Update to 0.3. 2018-03-24 16:29:51 +00:00
erlang-man erlang-man: catch up with base package 2018-09-29 15:50:46 +00:00
f2c f2c: strip -Werror for everyone. It's unsuitable for a release, and it 2018-11-20 09:38:26 +00:00
ficl
focal
fort77 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
forth-retro lang/forth-retro: import forth-retro-12.0.2018.1 2018-01-27 10:59:05 +00:00
g95 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gambc Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
gauche gauche: Various fixes. 2018-07-26 16:55:29 +00:00
gawk gawk: updated to 4.2.1 2018-07-14 13:47:32 +00:00
gcc-aux Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gcc2 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc3
gcc3-c Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc3-c++ Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc3-f77 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc3-objc Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc5 Set GCC_TARGET_MACHINE so RPATH set correctly to pickup libs from gcc5-libs 2018-11-28 16:08:41 +00:00
gcc5-aux Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gcc5-libs Set GCC_TARGET_MACHINE so RPATH set correctly to pickup libs from gcc5-libs 2018-11-28 16:08:41 +00:00
gcc6 Set GCC_TARGET_MACHINE with = not ?= 2018-11-28 16:06:58 +00:00
gcc6-aux Add NetBSD to supported architecture. This is sufficient to build coreboot 2018-10-01 12:32:15 +00:00
gcc6-libs Set GCC_TARGET_MACHINE so RPATH set correctly to pickup libs from gcc6-libs 2018-11-28 16:05:42 +00:00
gcc7 be sure to call the netbsd_patch_builtins() on arm64. now gfortran 2018-11-10 04:24:00 +00:00
gcc7-libs gcc7: don't try to make references to stack_chk_fail_local on netbsd/sun 2018-07-18 22:55:07 +00:00
gcc8 port the arm64 support to GCC 8. 2018-11-10 11:45:27 +00:00
gcc8-libs gcc8: Fix gcc/target/87221 better. 2018-11-07 04:32:32 +00:00
gcc34 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc44 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gcc48 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gcc48-libs gcc48: don't try to make references to stack_chk_fail_local on netbsd/sun 2018-07-18 23:15:42 +00:00
gcc49 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gcc49-libs gcc49-libs: Make this function correctly on Darwin. 2018-07-11 11:21:26 +00:00
gforth Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ghc Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ghc-bootstrap Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ghc7 *: Add CTF_SUPPORTED/CTF_FILES_SKIP where necessary. 2018-11-12 14:40:20 +00:00
gnat_util *: reset maintainer for marino on his request 2018-04-02 09:30:06 +00:00
gnucobol Update to 2.2 2017-12-17 04:54:15 +00:00
go go: Actually bump to 1.11.4. Unbreaks build. 2018-12-20 17:38:23 +00:00
go-hcl Revbump all Go packages after go111 update. 2018-12-19 15:46:59 +00:00
go14 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
go19 go19: fix PLIST 2018-09-27 20:39:45 +00:00
go110 Update go110 to 1.10.7 (security fix). 2018-12-15 10:23:32 +00:00
go111 Update go111 to 1.11.4 (security update). 2018-12-19 15:27:03 +00:00
gpc
gprolog Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
guile lang/guile: Add search path to default extensions for lt_dlopenext. 2018-06-19 11:07:25 +00:00
guile20 lang/guile20: Mirror changes to lang/guile22/Makefile. 2017-08-19 00:28:10 +00:00
guile22 guile22: update to 2.2.4. 2018-08-16 11:25:57 +00:00
gwydion-dylan Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
heirloom-awk
hugs
icon Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
inform lang/inform: Install manpages into ${PKGMANDIR}. 2017-08-19 00:21:25 +00:00
intercal Ensure the local yywrap is used. Fixes build with newer flex. 2017-01-04 12:52:40 +00:00
ja-gawk
jamvm
japhar
jasmin
java-lang-spec
java-vm-spec
jikes lang/jikes: move documentation to share/doc/jikes 2018-02-18 05:06:18 +00:00
jimtcl Reset maintainer 2017-09-16 19:26:41 +00:00
jini
joos Sort PLIST files. 2018-01-01 22:29:15 +00:00
js Comment out dead sites. 2017-08-16 20:45:30 +00:00
kaffe
kaffe-esound
kaffe-x11 Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
kali Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
konoha revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
ksi
libBlocksRuntime Add libBlocksRuntime-6.0.0 from compiler-rt, a relatively portable 2018-06-02 19:11:01 +00:00
libcxx llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
libcxxabi llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
libduktape libduktape: Update lang/libduktape to 2.1 2017-10-29 22:24:45 +00:00
libLLVM libLLVM: Note plan for this to stay at 4.0 2018-03-04 01:47:39 +00:00
libLLVM34 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
librep Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
libtcl-nothread
libunwind llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
likepython
llvm llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
lua lang/lua: fix typo for PKG_FAIL_REASON in luaversion.mk 2018-07-23 22:22:42 +00:00
lua51 Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
lua52 Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
lua53 Update lang/lua53 to version 5.3.5. 2018-07-17 21:52:25 +00:00
LuaJIT
LuaJIT2 Fix the test for endianness on powerpc so that NetBSD/powerpc 2018-06-02 20:01:21 +00:00
lush
maude Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
mawk
mercury Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
micropython Remove illegal cpp abuse that fails the clang build. 2018-01-01 00:47:42 +00:00
minischeme
mit-scheme-bin
mono revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
mono-basic revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
mono2 revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
moscow_ml Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
mpd
nawk
newlisp
newsqueak Follow some redirects. 2017-09-03 08:53:04 +00:00
nhc98 Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
nim Update to 0.19 2018-10-01 12:50:42 +00:00
nodejs *: update email for fhajny 2018-12-15 21:12:18 +00:00
nodejs6 lang/nodejs6: Update to 6.14.4. 2018-08-16 13:40:26 +00:00
nodejs8 nodejs8: don't invert logic for FreeBSD. 2018-12-15 17:27:21 +00:00
npm *: update email for fhajny 2018-12-15 21:12:18 +00:00
nqp Update rakudo, nqp, MoarVM to 2018.06 2018-10-08 16:54:28 +00:00
nuitka
objc
ocaml Updated lang/ocaml to version 4.07.1. 2018-11-12 16:09:34 +00:00
oo2c Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
open-cobol-ce Follow some redirects. 2017-09-03 08:53:04 +00:00
opencobol Use the curses framework. 2017-01-05 15:36:24 +00:00
openjdk7 Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
openjdk8 openjdk8: Re-fix SunOS support. 2018-12-15 20:27:45 +00:00
opensource-cobol Use the curses framework. 2017-01-05 15:36:24 +00:00
oracle-jdk8 Update to 8.0.191 2018-11-25 12:41:50 +00:00
oracle-jre8 Update to 8.0.191 2018-11-25 12:41:50 +00:00
ossp-js Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
owl-lisp Import owl-lisp-0.1.13 as lang/owl-lisp. 2017-02-11 01:40:27 +00:00
p2c
p5-Switch Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
parrot revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
pc-lisp pc-lisp: Fix build with Clang 7svn 2018-09-29 21:19:13 +00:00
pcc *: remove references to obsolete DragonFly/i386 2018-04-30 10:41:35 +00:00
pcc-current
pear lang/pear: update to 1.10.7 2018-12-15 16:48:05 +00:00
perl5 perl5: updated to 5.28.1 2018-12-02 13:39:56 +00:00
pfe Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
pforth Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
php lang/php: add support for PHP 7.3 2018-12-15 17:11:54 +00:00
php56 lang/php56: remove unused patch file really 2018-12-15 17:08:40 +00:00
php70 lang/php70: remove unused patch 2018-12-15 16:58:13 +00:00
php71 lang/php71: remove unused patch 2018-12-15 16:57:04 +00:00
php72 lang/php72: drop sqlite3 PKG_OPTIONS 2018-12-12 15:44:43 +00:00
php73 php73: fix path to itself 2018-12-16 22:19:54 +00:00
picoc Update some HOMEPAGEs. 2017-09-03 09:22:57 +00:00
pict Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
polyml Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
py-asttokens py-asttokens: updated to 1.1.13 2018-11-05 18:05:47 +00:00
py-basicproperty extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-byterun
py-cxfreeze py-cxfreeze: updated to 5.1.1 2018-02-09 08:04:41 +00:00
py-execjs py-execjs: updated to 1.5.1 2018-01-18 10:13:27 +00:00
py-hy py-hy: updated to 0.14.0 2018-02-23 07:03:09 +00:00
py-js2py Restrict to Python 2.7. Fix PLIST for the one version where it actually 2018-03-26 16:30:10 +00:00
py-jsparser Follow some redirects. 2017-09-04 18:08:18 +00:00
py-mypy py-mypy: updated to 0.650 2018-12-09 20:37:29 +00:00
py-mypy_extensions py-mypy_extensions: added version 0.4.1 2018-11-28 08:14:57 +00:00
py-parso py-parso: updated to 0.3.1 2018-12-28 14:18:32 +00:00
py-paver Fix PLIST for Python 2.x build. 2018-12-27 15:14:00 +00:00
py-pyrex extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-python-lua py-python-lua: Don't unnecessarily restrict the package to python36. 2018-10-26 12:52:43 +00:00
py-pythonz extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
py-six py-six: updated to 1.12.0 2018-12-10 08:53:10 +00:00
py-spark-parser py-spark-parser: added version 1.8.7 2018-09-20 13:46:52 +00:00
py-uncompyle6 py-uncompyle6: updated to 3.2.4 2018-11-30 13:09:29 +00:00
py27-html-docs py27-html-docs: Update lang/py27-html-docs to 2.7.15 2018-05-19 08:57:18 +00:00
py34-html-docs py34-html-docs: Update lang/py34-html-docs to 3.4.9 2018-08-09 12:17:31 +00:00
py35-html-docs py35-html-docs: Update lang/py35-html-docs to 3.5.6 2018-08-09 13:20:54 +00:00
py36-html-docs py36-html-docs: Update lang/py36-html-docs to 3.6.7 2018-10-23 09:03:07 +00:00
py37-html-docs py37-html-docs: Update lang/py37-html-docs to 3.7.1 2018-10-23 09:06:58 +00:00
python extension.mk: remove PY_PEP3147, mention correct patch, clean-up 2018-12-14 13:09:10 +00:00
python27 Fix for Darwin/Xcode 10 (missing QuickTime.framework); PLIST_VARS cleanup 2018-09-28 11:01:37 +00:00
python34 python34: updated to 3.4.9 2018-08-07 08:44:41 +00:00
python35 python35: updated to 3.5.6 2018-08-07 08:44:02 +00:00
python36 python36: updated to 3.6.8 2018-12-31 10:06:45 +00:00
python37 python37: updated to 3.7.2 2018-12-31 10:07:59 +00:00
qore Disable single compilation unit by default, it will dramatically 2018-12-27 15:15:22 +00:00
R-codetools lang/R-codetools: Import version 0.2.15 2018-07-15 21:22:46 +00:00
R-sourcetools lang/R-sourcetools: Import version 0.1.7 2018-05-09 00:32:50 +00:00
racket revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
racket-textual racket-minimal: fix build on SunOS 2018-09-30 22:31:59 +00:00
rakudo Update rakudo, nqp, MoarVM to 2018.06 2018-10-08 16:54:28 +00:00
rakudo-star Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
rcfunge
rexx-imc Comment out dead sites. 2017-09-04 18:00:49 +00:00
rexx-regina
ruby lang/ruby: remove "used by" line 2018-12-28 12:33:32 +00:00
ruby-coffee-script
ruby-coffee-script-source Update ruby-coffee-script-source to 1.12.4. 2017-03-20 13:22:21 +00:00
ruby-doc-stdlib
ruby-execjs
ruby-gherkin ruby-gherkin: ALTERNATIVES file needs newline at the end. 2018-10-18 14:36:48 +00:00
ruby-rkelly-remix Import ruby-rkelly-remix-0.0.7 as lang/ruby-rkelly-remix 2017-02-21 21:45:37 +00:00
ruby22 Replace more remaining RUBY_VERSION_FULL to RUBY_VERSION. 2017-05-30 15:54:11 +00:00
ruby22-base *: Add some required USE_GCC_RUNTIME. 2018-07-17 10:56:23 +00:00
ruby23 Replace more remaining RUBY_VERSION_FULL to RUBY_VERSION. 2017-05-30 15:54:11 +00:00
ruby23-base lang/ruby23-base: update o 2.3.8 2018-10-18 14:24:07 +00:00
ruby24 Add ruby24 (Ruby 2.4.1) to pkgsrc. 2017-06-18 13:46:16 +00:00
ruby24-base ruby does not like -fomit-frame-pointer on NetBSD/aarch64 2018-12-22 03:11:56 +00:00
ruby25 lang/ruby25: add ruby25 2.5.0 2018-01-08 14:20:05 +00:00
ruby25-base ruby does not like -fomit-frame-pointer on NetBSD/aarch64 2018-12-22 03:53:24 +00:00
runawk Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
rust Upgrade rust to version 1.31.1. 2018-12-21 23:12:34 +00:00
sablevm Fix pthread use. 2017-02-14 21:27:40 +00:00
sablevm-classpath
sablevm-classpath-gui Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
sather Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
sbcl sbcl: Honor UNLIMIT_RESOURCES and address PaX problems 2018-10-17 12:59:49 +00:00
scala Update to 2.12.8 2018-12-16 10:07:11 +00:00
scala-sbt lang/scala-sbt: import scala-sbt-1.2.7 2018-12-16 09:54:41 +00:00
scheme48 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
scm
see Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
sigscheme Update some URLs. 2017-09-04 18:55:07 +00:00
siod Comment out dead sites. 2017-09-04 18:00:49 +00:00
smalltalk revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
smlnj
smlnj11072 Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
snobol *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
spidermonkey Use $(CC) to link shared libraries 2018-01-23 03:26:41 +00:00
spidermonkey52 revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
spidermonkey185 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
spl revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
squeak Cleanup: replace curly braces with parentheses. 2018-01-01 01:26:13 +00:00
squeak-vm Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
sr Modernize this so that it builds again (after SSP), and 2018-04-18 08:42:16 +00:00
sr-examples
stalin
STk
sun-jdk6 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
sun-jdk7 Add jhat to JAVA_WRAPPERS. Bump PKGREVISION 2018-09-19 18:18:30 +00:00
sun-jre6 *: Add CTF_SUPPORTED/CTF_FILES_SKIP where necessary. 2018-11-12 14:40:20 +00:00
sun-jre7 Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
swi-prolog
swi-prolog-jpl swi-prolog*: Update lang/swi-prolog* to 7.6.4 2018-12-10 14:59:50 +00:00
swi-prolog-lite swi-prolog*: Update lang/swi-prolog* to 7.6.4 2018-12-10 14:59:50 +00:00
swi-prolog-packages swi-prolog*: Update lang/swi-prolog* to 7.6.4 2018-12-10 14:59:50 +00:00
tcl tcl: updated to 8.6.9 2018-12-09 18:33:55 +00:00
tcl-expect tcl-expect: Ensure the correct tcl install is used. 2018-09-07 08:51:39 +00:00
tcl-otcl Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
tcl85
tinyscheme
ucblogo Uses termcap, not curses. 2017-01-05 17:22:09 +00:00
umb-scheme
utilisp utilisp: follow redirects 2017-09-22 07:06:35 +00:00
vala vala: apply the same hack as PR pkg/53743 for gcc 6.5.0 for NetBSD/evbarm. 2018-12-24 14:45:50 +00:00
vscm Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
vslisp
wsbasic
yabasic Update to 2.79.2 2018-07-04 12:45:57 +00:00
yap yap: update HOMEPAGE 2017-10-09 08:52:04 +00:00
zenlisp lang/zenlisp: import zenlisp-0.0.20131122 2018-02-03 17:28:53 +00:00
Makefile lang: Add chicken5 2018-12-21 12:35:59 +00:00