pkgsrc/lang
nia aecbe9e06a gjs: Update to 1.66.1
Based on work by Dan Cîrnaț in wip

Version 1.66.1
--------------

- Closed bugs and merge requests:

  * Throws on Unsupported caller allocates [!495, Marco Trevisan]
  * arg: Fix MIN/MAX safe big integer limits [!492, Marco Trevisan]
  * Fix leak when virtual function is unimplemented [!498, Evan Welsh]
  * Cannot compile GJS 1.66.0 on macOS with llvm/clang 10.0.1 [#347, !499,
    Marc-Antoine Perennou]
  * console: fix typo in command-line option [!500, Andy Holmes]
  * Prevent passing null pointers when not nullable [!503, Evan Welsh]
  * Passing fundamentals to functions no longer works [#353, !506, Evan Welsh]

- Fixed examples/clutter.js to work with more recent Clutter [Philip Chimento]

Version 1.66.0
--------------

- No change from 1.65.92.

Version 1.65.92
---------------

- Closed bugs and merge requests:

  * CI: Make iwyu idempotent [!481, Simon McVittie]
  * Enum and flags test failing in s390x [#319, !480, Simon McVittie]
  * Bring back Visual Studio build support for GJS master [!482, Chun-wei Fan]
  * gjs_dbus_implementation_emit_signal: don't try to unref NULL [!482, Adam
    Williamson]
  * doc: add third party applications [!484, Sonny Piers]
  * boxed: Initialize all the private BoxedInstance members [!487, Marco
    Trevisan]
  * object: Fix GjsCallBackTrampoline's leaks [!490, Marco Trevisan]
  * Various maintenance [!485, Philip Chimento]
  * Crash using shell's looking glass [#344, !486, Marco Trevisan]

Version 1.65.91
---------------

- Closed bugs and merge requests:

  * Crash in gjs_dbus_implementation_flush() [#332, !471, Andy Holmes]
  * eslint: Bump ecmaScript version [!473, Florian Müllner]
  * Documentation: add documentation for ENV variables [!474, Andy Holmes]
  * Fix build for master on Windows (due to SpiderMonkey-78.x upgrade) [!475,
    Chun-wei Fan]
  * Argument cache causes test failure in armhf [#342, !476, Marco Trevisan]
  * Argument cache causes test regressions in s390x [#341, !477, Simon McVittie]
  * ByteArray.toString use-after-free [#339, !472, Evan Welsh]
  * Crash accessing `vfunc_` methods of `Clutter.Actor`s [#313, !478, Evan
    Welsh]

- Various refactors for type safety [Marco Trevisan]

Version 1.65.90
---------------

- GJS now has an optional, Linux-only, dependency on libsysprof-capture-4
  instead of libsysprof-capture-3 for the profiler functionality.

- New API: gjs_coverage_enable() allows the collection of code coverage metrics.
  If you are using GjsCoverage, it is now required to call gjs_coverage_enable()
  before you create the first GjsContext. Previously this was not necessary, but
  due to changes in SpiderMonkey 78 you must now indicate in advance if you want
  to collect code coverage metrics.

- New JavaScript features! This version of GJS is based on SpiderMonkey 78, an
  upgrade from the previous ESR (Extended Support Release) of SpiderMonkey 68.
  Here are the highlights of the new JavaScript features.
  For more information, look them up on MDN or devdocs.io.

  * New language features
    + A new regular expression engine, supporting lookbehind and named capture
      groups, among other things

  * New syntax
    + The ?? operator ("nullish coalescing operator") is now supported
    + The ?. operator ("optional chaining operator") is now supported
    + Public static class fields are now supported
    + Separators in numeric literals are now supported: for example, 1_000_000

  * New APIs
    + String.replaceAll() for replacing all instances of a string inside another
      string
    + Promise.allSettled() for awaiting until all Promises in an array have
      either fulfilled or rejected
    + Intl.Locale
    + Intl.ListFormat
    + Intl.RelativeTimeFormat.formatToParts()

  * New behaviour
    + There are a lot of minor behaviour changes as SpiderMonkey's JS
      implementation conforms ever closer to existing ECMAScript standards and
      adopts new ones. For complete information, read the Firefox developer
      release notes:
      https://developer.mozilla.org/en-US/Firefox/Releases/69#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/70#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/71#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/72#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/73#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/74#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/75#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/76#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/77#JavaScript
      https://developer.mozilla.org/en-US/Firefox/Releases/78#JavaScript

  * Backwards-incompatible changes
    + The Object.toSource() method has been removed
    + The uneval() global function has been removed
    + A leading zero is now never allowed for BigInt literals, making 08n and
      09n invalid similar to the existing error when legacy octal numbers like
      07n are used
    + The Function.caller property now has the value of null if the caller is a
      strict, async, or generator function, instead of throwing a TypeError

- Backwards-incompatible change: Paths specified on the command line with
  the --coverage-prefix argument, are now always interpreted as paths. If they
  are relative paths, they will be resolved relative to the current working
  directory. In previous versions, they would be treated as string prefixes,
  which led to unexpected behaviour when the path of the script was absolute
  and the coverage prefix relative, or vice versa.

- Closed bugs and merge requests:
  * Port to libsysprof-capture-4.a [!457, Philip Withnall, Philip Chimento]
  * CI: Switch ASAN jobs to runners tagged so [!461, Bartłomiej Piotrowski]
  * Rework global code to support multiple global "types". (Part 1) [!453, Evan
    Welsh]
  * SpiderMonkey 78 [#329, !462, !458, Evan Welsh, Philip Chimento]
  * GIArgument inlines [!460, Marco Trevisan, Philip Chimento]
  * gjs stopped building on 32 bits [#335, !463, Marco Trevisan, Philip
    Chimento]
  * Improve performance of argument marshalling [#70, !48, Giovanni Campagna,
    Philip Chimento]
  * Build failure on 32-bit [#336, !465, Michael Catanzaro]
  * Various maintenance [!464, Philip Chimento]
  * arg-cache.cpp: Fix build on Visual Studio [!466, Chun-wei Fan]
  * [regression] Super+A crashes gnome-shell [#338, !467, Philip Chimento]
  * Generating coverage information seems to be broken [#322, !470, Philip
    Chimento]

- Various refactors for type safety [Marco Trevisan]

- Various maintenance [Philip Chimento]

Version 1.65.4
--------------

- New language features! Public class fields are now supported. See for more
  information:
  https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Public_class_fields

- Closed bugs and merge requests:
  * arg.cpp: Add required messages for static_assert (fix building on pre-C++17)
    [!441, Chun-wei Fan]
  * Add include-what-you-use CI job [!448, !449, Philip Chimento]
  * Let's enable class fields! [!445, Evan Welsh]
  * examples: add GListModel implementation [!452, Andy Holmes]
  * Update ESLint CI image. [!451, Evan Welsh]
  * function: Only get function name if we actually warn [!454, Jonas Dreßler]
  * Split print into native library. [!444, Evan Welsh]
  * Various maintenance [!459, Philip Chimento]

- Various refactors for type safety [Marco Trevisan]

Version 1.64.4
--------------

- Closed bugs and merge requests:
  * Fix CI failure caused by GTK4 update [!447, Philip Chimento]

Version 1.65.3
--------------

- In GTK 4, Gtk.Widget is now an iterable object which iterates through its
  child widgets. (`for (let child of widget) { ... }`)

- Closed bugs and merge requests:
  * Installed tests are not in preferred directories [#318, !427, Ross Burton]
  * Build new test CI images with Buildah [!429, Philip Chimento]
  * CI fixes for new test images [!433, Philip Chimento]
  * Various maintenance [!428, Philip Chimento]
  * Fix dead link [!436, prnsml]
  * overrides/Gtk: Make GTK4 widgets iteratable [!437, Florian Müllner]
  * arg.cpp: Fix building on Visual Studio [!439, Chun-wei Fan]
  * Separate closures and vfuncs [!438, Philip Chimento]
  * Improvements to IWYU script [!435, Philip Chimento]
  * Various refactors in preparation for ES modules [!440, Evan Welsh, Philip
    Chimento]

- Various refactors for type safety [Marco Trevisan]
2020-11-10 11:33:50 +00:00
..
a60 a60: HOMEPAGE and MASTER_SITES redirect to https. 2019-06-05 07:17:15 +00:00
abcl Update to version 1.7.1. 2020-07-29 21:47:46 +00:00
adoptopenjdk11-bin Add jmap to JAVA_WRAPPERS, bump PKGREVISION 2020-05-29 10:51:23 +00:00
algol68g lang/algol68g: fix outdated configure options 2020-05-21 07:02:56 +00:00
asn1c *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
awka lang/awka: fix homepage 2020-05-03 15:36:46 +00:00
baci Fix typo, and add indentation 2020-09-26 11:35:14 +00:00
boomerang Follow some redirects. 2019-06-24 10:36:50 +00:00
brandybasic
bwbasic
caml-light all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
camlp4 Marked lang/camlp4 as BROKEN. 2020-01-17 09:44:32 +00:00
camlp5 Updated lang/camlp5 to version 7.11. 2020-02-07 13:44:12 +00:00
cbmbasic Add lang/cbmbasic, a Commodore BASIC interpreter 2019-07-08 06:46:22 +00:00
ccsh *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
cdl3
Cg-compiler lang: align variable assignments 2019-11-03 19:03:56 +00:00
chibi-scheme chibi-scheme: Update to 0.9.1 2020-08-18 10:25:16 +00:00
chicken all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
chicken5 chicken: Update to version 5.2.0 2020-05-16 20:01:56 +00:00
cim *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cint
clang *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
clang-tools-extra *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
classpath *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
classpath-gui *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
clisp clisp: Remove iconv warning avoidance. 2020-10-20 12:46:17 +00:00
clojure clojure: Avoid changing version numbers in two places. 2019-10-09 12:41:13 +00:00
compiler-rt compiler-rt: remove patch fixing build on NetBSD 2020-10-02 14:20:34 +00:00
coq *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
coreclr *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
cparser *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
cu-prolog lang/cu-prolog: suppress harmless array[char] compiler warnings 2020-05-03 16:45:52 +00:00
duktape duktape: Capitalize ECMAScript and JavaScript 2020-04-04 07:46:24 +00:00
eag
ecl lang/ecl: update to ecl-20.4.24 2020-07-09 08:23:37 +00:00
eieio *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
elisp-manual all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
elixir elixir: Update to 1.11.1 2020-10-19 17:48:41 +00:00
elk lang: align variable assignments 2019-11-03 19:03:56 +00:00
embryo Update embryo to 1.7.10. No relevant changes. 2020-05-01 00:14:17 +00:00
erlang *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
erlang-doc erlang-doc: remove now irrelevant duplicate file filtering 2020-04-27 04:12:44 +00:00
erlang-luerl
erlang-man erlang*: Update to 22.2.7. 2020-02-27 13:46:39 +00:00
f2c all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ficl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
focal
fort77 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
forth-retro forth-retro: Update to 2019.7 2020-06-14 10:38:11 +00:00
g95 g95: Not for aarch64 2020-10-20 11:33:10 +00:00
gambc lang/gambc: skip configure in SUBST block 2020-05-13 04:17:26 +00:00
gauche lang/gauche: skip check for unknown configure options 2020-03-22 10:50:35 +00:00
gawk gawk: update to 5.1.0. 2020-08-24 07:52:03 +00:00
gcc-aux *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gcc2 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc3 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc3-c lang/gcc3*: suppress USE_TOOLS+=perl warning 2020-05-13 05:02:08 +00:00
gcc3-c++ lang: align variable assignments 2019-11-03 19:03:56 +00:00
gcc3-f77 lang: align variable assignments 2019-11-03 19:03:56 +00:00
gcc3-objc lang: align variable assignments 2019-11-03 19:03:56 +00:00
gcc5 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc5-aux gcc*-aux: avoid future issues and accept NetBSD-10 as a version. 2020-04-29 20:33:28 +00:00
gcc5-libs Fix PKGREVISION values of gcc*-libs that got out of sync 2020-10-23 00:39:37 +00:00
gcc6 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc6-aux lang/gcc6-aux: fix shell portability 2020-05-03 17:42:20 +00:00
gcc6-libs Fix PKGREVISION values of gcc*-libs that got out of sync 2020-10-23 00:39:37 +00:00
gcc7 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc7-libs Fix PKGREVISION values of gcc*-libs that got out of sync 2020-10-23 00:39:37 +00:00
gcc8 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc8-libs gcc8-libs: Bump PKGREVISION from lang/gcc8 2020-09-17 22:05:16 +00:00
gcc9 gcc9: Add the patch, fix previous 2020-09-17 12:31:24 +00:00
gcc9-libs glib9-libs: Bump PKGREVISION from lang/gcc9 update 2020-09-17 12:28:29 +00:00
gcc10 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc10-libs lang/gcc10-libs: import gcc10-libs-10.2.0nb2 2020-09-02 16:14:03 +00:00
gcc34 lang/gcc3*: suppress USE_TOOLS+=perl warning 2020-05-13 05:02:08 +00:00
gcc44 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gcc48 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc48-libs Fix PKGREVISION values of gcc*-libs that got out of sync 2020-10-23 00:39:37 +00:00
gcc49 Fix grammar in a comment in gcc* Makefiles 2020-10-23 00:45:47 +00:00
gcc49-libs Fix PKGREVISION values of gcc*-libs that got out of sync 2020-10-23 00:39:37 +00:00
gforth *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ghc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ghc-bootstrap *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ghc7 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ghc80 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ghc84 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ghc88 ghc88: Ensure libiconv can be found at runtime. 2020-09-16 17:26:31 +00:00
gjs gjs: Update to 1.66.1 2020-11-10 11:33:50 +00:00
gnat_util lang: align variable assignments 2019-11-03 19:03:56 +00:00
gnucobol lang/gnucobol: remove unknown configure options 2020-05-23 13:06:37 +00:00
go Update go115 to 1.15.4 2020-11-08 20:38:09 +00:00
go-bin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
go-hcl Revbump all Go packages after Go 1.15 update. 2020-11-08 21:59:09 +00:00
go14 go14: Not for aarch64 2020-10-20 11:22:27 +00:00
go19 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
go110 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
go114 Update go114 to 1.14.11 2020-11-08 20:12:31 +00:00
go115 Update go115 to 1.15.4 2020-11-08 20:38:09 +00:00
gpc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
gprolog (lang/prolog) remove default setting (MAKE_JOBS_SAFE) 2019-06-14 22:32:06 +00:00
guile lang/guile: disable check for unknown configure options 2020-03-22 08:17:23 +00:00
guile20 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
guile22 Fix lang/guile22 on Darwin 2020-08-30 13:27:30 +00:00
gwydion-dylan *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
heirloom-awk
hs-hslua hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
hugs lang: align variable assignments 2019-11-03 19:03:56 +00:00
icon lang: align variable assignments 2019-11-03 19:03:56 +00:00
idris Fix the installation path for man pages 2020-10-13 16:35:44 +00:00
inform
intercal lang: align variable assignments 2019-11-03 19:03:56 +00:00
ja-gawk all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
jamvm *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
janet janet: Update to 1.12.2 2020-10-03 10:29:08 +00:00
japhar japhar: Define LICENSE 2020-03-27 15:09:00 +00:00
jasmin
jikes *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
jimtcl
joos
js
kaffe *: Remove esound support from pkgsrc 2020-01-20 21:54:00 +00:00
kaffe-x11 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
kali lang: align variable assignments 2019-11-03 19:03:56 +00:00
konoha *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ksi ksi: Define LICENSE 2020-03-27 23:29:39 +00:00
libBlocksRuntime all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libcxx llvm: updated to 10.0.1 2020-07-26 19:20:12 +00:00
libcxxabi llvm: updated to 10.0.1 2020-07-26 19:20:12 +00:00
libduktape [lib]duktape: Update to 2.5.0 2020-03-24 13:49:11 +00:00
libLLVM On powerpc, use -mlongcall so that we don't get 24-bit relocation overflow. 2020-09-15 16:16:29 +00:00
libLLVM4 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libLLVM34 devel/libLLVM34: remove nonexistent file from SUBST_FILES 2020-04-27 03:47:31 +00:00
libobjc2 Import libobjc2-2.0, a modern version of devel/gnustep-objc for use with 2020-04-16 17:35:47 +00:00
librep Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
libunwind libunwind: Remove patch .orig file, fix install. 2020-10-20 06:34:23 +00:00
likepython lang: align variable assignments 2019-11-03 19:03:56 +00:00
llvm Apply fix from 2020-11-07 21:26:41 +00:00
lua lua: fix typo in luaversion.mk 2020-08-25 22:46:24 +00:00
lua-moonscript lang: Add lua-moonscript 2020-07-11 11:56:59 +00:00
lua51 lua*: update descriptions 2020-09-20 14:48:17 +00:00
lua52 lua*: update descriptions 2020-09-20 14:48:17 +00:00
lua53 lua53: update to 5.3.6. 2020-10-14 16:39:50 +00:00
lua54 lua54: update to 5.4.1. 2020-10-14 16:42:59 +00:00
LuaJIT2 Make luajit PaX MPROTECT safe. 2020-11-06 12:15:53 +00:00
lush math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
maude
mawk Use https for all invisible-island.net HOMEPAGEs. 2019-06-22 11:37:13 +00:00
mercury *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
micropython Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
minischeme
mit-scheme-bin all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
mono *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
mono-basic *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mono6 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
moscow_ml *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mozjs60 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
mozjs68 mozjs68: add one more patch necessary for paxctl-safety. 2020-11-06 09:11:31 +00:00
mozjs78 mozjs78: Fix reference to wip 2020-11-10 11:31:25 +00:00
mpd mpd: avoid problematic netbsd version check (would fail for netbsd-10) 2020-04-29 20:31:58 +00:00
nawk all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
neko *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
newlisp Dropping a dependency warrants a PKGREVISION bump. 2020-08-11 17:18:59 +00:00
newsqueak lang: align variable assignments 2019-11-03 19:03:56 +00:00
nhc98 nhc98: Fails on aarch64 due to a lack of -m32 2020-10-20 12:00:26 +00:00
nim nim: Update to 1.4.0 2020-10-22 10:54:48 +00:00
nodejs *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
nodejs8 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
nodejs10 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
nodejs12 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
npm npm: updated to 6.14.8 2020-10-05 12:33:54 +00:00
nqp (lang/nqp) Updated 2020.08.02 to 2020.10 2020-10-31 12:25:12 +00:00
nuitka all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
objc mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
ocaml lang/ocaml: fix bashisms in tests 2020-05-23 20:33:51 +00:00
oo2c *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
open-cobol-ce lang: align variable assignments 2019-11-03 19:03:56 +00:00
opencobol
openjdk-bin openjdk-bin: Update to 15 2020-09-15 20:09:00 +00:00
openjdk8 Depend on binutils for OmniOS build, too. 2020-10-13 09:46:03 +00:00
openjdk11 openjdk11: put back non-amd64 bootstrap checksums 2020-10-26 22:46:04 +00:00
opensource-cobol all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
oracle-jdk8 Add jmap to JAVA_WRAPPERS, bump PKGREVISION 2020-05-29 10:51:23 +00:00
oracle-jre8 lang: align variable assignments 2019-11-03 19:03:56 +00:00
ossp-js *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
owl-lisp
p2c
p5-Switch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
parrot *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
pc-lisp
pcc lang/pcc: remove dependency on gmake 2020-06-06 21:24:14 +00:00
pcc-current
pear lang/pear: update Archive_Tar to 1.4.10 2020-10-04 06:01:25 +00:00
perl5 fix the build on netbsd/vax. 2020-09-17 10:02:20 +00:00
pfe *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pforth
php lang/php74: update to 7.4.12 2020-10-30 07:14:16 +00:00
php56 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
php72 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
php73 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
php74 php74: Document patches for ext/intl 2020-11-08 23:55:43 +00:00
picoc
pict all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
polyml In light of PR 55569, mark lang/polyml NOT_FOR_BULK_PLATFORM *-*-*. 2020-08-14 00:47:10 +00:00
py-asttokens py-asttokens: cleanup 2020-07-01 14:55:12 +00:00
py-basicproperty *: reset maintainer for darcy 2020-07-13 20:05:11 +00:00
py-byterun lang: align variable assignments 2019-11-03 19:03:56 +00:00
py-cmake-language-server py-cmake-language-server: update to 0.1.2. 2020-06-29 13:07:55 +00:00
py-cxfreeze *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-execjs
py-hy py-hy: updated to 0.18.0 2020-03-27 15:27:41 +00:00
py-inflect lang/py-inflect: import py-inflect-4.1.0 2020-03-12 07:12:05 +00:00
py-js2py
py-jsparser py-jsparser: updated to 2.7.1 2019-06-07 07:26:58 +00:00
py-mypy py-mypy: updated to 0.790 2020-11-09 13:36:24 +00:00
py-mypy_extensions py-mypy: updated to 0.740; py-mypy_extensions updated to 0.4.3 2019-10-18 12:28:37 +00:00
py-parso py-parso: update to 0.8.0. 2020-08-24 08:31:26 +00:00
py-paver
py-py3c py-py3c: added version 1.2 2020-07-27 20:11:44 +00:00
py-pygls py-pygls: Sort PLIST 2020-05-18 16:46:46 +00:00
py-pyrex lang: align variable assignments 2019-11-03 19:03:56 +00:00
py-python-language-server py-jedi: mark as not for python 2.7 because of py-parso 2020-08-24 08:32:43 +00:00
py-python-lua *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-pythonz Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-six py-six: updated to 1.15.0 2020-05-27 12:14:31 +00:00
py-spark-parser py-spark-parser: updated to 1.8.9 2019-08-26 06:54:28 +00:00
py-uncompyle6 py-uncompyle6: updated to 3.7.4 2020-09-10 09:27:26 +00:00
py27-html-docs python27: updated to 2.7.18 2020-04-20 20:05:56 +00:00
py36-html-docs python36 py36-html-docs: updated to 3.6.12 2020-08-19 07:07:46 +00:00
py37-html-docs python37 py37-html-docs: updated to 3.7.9 2020-08-19 07:08:34 +00:00
py38-html-docs python38: updated to 3.8.6 2020-09-28 19:31:55 +00:00
py39-html-docs python39: added version 3.9.0 2020-10-10 20:19:47 +00:00
python Explain why we haven't listed feedparser 5 and 6 here. 2020-10-15 12:42:10 +00:00
python27 python27: Add reference to CVE-2020-26116 in patches for bpo-39603 2020-09-27 14:57:22 +00:00
python36 Avoid MemoryError from "import ctypes" on OpenBSD (PR pkg/55134) for all 2020-09-01 09:26:54 +00:00
python37 Avoid MemoryError from "import ctypes" on OpenBSD (PR pkg/55134) for all 2020-09-01 09:26:54 +00:00
python38 python38: updated to 3.8.6 2020-09-28 19:31:55 +00:00
python39 python39: add patches 2020-10-10 20:20:12 +00:00
qore Don't modify the instance from a const method. 2020-03-19 23:59:58 +00:00
quickjs lang/quickjs: install documentation and examples 2020-05-10 10:32:33 +00:00
R-sourcetools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
racket *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
racket-textual lang: align variable assignments 2019-11-03 19:03:56 +00:00
rakudo (lang/rakudo) Updated 2020.08.02 to 2020.10 2020-10-31 12:32:17 +00:00
rakudo-star *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
rcfunge rcfunge: avoid workaround for netbsd<6, EOL versions 2020-04-29 20:30:27 +00:00
rexx-imc
rexx-regina all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
ruby www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-coffee-script
ruby-coffee-script-source all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-cucumber-gherkin lang/ruby-cucumber-gherkin: update to 15.0.2 2020-09-13 16:14:19 +00:00
ruby-doc-stdlib
ruby-execjs
ruby-rkelly-remix
ruby25 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby25-base lang/ruby25-base: Add fix for CVE-2020-25613 2020-10-04 03:45:26 +00:00
ruby26 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby26-base lang/ruby26-base: Add fix for CVE-2020-25613 2020-10-04 03:41:12 +00:00
ruby27 lang/ruby27: add ruby27 package version 2.7.0 2020-03-15 15:30:30 +00:00
ruby27-base lang/ruby27: update to 2.7.2 2020-10-04 03:29:25 +00:00
runawk runawk: Fix typo in DESCR 2020-03-27 23:31:04 +00:00
rust Add another post-install dylib rpath fixup for macOS 2020-11-09 07:49:18 +00:00
rust-bin rust-bin: remove reference to obsolete files 2020-10-22 18:15:41 +00:00
sablevm sablevm: Set LICENSE 2020-07-07 14:58:24 +00:00
sablevm-classpath
sablevm-classpath-gui *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
sather *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sbcl sbcl: remove patches that were removed from distinfo during 2.0.7 update 2020-08-13 07:24:41 +00:00
scala (lang/scala) Fix install stage, ${TAR} was not defined 2020-04-04 04:19:36 +00:00
scala-sbt Update to 1.2.8 2019-07-04 13:46:46 +00:00
scheme48
scm lang: align variable assignments 2019-11-03 19:03:56 +00:00
see *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sigscheme
siod
smalltalk *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
smlnj all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
smlnj11072 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
snobol lang: align variable assignments 2019-11-03 19:03:56 +00:00
spidermonkey lang: align variable assignments 2019-11-03 19:03:56 +00:00
spidermonkey52 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
spidermonkey185 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
spl *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
squeak all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
squeak-vm *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
sr lang: align variable assignments 2019-11-03 19:03:56 +00:00
sr-examples lang: align variable assignments 2019-11-03 19:03:56 +00:00
stalin stalin: seems to only need MesaLib and glu 2019-08-30 18:12:29 +00:00
STk lang/STk: fix array index using char 2020-05-03 14:49:30 +00:00
sun-jdk7 Add jmap to JAVA_WRAPPERS, bump PKGREVISION 2020-05-29 10:51:23 +00:00
sun-jre7 lang: align variable assignments 2019-11-03 19:03:56 +00:00
swi-prolog
swi-prolog-jpl
swi-prolog-lite Don't depend on openssl.cnf to exist. 2020-08-09 23:16:48 +00:00
swi-prolog-packages *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
tcl *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
tcl-expect *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tcl-otcl *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
tcl85 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tcltutor lang/tcltutor: import tcltutor-30b7 2019-10-07 14:37:34 +00:00
tinyscheme *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ucblogo lang: align variable assignments 2019-11-03 19:03:56 +00:00
umb-scheme
utilisp
vala vala: update to 0.50.1. 2020-10-06 19:50:37 +00:00
vscm
vslisp *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
wsbasic *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
yabasic yabasic: update to 2.87.0. 2020-09-06 09:06:15 +00:00
yap Fix STL use 2020-04-17 00:19:43 +00:00
zenlisp
zig *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
Makefile lang: Add mozjs78. Needed by newer gjs (needed by gnome-shell). 2020-11-10 11:27:10 +00:00