pkgsrc/lang
nia bafcff7723 [lib]duktape: Update to 2.5.0
2.5.0 (2019-11-24)
------------------

* Rename the 'global' binding to 'globalThis' to match updated
  proposal-global; enable the binding by default; update
  polyfills/global.js (GH-2160)

* Add duk_pull() API call (GH-2184)

* Add experimental duk_cbor_encode() and duk_cbor_decode() API calls (GH-2163)

* Move CBOR extra into an actual Duktape built-in, enabled by default (GH-2163)

* Include "end of input" in error message if SyntaxError occurs at end of
  file (GH-2152, GH-2165)

* Add missing DUK_DEFPROP_xxx convenience constants for the 'EC' combination
  (like DUK_DEFPROP_EC, DUK_DEFPROP_HAVE_EC, etc) which were accidentally
  missing from the API header (GH-2187)

* Fix behavior of proxied Array objects for: Array.isArray(), duk_is_array(),
  Object.prototype.toString(), JSON.stringify(), Array.prototype.concat()
  (GH-2041, GH-2175, GH-2176)

* Fix a harmless assert in Math.atan2() when compiling with gcc -m32 (GH-2164)

* Fix (suppress) -Wfloat-equal warnings for GCC and Clang (GH-234, GH-2164)

* Fix compile warning when base64 support disabled (GH-2159)

* Fix some compile warnings (GH-2161, GH-2172)

* Add RISC-V architecture detection in duk_config.h; previous versions
  also compiled on RISC-V but identified as "generic" (GH-2174)

* Avoid ast/endian.h header on Solaris (GH-2180)

* Minor performance and footprint improvements (GH-2167, GH-2177)

2.4.0 (2019-07-28)
------------------

* Add duk_to_stacktrace() and duk_safe_to_stacktrace() to make it easier to
  get stacktraces in C code (GH-2059, GH-2086)

* Add duk_push_bare_array() to push an Array instance which doesn't
  inherit from anything (GH-2064)

* Add duk_require_constructable() and duk_require_constructor_call() to
  the public API (previously they were internal helpers) (GH-2102)

* Enable Symbol built-in by default (DUK_USE_SYMBOL_BUILTIN) (GH-1969)

* Remove arguments.caller for strict argument objects to match revised
  ES2017 behavior (GH-2009)

* Add DUK_USE_NATIVE_STACK_CHECK() macro config option (disabled by default)
  for a platform specific stack space check in recursive and stack heavy
  code paths; this is more accurate than the default fixed recursion limit
  (GH-1995)

* When using Proxy wrapping in console extra, don't return a fake NOP
  function for console.toJSON to avoid confusing JX serialization of the
  console object (GH-2052, GH-2054, GH-2055)

* Disable Proxy wrapper for 'duk' console binding because it is no longer
  the preferred console implementation method (GH-2055)

* Update UnicodeData.txt and SpecialCasing.txt used for building internal
  Unicode control data to Unicode version 12.1.0 (GH-2085)

* Use bare objects/arrays in more places internally: variable map and
  formals array of functions loaded from bytecode (to match behavior of
  compiled functions), context dump array for duk_push_context_dump(),
  and error tracedata (GH-2089)

* Expose DUK_INTERNAL_SYMBOL() macro; while an application shouldn't
  normally need to use this macro at all, it may be useful in some cases
  to peek into Duktape internals (with no versioning guarantees) (GH-2118)

* Accept non-plain buffer types in some examples/extras (cmdline, eventloop,
  logging, print-alert) (GH-2107)

* Fix eventloop example .write() method buffer handling which relied on
  Duktape.Buffer, also fix a related TCP client example bug (GH-2107)

* Minor changes to CBOR extra type handling: encode non-UTF-8 strings
  as CBOR byte strings (instead of text strings), encode Symbols as empty
  objects, refuse to decode Symbols, encode pointers as "(%p)" instead of
  "%p" to match JX, decode integers in most cases to fastints when possible
  (GH-2121, GH-2154)

* Minor performance improvements to CBOR extra (GH-2121, GH-2154)

* Add (untested) support for mixed endian targets to CBOR extra (GH-2121)

* Remove support for unnecessary DUK_USE_USER_DECLARE config option, use
  configure.py fixup line/file instead (GH-2123)

* Remove ncurses dependency from the eventloop example, add a new example
  for running a lot of timers, improve init error reporting (GH-2126,
  GH-2128)

