pkgsrc/lang
adam e97a889232 perl: updated to 5.30.0
what is new for perl v5.30.0

Core Enhancements
   Limited variable length lookbehind in regular expression pattern matching is now experimentally supported
       Using a lookbehind assertion (like "(?<=foo?)" or "(?<!ba{1,9}r)" previously would generate an error and
       refuse to compile.  Now it compiles (if the maximum lookbehind is at most 255 characters), but raises a
       warning in the new "experimental::vlb" warnings category.  This is to caution you that the precise behavior
       is subject to change based on feedback from use in the field.

       See "(?<=pattern)" in perlre and "(?<!pattern)" in perlre.

   The upper limit "n" specifiable in a regular expression quantifier of the form "{m,n}" has been doubled to 65534
       The meaning of an unbounded upper quantifier "{m,}" remains unchanged.  It matches 2**31 - 1 times on most
       platforms, and more on ones where a C language short variable is more than 4 bytes long.

   Unicode 12.1 is supported
       Because of a change in Unicode release cycles, Perl jumps from Unicode 10.0 in Perl 5.28 to Unicode 12.1 in
       Perl 5.30.

       For details on the Unicode changes, see <https://www.unicode.org/versions/Unicode11.0.0/> for 11.0;
       <https://www.unicode.org/versions/Unicode12.0.0/> for 12.0; and
       <https://www.unicode.org/versions/Unicode12.1.0/> for 12.1.  (Unicode 12.1 differs from 12.0 only in the
       addition of a single character, that for the new Japanese era name.)

       The Word_Break property, as in past Perl releases, remains tailored to behave more in line with expectations
       of Perl users.  This means that sequential runs of horizontal white space characters are not broken apart,
       but kept as a single run.  Unicode 11 changed from past versions to be more in line with Perl, but it left
       several white space characters as causing breaks: TAB, NO BREAK SPACE, and FIGURE SPACE (U+2007).  We have
       decided to continue to use the previous Perl tailoring with regards to these.

   Wildcards in Unicode property value specifications are now partially supported
       You can now do something like this in a regular expression pattern

        qr! \p{nv= /(?x) \A [0-5] \z / }!

       which matches all Unicode code points whose numeric value is between 0 and 5 inclusive.  So, it could match
       the Thai or Bengali digits whose numeric values are 0, 1, 2, 3, 4, or 5.

       This marks another step in implementing the regular expression features the Unicode Consortium suggests.

       Most properties are supported, with the remainder planned for 5.32.  Details are in "Wildcards in Property
       Values" in perlunicode.

   qr'\N{name}' is now supported
       Previously it was an error to evaluate a named character "\N{...}" within a single quoted regular expression
       pattern (whose evaluation is deferred from the normal place).  This restriction is now removed.

   Turkic UTF-8 locales are now seamlessly supported
       Turkic languages have different casing rules than other languages for the characters "i" and "I".  The
       uppercase of "i" is LATIN CAPITAL LETTER I WITH DOT ABOVE (U+0130); and the lowercase of "I" is LATIN SMALL
       LETTER DOTLESS I (U+0131).  Unicode furnishes alternate casing rules for use with Turkic languages.
       Previously, Perl ignored these, but now, it uses them when it detects that it is operating under a Turkic
       UTF-8 locale.

   It is now possible to compile perl to always use thread-safe locale operations.
       Previously, these calls were only used when the perl was compiled to be multi-threaded.  To always enable
       them, add

        -Accflags='-DUSE_THREAD_SAFE_LOCALE'

       to your Configure flags.

   Eliminate opASSIGN macro usage from core
       This macro is still defined but no longer used in core

   "-Drv" now means something on "-DDEBUGGING" builds
       Now, adding the verbose flag ("-Dv") to the "-Dr" flag turns on all possible regular expression debugging.

