pkgsrc/lang
leot 09313fdd5a ecl: Update to 16.1.3
pkgsrc changes:
 - Remove clx option. Bundled clx is no longer provided by ecl

Changes:
16.1.3
------
** Announcement
Dear Community,

After almost a year of development we are proud to present a new release of
ECL tagged with version =16.1.3=. All changes are backward compatible
fixing bugs and other issues, implementing new interfaces and cleaning up
the code base.

ECL manual has been updated in a few places. Work on a new documentation is
still pending. It is still incomplete, but you may check see it here:
https://common-lisp.net/project/ecl/static/ecldoc/.

Before this release we have performed extensive tests on various platforms
(Linux, FreeBSD, OpenBSD, NetBSD, OSX, Windows MSVC, Windows MinGW, Windows
Cygwin, Android and Haiku). For details please consult
https://gitlab.com/embeddable-common-lisp/ecl/issues/307. Extra attention
has been paid to Windows testing to improve that platform support.

Best regards,
ECL Development Team

** API changes
- Added better interface for package-locks.

  Introduced functions:
  =ext:package-locked-p package=
  =ext:lock-package package=
  =ext:unlock-package package=
  =ext:without-package-locks=
  =ext:with-unlocked-package=

  To use these functions user has to require the module
  #+BEGIN_SRC lisp
    (require '#:package-locks)
  #+END_SRC

  =defpackage= accepts new option =lock= to allow locking package on
  creation:

  #+BEGIN_SRC lisp
    (defpackage foo (:lock t))
  #+END_SRC

- =mp:holding-lock-p=: introduce new function for multiprocessing. Function
  verifies if lock is hold by the thread which calls the function. Usage:
  =(mp:holding-lock-p my-lock)=.

- =make-random-state=: fix problem with simple-vectors. The correct
  initialization types for =make-random-state= are: =(OR RANDOM-STATE
  FIXNUM (MEMBER T NIL))=.

  Initializing a random state with an appropriate array (element type and
  arity dependent on platform) is also possible.

- =ext:random-state-array=: new extension for random-states. Usage:
  =(ext:random-state-array random-state)=.

- =ext:terminate-process=: new extension for external processes. Usage:
  =(ext:terminate-process process)= with a second, optional boolean
  argument whenever termination should be forced or not.

** Enhancements
- Implemented =CDR-7=.
  https://common-lisp.net/project/cdr/document/7/index.html

- implemented CDRs: =CDR-1=, =CDR-5=, =CDR-14=. Both =CDR-1= and =CDR-5=
  were already implemented, CDR-14 made us to list them in =*features*=
  (https://common-lisp.net/project/cdr/document/14/index.html).

- if ECL is build with =--with-cxx= option, =:CXX-CORE= is present in
  =*features*=.

- deprecated configure option =--with-local-gmp= has been removed - use
  =--enable-gmp= (defaults to auto).

- configure options has been revised.

- ASDF has been upgraded to version 3.1.7.26 (with a few patches scheduled
  for 3.2.0).

- bundled CLX has been purged. Lately I've fixed ECL support on portable
  CLX maintained by sharplispers on https://github.com/sharplispers/clx
  (available via QuickLisp).

- initial port for the Haiku platform. The port is done by Kacper Kasper's
  work, one of Haiku developers. Threads are not supported yet.

- refactored ECL internal tests framework. Tests in =src/tests= are now
  asdf-loadable (with =load-source-op=) and divided into test suites. =make
  check= target runs all regression and feature tests which aren't supposed
  to fail.

- removed 15000 lines of obsolete code. Files not included in the
  buildsystem but lingering in the codebase or options failing to
  build. All info is added in the new documentation in the section "Removed
  interfaces".

- improved man page and help output. Man page now contains up-to-date list
  of flags, as well as explanation of flag's behavior.

- deprecated long flags with one dash, added two-dash version. Flags that
  aren't one-character, but start with one dash (e.g. =-eval=) are now
  deprecated; long version =--eval= was added instead.

- indented C/C++ code to follow emacs's gnu C style.  This is a first step
  towards coding standards in the documentation. Additionally all in the
  src/c/ directory are listed in the appropraite documentation section
  (new-doc).

- refactored =list_current_directory in unixfsys.d=. Function was
  obfuscated with ifdefs with non-even pairs of =#\{= and =#\}=.

** Issues fixed
- ECL signals floating point exceptions in top-level console.

- =mp:rwlock= is treated as built-in class (previously process crashed if
  =class-of= was called on such object).

- ECL builds now succesfully with =--with-ieee-fp=no= option.

- =ext:file-stream-fd=: doesn't cause an internal-error if called with
  something not being a =file-stream= (signals a =SIMPLE-TYPE-ERROR=
  condtition).

- =stable-sort=: bugfix and improvement in speed. Adapted from SBCL by
  Diogo Franco.

- typep: accept =*= type specifier as abbreviation of =T= as described in
  =2.4.3 Type Specifiers= of the specification.

- MOP: fix problemes when redefining non-standard and anonymous
  classes. Bugs identified and fixed by Pascal Costanza.

- =getcwd=: fix issue with too long pathname. This fixes the regression,
  which crashed ECL at start when pathname exceeded 128 characters limit.

- =make-random-state=: fix a problem with simple-vectors. Until now =#$=
  reader macro accepted simple vectors as an argument, what lead to bugs if
  vector didn't match specific requirements like the element type or the
  arity. Now we sanitize this.

- =make-load-form=: provide implementation for random-state objects.

- thread fix on msvc: on windows importing thread was closing the thread
  handler so the thread wakeup wasn't working because the handler is not
  more valid.

- import thread wasn't set upping a proper environment: on some case the
  thread was mistakenly thinking that the thread was already registered.

- =ECL_HANDLER_CASE= and =ECL_RESTART_CASE= didn't work as expected. Bug
  identified and fixed by Vadim Penzin.
2019-03-01 13:30:52 +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/DESCR: reword statements that are no longer true 2019-01-27 21:11:07 +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 compiler-rt: fix PLIST.Darwin after OS_DIR change 2019-01-31 06:55:37 +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 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 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 21.2.6 2019-02-25 12:17:24 +00:00
erlang-doc erlang-doc: Update to 21.2 2019-01-23 12:46:22 +00:00
erlang-luerl lang/erlang-luerl: Update to 0.3. 2018-03-24 16:29:51 +00:00
erlang-man erlang-man: Update to 21.2 2019-01-23 11:51:23 +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 Add the netbsd-stdint.h header for NetBSD/alpha 2019-01-20 09:19:44 +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 gcc7[-libs]: updated to 7.4.0 2019-01-05 00:39:13 +00:00
gcc7-libs gcc7[-libs]: updated to 7.4.0 2019-01-05 00:39:13 +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 lang/gcc48-libs: bump PKGREVISION (NFC) 2019-01-16 04:31:39 +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 ghc7: not aslr safe, either. bump PKGREVISION 2019-01-10 18:11:56 +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 go110 to 1.10.8 (security). 2019-01-24 09:33:08 +00:00
go-hcl Revbump Go packages after lang/go111 update. 2019-01-24 10:00:33 +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.8 (security). 2019-01-24 09:33:08 +00:00
go111 Update go111 to 1.11.5 (security). 2019-01-24 09:26:21 +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
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: Darwin rpath fix 2019-01-27 00:07:32 +00:00
libLLVM4 libLLVM4: Enable the PKG_OPTIONS support again 2019-01-26 21:08:55 +00:00
libLLVM34 Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
librep librep: update to 0.92.7 2019-01-04 02:06:05 +00:00
libtcl-nothread
libunwind llvm and friends: updated to 7.0.1 2018-12-23 00:11:39 +00:00
likepython
llvm Bump PKGREVISION for PLIST change 2019-02-18 16:56:40 +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 20171017 2019-02-15 19:51:43 +00:00
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 nodejs: updated to 10.15.2 2019-03-01 08:47:07 +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 npm: updated to 6.8.0 2019-02-14 10:36:40 +00:00
nqp Update nqp to 2018.12. 2019-02-16 19:39:02 +00:00
nuitka
objc
ocaml Updated lang/ocaml to compile on aarch64 and revbump. 2019-01-07 18:52:23 +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: Disable relro on SunOS. 2019-02-24 16:43:28 +00:00
opensource-cobol Use the curses framework. 2017-01-05 15:36:24 +00:00
oracle-jdk8 Update to 8.0.202 2019-01-22 03:51:41 +00:00
oracle-jre8 oracle-jre8: Remove obsolete libkcms.so 2019-01-24 09:35:07 +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: fix broken package with previous commit 2019-02-07 13:40:57 +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/php73: update to 7.3.2 2019-02-07 14:06:41 +00:00
php56 lang/php56: udate to 5.6.40 2019-01-12 15:01:34 +00:00
php71 lang/php71: update to 7.1.26 2019-01-12 14:56:47 +00:00
php72 lang/php72: update to 7.2.15 2019-02-07 14:05:05 +00:00
php73 lang/php73: update to 7.3.2 2019-02-07 14:06:41 +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 py-js2py: updated to 0.60 2019-02-18 12:57:21 +00:00
py-jsparser Follow some redirects. 2017-09-04 18:08:18 +00:00
py-mypy py-mypy: updated to 0.670 2019-02-15 13:23:54 +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.4 2019-02-19 12:31:55 +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.5 2019-01-04 23:00:10 +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 to 3.6.8 2018-12-31 14:24:45 +00:00
py37-html-docs py37-html-docs: Update to 3.7.2 2018-12-31 14:03:44 +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 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 lang/ruby/gem.mk: improve message 2019-02-09 15:22:46 +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 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
ruby23 Replace more remaining RUBY_VERSION_FULL to RUBY_VERSION. 2017-05-30 15:54:11 +00:00
ruby23-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 apply the gcc6.5 and arm64 hack to gcc [67].*. fixes arm64 builds on gcc7. 2019-02-07 10:07:21 +00:00
ruby25 lang/ruby25: add ruby25 2.5.0 2018-01-08 14:20:05 +00:00
ruby25-base lang/ruby25-base: add missing document installation 2019-02-14 06:03:50 +00:00
ruby26 ng/ruby26: forgot to commit DESCR 2019-02-14 06:01:02 +00:00
ruby26-base apply the gcc6.5 and arm64 hack to gcc [67].*. fixes arm64 builds on gcc7. 2019-02-07 10:07:21 +00:00
runawk Update runawk to 1.6.1 2019-02-15 19:23:48 +00:00
rust Bump the bootstrap kit for armv7--netbsd-eabihf to 1.32.0. 2019-02-14 16:24:23 +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 lang/spidermonkey52: amend a comment 2019-01-16 04:24:28 +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*: Update to 8.0.1 2019-02-25 15:20:44 +00:00
swi-prolog-jpl swi-prolog*: Update to 8.0.1 2019-02-25 15:20:44 +00:00
swi-prolog-lite swi-prolog*: Update to 8.0.1 2019-02-25 15:20:44 +00:00
swi-prolog-packages swi-prolog*: Update to 8.0.1 2019-02-25 15:20:44 +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
zig zig: update to today's (2019-02-27) snapshot of master. 2019-02-27 10:46:16 +00:00
Makefile +zig 2019-02-17 12:34:21 +00:00