* Add --no-auto-complete option to 'duk' to disable linenoise auto
  completion (GH-2131)

* Add support for keeping an array's internal array part in
  Object.defineProperty(), previously the array part was always
  abandoned if an array index was defined using Object.defineProperty()
  (even if property attributes were correct) (GH-2146)

* Rework some internal property handling call sites and helpers to e.g.
  avoid inheriting internal properties when not intended (GH-2149)

* Improve assertion coverage for internal structures during mark-and-sweep
  (GH-2092)

* Fix incorrect parsing of post-increment/post-decrement followed by
  division (e.g. "z++ / 20"), the slash was interpreted as beginning
  a regexp (GH-2140)

* Fix incorrect handling of zero-length dynamic buffer in base-64 fast path
  decoder (GH-2027, GH-2088)

* Fix Object.getOwnPropertySymbols() behavior for the virtual properties
  of arrays, Strings, and buffer objects: string keys were incorrectly
  included in the result (GH-1978, GH-1979)

* Fix Date .setTime(), setYear(), etc behavior for a frozen Date instance;
  they should be allowed, but were rejected with a TypeError (GH-2149)

* Fix compile error (missing DUK_DCERROR_UNSUPPORTED macro) when compiling
  with RegExp support disabled (GH-1990, GH-1991)

* Fix configure.py -D option to accept parenthesized macros, e.g.
  '-DFOO(bar)=quux', which were used in some examples but were not
  actually functional (GH-2013, GH-2014)

* Fix error handling corner case when a property-based call (foo.bar())
  caused an error and Duktape.errCreate returned a callable value (such
  as Float64Array); this caused an assertion failure (GH-2061, GH-2087)

* Fix coercion of +'+' and +'-' to NaN instead of 0 (GH-2019, GH-2134)

* Fix possible out-of-memory in call stack unwind by preallocating the
  environment property table on creation (GH-476, GH-2021, GH-2106)

* Fix possibility for unbounded native recursion without call stack limit
  backstop when call handling triggers a Proxy trap (GH-2032, GH-2108)

* Fix several assertion failures with possible memory unsafe behavior
  (GH-2022, GH-2023, GH-2024, GH-2025, GH-2026, GH-2031, GH-2033, GH-2035,
  GH-2036, GH-2065, GH-2115, GH-2138, GH-2146)

* Fix incorrect assertion with no underlying bug for resolving bound
  function chains with a Proxy object (rather than a plain function)
  as the final non-bound function (GH-2049, GH-2103)

* Fix incorrect assertion with no underlying bug for "thr == heap_thread"
  during heap destruction finalizer runs; the assert is untrue when a
  finalizer (executed during heap destruction) resumes a coroutine (GH-2030,
  GH-2132, GH-2133)

* Fix compile error for extras/eventloop due to missing a header file
  (c_eventloop.h) in the dist package (GH-2090)

* Fix CBOR decoding of text strings and byte strings with a lot of
  concatenated pieces in the CBOR extra (GH-2093)

* Fix CBOR decoding of (ignored) 64-bit tags in the CBOR extra (GH-2095)

* Fix a CBOR encoding wrap check in the CBOR extra (GH-2121)

* Trivial fixes and cleanups: Windows Date provider return code check
  consistency (GH-1956)

* Fix MSVC ARM64 detection (GH-2078)

* Use GCC (>= 5.0) and Clang builtin bswap macros, add internal DUK_BSWAP64()
  macro (GH-2122)

* Short term workaround for a noreturn-related issue with GCC 5+ (GH-2155)
  where some internal duk_require_constructor_call() calls are entirely
  missing in compiler output in certain circumstances (GCC 5+, noreturn
  attributes enabled, debugger support enabled); the workaround is to
  disable noreturn macros for GCC 5+ for now (GH-2156)