Incompatible Changes
   Assigning non-zero to $[ is fatal
       Setting $[ to a non-zero value has been deprecated since Perl 5.12 and now throws a fatal error.  See
       "Assigning non-zero to $[ is fatal" in perldeprecation.

   Delimiters must now be graphemes
       See "Use of unassigned code point or non-standalone grapheme for a delimiter." in perldeprecation

   Some formerly deprecated uses of an unescaped left brace "{" in regular expression patterns are now illegal
       But to avoid breaking code unnecessarily, most instances that issued a deprecation warning, remain legal and
       now have a non-deprecation warning raised.  See "Unescaped left braces in regular expressions" in
       perldeprecation.

   Previously deprecated sysread()/syswrite() on :utf8 handles is now fatal
       Calling sysread(), syswrite(), send() or recv() on a ":utf8" handle, whether applied explicitly or
       implicitly, is now fatal.  This was deprecated in perl 5.24.

       There were two problems with calling these functions on ":utf8" handles:

       o   All four functions only paid attention to the ":utf8" flag.  Other layers were completely ignored, so a
           handle with ":encoding(UTF-16LE)" layer would be treated as UTF-8.  Other layers, such as compression
           are completely ignored with or without the ":utf8" flag.

       o   sysread() and recv() would read from the handle, skipping any validation by the layers, and do no
           validation of their own.  This could lead to invalidly encoded perl scalars.


   my() in false conditional prohibited

       Declarations such as "my $x if 0" are no longer permitted.

   Fatalize $* and $#
       These special variables, long deprecated, now throw exceptions when used.

   Fatalize unqualified use of dump()
       The "dump()" function, long discouraged, may no longer be used unless it is fully qualified, i.e.,
       "CORE::dump()".

   Remove File::Glob::glob()
       The "File::Glob::glob()" function, long deprecated, has been removed and now throws an exception which
       advises use of "File::Glob::bsd_glob()" instead.

   "pack()" no longer can return malformed UTF-8
       It croaks if it would otherwise return a UTF-8 string that contains malformed UTF-8.  This protects against
       potential security threats.  This is considered a bug fix as well.

   Any set of digits in the Common script are legal in a script run of another script
       There are several sets of digits in the Common script.  "[0-9]" is the most familiar.  But there are also
       "[\x{FF10}-\x{FF19}]" (FULLWIDTH DIGIT ZERO - FULLWIDTH DIGIT NINE), and several sets for use in
       mathematical notation, such as the MATHEMATICAL DOUBLE-STRUCK DIGITs.  Any of these sets should be able to
       appear in script runs of, say, Greek.  But the design of 5.30 overlooked all but the ASCII digits "[0-9]",
       so the design was flawed.  This has been fixed, so is both a bug fix and an incompatibility.

       All digits in a run still have to come from the same set of ten digits.

   JSON::PP enables allow_nonref by default
       As JSON::XS 4.0 changed its policy and enabled allow_nonref by default, JSON::PP also enabled allow_nonref
       by default.

Deprecations
   In XS code, use of various macros dealing with UTF-8.
       This deprecation was scheduled to become fatal in 5.30, but has been delayed to 5.32 due to problems that
       showed up with some CPAN modules.  For details of what's affected, see perldeprecation.

Performance Enhancements
       o   Translating from UTF-8 into the code point it represents now is done via a deterministic finite
           automaton, speeding it up.  As a typical example, "ord("\x7fff")" now requires 12% fewer instructions
           than before.  The performance of checking that a sequence of bytes is valid UTF-8 is similarly improved,
           again by using a DFA.

       o   Eliminate recursion from finalize_op().

       o   A handful of small optimizations related to character folding and character classes in regular
           expressions.

       o   Optimization of "IV" to "UV" conversions.

       o   Speed up of the integer stringification algorithm by processing two digits at a time instead of one.

       o   Improvements based on LGTM analysis and recommendation.

       o   Code optimizations in regcomp.c, regcomp.h, regexec.c.

       o   Regular expression pattern matching of things like "qr/[^a]/" is significantly sped up, where a is any
           ASCII character.  Other classes can get this speed up, but which ones is complicated and depends on the
           underlying bit patterns of those characters, so differs between ASCII and EBCDIC platforms, but all case
           pairs, like "qr/[Gg]/" are included, as is "[^01]".
2019-08-11 10:14:17 +00:00
..
a60 a60: HOMEPAGE and MASTER_SITES redirect to https. 2019-06-05 07:17:15 +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 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
boomerang Follow some redirects. 2019-06-24 10:36:50 +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
cbmbasic Add lang/cbmbasic, a Commodore BASIC interpreter 2019-07-08 06:46:22 +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: Update OWN_DIRS after 5.1.0 and introduce CHICKEN_BINARY_VERSION 2019-07-06 21:16:59 +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: updated to 8.0.1 2019-08-05 19:06:49 +00:00
clang-static-analyzer clang: updated to 8.0.0 2019-06-02 08:39:28 +00:00
clang-tools-extra llvm: updated to 8.0.1 2019-08-05 19:06:49 +00:00
classpath
classpath-gui *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
clisp clisp: make PS file generation dependent on the "doc" option. 2019-07-13 09:43:56 +00:00
clojure Update to Clojure 1.8.0 2019-07-23 20:33:51 +00:00
compiler-rt llvm: updated to 8.0.1 2019-08-05 19:06:49 +00:00
coq *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
coreclr PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
cparser
cu-prolog
duktape More http -> https. 2019-06-24 10:59:40 +00:00
eag Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
ecl ecl: Update to 16.1.3 2019-03-01 13:30:52 +00:00
eieio eieio: Use default EMACS_VERSIONS_ACCEPTED. 2018-02-06 16:36:44 +00:00
elisp-manual
elixir elixir: Update to 1.9.1 2019-08-01 09:52:52 +00:00
elk Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
embryo https for enlightenment.org. 2019-07-06 16:46:09 +00:00
erlang erlang: Restore SunOS -shared fix lost in previous update. 2019-08-08 11:42:23 +00:00
erlang-doc erlang: Update to 22.0.7 2019-08-01 11:43:00 +00:00
erlang-luerl lang/erlang-luerl: Update to 0.3. 2018-03-24 16:29:51 +00:00
erlang-man erlang: Update to 22.0.7 2019-08-01 11:43:00 +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 forth-retro: fix build on SunOS 2019-05-05 20:27:12 +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 Update to 5.0.0 2019-04-16 11:43:29 +00:00
gcc-aux gcc-aux: add SHA512 checksums for bootstraps 2019-05-02 08:26:26 +00:00
gcc2 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
gcc3 gcc3: in case someone can build this package, commit the same change 2016-09-30 20:32:48 +00:00
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 gcc{48,49,5,6}: add patch to avoid fragile include guard logic 2019-08-06 06:16:14 +00:00
gcc5-aux gcc5-aux, gcc6-aux: patch fixincludes on netbsd. 2019-08-05 21:16:39 +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 gcc{48,49,5,6}: add patch to avoid fragile include guard logic 2019-08-06 06:16:14 +00:00
gcc6-aux gcc5-aux, gcc6-aux: patch fixincludes on netbsd. 2019-08-05 21:16:39 +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 gcc7: use system zlib, and declare a dependency on it. 2019-08-06 14:05:05 +00:00
gcc7-libs gcc7: use system zlib, and declare a dependency on it. 2019-08-06 14:05:05 +00:00
gcc8 gcc{48,49,5,6}: add patch to avoid fragile include guard logic 2019-08-06 06:16:14 +00:00
gcc8-libs gcc8: gcc8-libs: Upgrade to 8.3.0 2019-05-31 09:23:57 +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 gcc{48,49,5,6}: add patch to avoid fragile include guard logic 2019-08-06 06:16:14 +00:00
gcc48-libs lang/gcc48-libs: bump PKGREVISION (NFC) 2019-01-16 04:31:39 +00:00
gcc49 gcc{48,49,5,6}: add patch to avoid fragile include guard logic 2019-08-06 06:16:14 +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 Follow some http->https redirects. 2019-07-08 10:36:25 +00:00
ghc-bootstrap Follow some http->https redirects. 2019-07-08 10:36:25 +00:00
ghc7 Follow some http->https redirects. 2019-07-08 10:36:25 +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 Update go112 to 1.12.7. 2019-07-14 15:19:55 +00:00
go-hcl Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go14 go14: fix bootstrap for newer openbsd. 2019-04-13 23:09:40 +00:00
go19 go19: fix PLIST 2018-09-27 20:39:45 +00:00
go110 Update go110 to 1.10.8 (security). 2019-01-24 09:33:08 +00:00
go111 Update go111 to 1.11.12. 2019-07-14 12:25:18 +00:00
go112 Update go112 to 1.12.7. 2019-07-14 15:19:55 +00:00
gpc
gprolog (lang/prolog) remove default setting (MAKE_JOBS_SAFE) 2019-06-14 22:32:06 +00:00
guile lang/guile: fix alignment of variables 2019-07-14 21:46:22 +00:00
guile20 lang/guile: fix alignment of variables 2019-07-14 21:46:22 +00:00
guile22 guile22: update to 2.2.6. 2019-07-20 21:01:19 +00:00
gwydion-dylan Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
heirloom-awk
hugs Use https for haskell.org. 2019-07-10 10:24:05 +00:00
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
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 *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
kali Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
konoha *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +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: updated to 8.0.1 2019-08-05 19:06:49 +00:00
libcxxabi llvm: updated to 8.0.1 2019-08-05 19:06:49 +00:00
libduktape More http -> https. 2019-06-24 10:59:40 +00:00
libLLVM PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
libLLVM4 PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
libLLVM34 PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
librep librep: update to 0.92.7 2019-01-04 02:06:05 +00:00
libtcl-nothread
libunwind llvm: updated to 8.0.1 2019-08-05 19:06:49 +00:00
likepython PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
llvm llvm: updated to 8.0.1 2019-08-05 19:06:49 +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 Use https for all invisible-island.net HOMEPAGEs. 2019-06-22 11:37:13 +00:00
mercury Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
micropython PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
minischeme
mit-scheme-bin
mono all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
mono-basic Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
mono2 all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
moscow_ml Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
mpd
nawk
newlisp Upgrade lang/newlisp from 10.6 to 10.7.1 2019-04-24 13:09:45 +00:00
newsqueak Follow some redirects. 2017-09-03 08:53:04 +00:00
nhc98 Use https for haskell.org. 2019-07-10 10:24:05 +00:00
nim Update to 0.20.2 2019-07-17 21:56:37 +00:00
nodejs nodejs: updated to 10.16.2 2019-08-07 07:33:25 +00:00
nodejs6 lang/nodejs6: Update to 6.14.4. 2018-08-16 13:40:26 +00:00
nodejs8 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
npm npm: updated to 6.10.3 2019-08-07 07:34:32 +00:00
nqp Update nqp to 2018.12. 2019-02-16 19:39:02 +00:00
nuitka PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
objc
ocaml Fix rpaths in installed shlibs on Darwin. Bump PKGREVISION. 2019-08-02 03:13:06 +00:00
oo2c *: add SHA512 checksums to distinfo 2019-04-27 11:33:02 +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
openjdk-bin Update to 12.0.1 2019-05-01 05:39:30 +00:00
openjdk7 *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
openjdk8 openjdk8: set the DISTNAME & PKGNAME based on GITHUB_TAG 2019-07-25 19:12:55 +00:00
opensource-cobol Need strnlen(3), make sure we obtain it from libnbcompat if host OS doesn't 2019-07-10 17:53:38 +00:00
oracle-jdk8 Update to 8.0.202 2019-01-22 03:51:41 +00:00
oracle-jre8 Use https for oracle.com. 2019-07-10 10:37:13 +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 Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
parrot Recursive revbump from textproc/icu 2019-04-03 00:32:25 +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 Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
perl5 perl: updated to 5.30.0 2019-08-11 10:14:17 +00:00
pfe PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
pforth Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
php lang/php71: update to 7.1.31 2019-08-01 14:20:58 +00:00
php56 Use https for php.net. 2019-07-03 07:30:50 +00:00
php71 lang/php71: update to 7.1.31 2019-08-01 14:20:58 +00:00
php72 lang/php72: update to 7.2.21 2019-08-01 14:19:39 +00:00
php73 lang/php73: update to 7.3.8 2019-08-01 14:14:04 +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 Add buildlink3.mk. 2019-06-12 19:32:44 +00:00
py-asttokens py-asttokens: updated to 1.1.13 2018-11-05 18:05:47 +00:00
py-basicproperty Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-byterun Set EGG_NAME and simplify PLIST. 2016-09-17 23:46:37 +00:00
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 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.711 2019-07-03 19:40:41 +00:00
py-mypy_extensions Forget about Python 3.4 2019-05-02 09:16:47 +00:00
py-parso py-parso: updated to 0.5.1 2019-07-18 07:38:50 +00:00
py-paver Fix PLIST for Python 2.x build. 2018-12-27 15:14:00 +00:00
py-pyrex fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +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 fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +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.3.5 2019-07-04 11:59:34 +00:00
py27-html-docs py27-html-docs: Update to 2.7.16 2019-03-05 15:20:32 +00:00
py36-html-docs py36-html-docs: Update to 3.6.9 2019-07-03 21:09:54 +00:00
py37-html-docs python37: updated to 3.7.4 2019-07-09 07:46:37 +00:00
python lang/python: fix PYVERSSUFFIX escaping for print-PLIST 2019-07-17 18:34:16 +00:00
python27 python: Don't install nis_failed.so if no yp headers 2019-04-25 15:59:54 +00:00
python36 python36: updated to 3.6.9 2019-07-03 20:10:41 +00:00
python37 python37: updated to 3.7.4 2019-07-09 07:46:37 +00:00
qore Disable single compilation unit by default, it will dramatically 2018-12-27 15:15:22 +00:00
R-codetools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-sourcetools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
racket Use https for racket-lang.org. 2019-07-10 10:38:18 +00:00
racket-textual Use https for racket-lang.org. 2019-07-10 10:38:18 +00:00
rakudo Update rakudo to 2018.12. 2019-02-18 14:16:52 +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 all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +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 Update ruby-execjs to 2.7.0. 2016-10-15 13:57:53 +00:00
ruby-gherkin lang/ruby-gherkin: update to 6.0.15 2019-01-20 13:40:44 +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 lang/ruby: switch to use distfiles in '.xz' format 2019-01-03 05:19:03 +00:00
ruby24 Add ruby24 (Ruby 2.4.1) to pkgsrc. 2017-06-18 13:46:16 +00:00
ruby24-base lang/ruby24-base: update to 2.4.6 2019-04-07 16:17:39 +00:00
ruby25 lang/ruby25: add ruby25 2.5.0 2018-01-08 14:20:05 +00:00
ruby25-base lang/ruby25-base: updateo to 2.5.5 2019-03-16 14:34:56 +00:00
ruby26 ng/ruby26: forgot to commit DESCR 2019-02-14 06:01:02 +00:00
ruby26-base lang/ruby26-base: update to 2.6.3 2019-04-17 16:33:10 +00:00
runawk Remove mova.org from MASTER_SITES 2019-04-08 21:38:39 +00:00
rust Move NetBSD-produced rust bootstrap files to ${MASTER_SITE_LOCAL:=rust/}, 2019-07-23 13:16:09 +00:00
sablevm Fix pthread use. 2017-02-14 21:27:40 +00:00
sablevm-classpath
sablevm-classpath-gui *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
sather all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
sbcl all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
scala Update to 2.13.0 2019-07-04 13:41:56 +00:00
scala-sbt Update to 1.2.8 2019-07-04 13:46:46 +00:00
scheme48 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
scm Not MAKE_JOBS_SAFE. 2016-09-06 20:54:00 +00:00
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 *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +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 spidermonkey52: pour a bucket over this wildfire and backport a security fix. 2019-07-09 16:08:38 +00:00
spidermonkey185 PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
spl Recursive revbump from textproc/icu 2019-04-03 00:32:25 +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-jdk7 Add jhat to JAVA_WRAPPERS. Bump PKGREVISION 2018-09-19 18:18:30 +00:00
sun-jre7 Use https for oracle.com. 2019-07-10 10:37:13 +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 Use https for swi-prolog.org. 2019-07-10 10:32:05 +00:00
swi-prolog-packages swi-prolog-packages: PLIST.Linux catchup for version 8.x 2019-03-25 19:53:02 +00:00
tcl Recursive revbump from textproc/icu 2019-04-03 00:32:25 +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 all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
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: update to 0.44.3. 2019-04-17 10:01:05 +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
zig zig: updated to 0.4.0 2019-06-02 15:02:27 +00:00
Makefile Add lang/cbmbasic 2019-07-08 06:47:34 +00:00