* Various portability fixes (GH-1931, GH-1976)
2020-03-24 13:49:11 +00:00
..
a60 a60: HOMEPAGE and MASTER_SITES redirect to https. 2019-06-05 07:17:15 +00:00
abcl all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
adoptopenjdk11-bin adoptopenjdk11-bin: Regenerate buildlink3.mk 2020-01-15 15:35:35 +00:00
algol68g all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
asn1c all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
awka *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
baci all: migrate homepages from http to https 2020-01-26 17:30:40 +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
chicken all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
chicken5 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
cim all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
cint
clang lang/clang: fix nonexistent SUBST_FILES 2020-03-24 05:58:48 +00:00
clang-static-analyzer llvm: updated to 9.0.1 2019-12-29 15:31:21 +00:00
clang-tools-extra llvm: updated to 9.0.1 2019-12-29 15:31:21 +00:00
classpath *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
classpath-gui librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
clisp *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
clojure clojure: Avoid changing version numbers in two places. 2019-10-09 12:41:13 +00:00
compiler-rt all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
coq librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
coreclr PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
cparser *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
cu-prolog
duktape [lib]duktape: Update to 2.5.0 2020-03-24 13:49:11 +00:00
eag
ecl Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +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: updated to 1.10.2 2020-02-26 19:21:50 +00:00
elk lang: align variable assignments 2019-11-03 19:03:56 +00:00
embryo https for enlightenment.org. 2019-07-06 16:46:09 +00:00
erlang erlang: Update to 22.2.8 2020-03-20 16:05:34 +00:00
erlang-doc erlang*: Update to 22.2.7. 2020-02-27 13:46:39 +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 PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
forth-retro forth-retro: fix build on SunOS 2019-05-05 20:27:12 +00:00
g95 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
gambc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
gauche lang/gauche: skip check for unknown configure options 2020-03-22 10:50:35 +00:00
gawk all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc-aux lang: align variable assignments 2019-11-03 19:03:56 +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: align variable assignments 2019-11-03 19:03:56 +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 gcc5: also record the checksum for ecj-4.5.jar 2020-03-03 09:18:30 +00:00
gcc5-aux lang/gcc5-aux: skip portability check for unused files 2020-03-22 10:52:15 +00:00
gcc5-libs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc6 lang/gcc6: fix typo in portability check 2020-03-22 10:55:41 +00:00
gcc6-aux lang: align variable assignments 2019-11-03 19:03:56 +00:00
gcc6-libs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc7 lang/gcc7: fix typo in portability check 2020-03-22 10:56:25 +00:00
gcc7-libs lang/gcc7: Fix build on RHEL/CentOS by requiring c99 2020-03-13 15:00:36 +00:00
gcc8 gcc8: surround use of zlib/builtin.mk with CHECK_BUILTIN 2020-03-23 10:37:00 +00:00
gcc8-libs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc9 lang/gcc9: drop maintainership 2020-03-08 23:52:54 +00:00
gcc34 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
gcc44 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc48 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc48-libs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc49 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gcc49-libs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gforth Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
ghc lang: align variable assignments 2019-11-03 19:03:56 +00:00
ghc-bootstrap lang: align variable assignments 2019-11-03 19:03:56 +00:00
ghc7 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
ghc80 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
ghc84 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
ghc88 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
gjs gjs: fix unportable test(1) operator 2020-03-12 22:53:12 +00:00
gnat_util lang: align variable assignments 2019-11-03 19:03:56 +00:00
gnucobol
go Update go113 to 1.13.9. 2020-03-21 16:51:10 +00:00
go-hcl Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go14 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
go19 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
go110 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
go113 Update go113 to 1.13.9. 2020-03-21 16:51:10 +00:00
go114 Update go114 to 1.14.1. 2020-03-20 19:50:48 +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 guile22: update to 2.2.7nb1. 2020-03-19 14:15:17 +00:00
gwydion-dylan Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
heirloom-awk
hs-hslua Import hslua-1.0.3.2 from wip 2020-01-15 12:40:38 +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 *: recursive bump for libffi 2020-03-08 16:47:24 +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: Add link to github issue (thanks leah) 2020-03-04 11:23:02 +00:00
japhar Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
jasmin
java-lang-spec
java-vm-spec
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 librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kali lang: align variable assignments 2019-11-03 19:03:56 +00:00
konoha *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ksi *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libBlocksRuntime all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libcxx all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libcxxabi all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libduktape [lib]duktape: Update to 2.5.0 2020-03-24 13:49:11 +00:00
libLLVM libLLVM: Bump GCC_REQD 2020-03-20 17:51:57 +00:00
libLLVM4 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libLLVM34 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
librep Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
libunwind llvm: updated to 9.0.1 2019-12-29 15:31:21 +00:00
likepython lang: align variable assignments 2019-11-03 19:03:56 +00:00
llvm lang/llvm: fix typo in REPLACE_PYTHON filename 2020-03-22 18:01:21 +00:00
lua
lua51 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lua52 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lua53 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
LuaJIT all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
LuaJIT2 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lush *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
maude
mawk Use https for all invisible-island.net HOMEPAGEs. 2019-06-22 11:37:13 +00:00
mercury regen PLIST 2020-01-30 20:44:27 +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 mono: Make sure mono6 is pulled in on NetBSD. 2020-01-22 21:31:00 +00:00
mono-basic Use https for mono-project.com. 2019-09-11 11:53:39 +00:00
mono6 mono6: Fix build on NetBSD 2020-02-14 00:50:51 +00:00
moscow_ml Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mpd
nawk all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
neko lang: Add neko. Based on work by cfkoch in wip. 2020-03-24 13:23:46 +00:00
newlisp Update to 10.7.5 2019-08-23 13:41:31 +00:00
newsqueak lang: align variable assignments 2019-11-03 19:03:56 +00:00
nhc98 lang: align variable assignments 2019-11-03 19:03:56 +00:00
nim Update to 1.0.2 2019-10-30 12:28:48 +00:00
nodejs lang/nodejs: allow no-op SUBST 2020-03-22 20:28:13 +00:00
nodejs8 nodejs*: Unbreak builds, again, this time with comment. 2020-03-11 09:22:49 +00:00
nodejs10 nodejs*: Unbreak builds, again, this time with comment. 2020-03-11 09:22:49 +00:00
nodejs12 nodejs*: Unbreak builds, again, this time with comment. 2020-03-11 09:22:49 +00:00
npm npm: updated to 6.14.2 2020-03-04 19:05:21 +00:00
nqp Update nqp to 2020.02.1. 2020-03-08 18:22:44 +00:00
nuitka all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
objc
ocaml lang/ocaml: remove unknown configure option --without-x 2020-02-15 14:48:08 +00:00
oo2c *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
open-cobol-ce lang: align variable assignments 2019-11-03 19:03:56 +00:00
opencobol
openjdk-bin openjdk-bin: Update to 13.0.2 2020-03-15 12:47:31 +00:00
openjdk7 Disable some more warnings for clang. Make sure to use visibility 2020-03-22 21:22:20 +00:00
openjdk8 openjdk8: remove va-hack now that we have UNLIMIT_RESOURCES+=virtualsize 2020-03-22 22:06:02 +00:00
openjdk11 Unlimit virtual address space use. Apply higher limits during initial 2020-03-22 21:23:10 +00:00
opensource-cobol all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
oracle-jdk8 lang: align variable assignments 2019-11-03 19:03:56 +00:00
oracle-jre8 lang: align variable assignments 2019-11-03 19:03:56 +00:00
ossp-js lang: align variable assignments 2019-11-03 19:03:56 +00:00
owl-lisp
p2c
p5-Switch Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
parrot lang: align variable assignments 2019-11-03 19:03:56 +00:00
pc-lisp
pcc
pcc-current
pear lang/pear: fix typo in shell program filename 2020-03-22 21:48:35 +00:00
perl5 lang/perl5: remove obsolete SUBST actions 2020-03-17 03:45:55 +00:00
pfe *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
pforth
php lang/php72: update to 7.2.29 2020-03-20 08:14:44 +00:00
php56 *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
php72 lang/php72: update to 7.2.29 2020-03-20 08:14:44 +00:00
php73 lang/php73: remove phar.php from the files to be patched 2020-03-22 11:00:36 +00:00
php74 lang/php74: update to 7.4.4 2020-03-20 08:13:55 +00:00
picoc
pict all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
polyml Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
py-asttokens lang/py-asttokens: fix build dependencies for Python 2.7 2020-03-22 11:02:14 +00:00
py-basicproperty *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-byterun lang: align variable assignments 2019-11-03 19:03:56 +00:00
py-cxfreeze *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
py-execjs
py-hy
py-inflect lang/py-inflect: import py-inflect-4.1.0 2020-03-12 07:12:05 +00:00
py-js2py py-js2py: updated to 0.60 2019-02-18 12:57:21 +00:00
py-jsparser py-jsparser: updated to 2.7.1 2019-06-07 07:26:58 +00:00
py-mypy py-mypy: updated to 0.770 2020-03-17 20:18:43 +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: updated to 0.6.2 2020-03-03 19:06:18 +00:00
py-paver Fix PLIST for Python 2.x build. 2018-12-27 15:14:00 +00:00
py-pyrex lang: align variable assignments 2019-11-03 19:03:56 +00:00
py-python-lua lang: align variable assignments 2019-11-03 19:03:56 +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.14.0 2020-01-16 08:22:41 +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: fix PLIST for Python 2.7; note: and_not_check.py is not used at all 2020-03-15 23:35:03 +00:00
py27-html-docs py27-html-docs: Update to 2.7.17 2019-10-21 10:08:08 +00:00
py36-html-docs py36-html-docs: updated to 3.6.10 2019-12-28 22:38:04 +00:00
py37-html-docs python37: updated to 3.7.7 2020-03-11 08:31:57 +00:00
py38-html-docs python38: updated to 3.8.2 2020-02-27 14:33:02 +00:00
python replace-interpreter: make documentation more precise 2020-03-24 04:40:34 +00:00
python27 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
python36 python3*: link pydoc in ALTERNATIVES instead of pydoc3 2020-03-21 10:37:14 +00:00
python37 python3*: link pydoc in ALTERNATIVES instead of pydoc3 2020-03-21 10:37:14 +00:00
python38 python3*: link pydoc in ALTERNATIVES instead of pydoc3 2020-03-21 10:37:14 +00:00
qore Don't modify the instance from a const method. 2020-03-19 23:59:58 +00:00
quickjs Make some adjustments to fix the issues from PR#54912: 2020-02-10 13:06:08 +00:00
R-sourcetools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
racket librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
racket-textual lang: align variable assignments 2019-11-03 19:03:56 +00:00
rakudo Update rakudo to 2020.02.1. 2020-03-08 19:47:47 +00:00
rakudo-star *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
rcfunge all: migrate homepages from http to https 2020-01-26 17:30:40 +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 lang/ruby: drop support for Ruby on Rails 4.2 2020-03-21 15:59:01 +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: add package version 11.0.0 2020-03-15 17:16:28 +00:00
ruby-doc-stdlib
ruby-execjs
ruby-gherkin lang/ruby-gherkin: update to 9.0.0 2020-01-18 16:30:45 +00:00
ruby-rkelly-remix
ruby24 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby24-base lang/ruby24-base: remove nonexistent bin/rake 2020-03-18 00:35:19 +00:00
ruby25 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby25-base lang/ruby25-base: remove nonexistent bin/rake 2020-03-18 00:34:02 +00:00
ruby26 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby26-base lang/ruby26-base: fix typo in REPLACE_RUBY 2020-03-18 00:32:55 +00:00
ruby27 lang/ruby27: add ruby27 package version 2.7.0 2020-03-15 15:30:30 +00:00
ruby27-base lang/ruby27-base: add ruby-base version 2.7.0 2020-03-15 15:26:22 +00:00
runawk all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
rust Bump NetBSD bootstrap versions to 1.41.1 for 2020-03-20 09:25:00 +00:00
sablevm Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
sablevm-classpath
sablevm-classpath-gui librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
sather all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
sbcl Re-work the configuration patches a bit. 2019-11-10 16:58:31 +00:00
scala all: migrate homepages from http to https 2020-01-26 17:30:40 +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 PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sigscheme
siod
smalltalk librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +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 spidermonkey52: distinfo forgotten in previsous commit 2020-03-23 08:52:11 +00:00
spidermonkey185 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
spl lang: align variable assignments 2019-11-03 19:03:56 +00:00
squeak all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
squeak-vm Revbump packages depending on libffi after .so version change. 2020-03-08 16:42: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: align variable assignments 2019-11-03 19:03:56 +00:00
sun-jdk7 lang: align variable assignments 2019-11-03 19:03:56 +00:00
sun-jre7 lang: align variable assignments 2019-11-03 19:03:56 +00:00
swi-prolog swi-prolog*: Update to 8.0.1 2019-02-25 15:20:44 +00:00
swi-prolog-jpl swi-prolog-jpl: Adjust COMMENT to reflect the actual package 2019-03-13 14:02:51 +00:00
swi-prolog-lite *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
swi-prolog-packages *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
tcl all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tcl-expect *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tcl-otcl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +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.48.1. 2020-03-15 20:00:05 +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 Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
yap
zenlisp
zig zig: mark as BROKEN (needs update due to lang/llvm update) 2020-03-20 11:42:38 +00:00
Makefile lang: Add neko. Based on work by cfkoch in wip. 2020-03-24 13:23:46 +00:00