pkgsrc/lang
enami 99413d2ce9 Update gauche to 0.9.5
Release Notes:

Better R7RS conformance

  * Keyword-symbol integration: Gauche keywords (e.g. :key) can be symbols
    that are automatically bound to itself. It breaks the backward
    compatibility in some corner cases, however, so we haven't make the
    change in effect by default in 0.9.5. Setting the environment variable
    GAUCHE_KEYWORD_IS_SYMBOL turns on this feature. See Keywords, for the
    details. We urge you to test your code with this feature turned on,
    for pretty soon (probably in the next release) we'll make this feature
    effective by default.
  * R7RS raise is now conformant of R7RS (which is slightly different from
    Gauche's builtin raise, which is srfi-18 conformant).

New modules and procedures

  * Renamed modules (old names are still valid, but new code should use
    the new names):
      + Data structure implementations are now named data.*; so
        util.queue, util.sparse, util.trie are renamed to data.queue,
        data.sparse, data.trie.
      + Module text.unicode is renamed to gauche.unicode, for it's
        essential for R7RS support.
  * New modules:
      + data.cache - Cache
      + data.heap - Heap
      + data.ring-buffer - Ring buffer
      + data.imap - Immutable map
      + data.ideque - Immutable deque
      + text.console: Simple console control module, works on both
        vt100-ish terminals and Windows console. Try examples/snake.scm to
        see it in action.
      + util.dominator - Find a dominator tree of a directed graph.
      + util.levenshtein - Calculate various edit-dinstances.
      + util.unification - Unification algorithm.
  * Low-level hygienic macro support by er-macro-transformer.
  * New builtin macros and procedures:
      + and-let1.
      + macroexpand-all - Expands everything in the given form.
      + sys-available-processors - query # of processor cores at runtime.
      + symbol-append.
      + sys-getgroups, sys-mkdtemp.
      + debug-label - Get unique label of an object.
      + length<?, length>?, length>=?, length=? - We had length<=?, so why
        not?
      + encode-float, inverse of decode-float.
  * In gauche.uvector:
      + New procedures:string->u32vector!, string->s32vector!,
        make-uvector, port->uvector
      + Generic accessor and mutator uvector-ref, uvector-set!.
  * In gauche.sequence:
      + New searching procedures - sequence-contains,
        break-list-by-sequence, break-list-by-sequence!, sequence->
        kmp-stepper.
      + New utilities - common-prefix, common-prefix-io.
  * In gauche.array: Add constructors u8array, etc., for the consistency.
  * In gauche.lazy: lappend-map
  * In gauche.generator: gflatten, uvector->generator.
  * In gauche.process:
      + run-process-pipeline - for easier pipelining.
      + shell-tokenize-string.
  * In gauche.termios: sys-termios-copy
  * In gauche.test:
      + test-none-of - As an expected value.
      + test-script - To test script files.
  * In gauche.vport: List ports are added. See open-input-char-list,
    open-input-byte-list.
  * In data.queue: mtqueue-num-waiting-readers.
  * In data.trie: trie-longest-match.
  * In data.random: samples$, for random sampling.
  * In text.csv: Middle-layer procedures: csv-rows->tuples,
    make-csv-header-parser, make-csv-record-parser.
  * In rfc.uri: uri-ref to access components of uri conveniently.
  * In rfc.http: http-status-code->description.

Added srfi supports

  * srfi-69: Basic hash tables
  * srfi-111: Boxes
  * srfi-112: Environment inquiry
  * srfi-113: Sets and Bags
  * srfi-114: Comparators
  * srfi-117: Mutable queues
  * srfi-118: Simple adjustable-size strings
  * srfi-121: Generators - Covered by gauche.generator.
  * srfi-128: Comparators (reduced) - the comparator is actually built-in
    to Gauche's core, so that other built-in mechanism such as hashtables,
    treemaps, sort, etc. can take comparators.
  * srfi-131: ERR5RS Record Syntax (reduced) - Subset of gauche.record.
  * srfi-133: Vector library
  * srfi-134: Immutable deques - Covered by data.ideque.

More pleasant interactive experience

  * Better error message while loading/compiling, using <mixin-condition>
    mechanism. Details.
  * Improved describe.
  * Toplevel REPL commands. See blog entry, or see the manual section
    "Working in REPL"
  * Scheme-defined procedures maintain source code and source location. It
    can be queried by source-code and source-location. The source location
    is also shown by describe. (Source code isn't kept for precompiled
    Scheme code for now.)
  * Online REPL document (info procedure, or ,info/,doc toplevel command)
    now shows just the named entry.
  * Experimental support of line-editing. If the environment variable
    GAUCHE_READ_EDIT is set and the terminal is capable, you can use line
    editing (with emacs-like key binding). This feature still in early
    development stage and has number of known issues---especially,
    multiline edit only partially work. If you're brave, give it a shot,
    but don't blame me if your REPL explodes.
  * You can invoke editor from repl by (ed file-or-procedure) (see ed). If
    the source location is known, you can directly jump to the source of
    the procedure, edit, and reload it.
  * Now REPL consumes the trailing newline of input S-expr; that is, when
    you type (read-line) on REPL, it waits for your input. Before, REPL
    didn't consume the trailing newline, so (read-line) immediately
    returned when it sees the newline character left in the input buffer,
    but that confused users.
  * use, select-module, export, import - Now these forms evaluate to zero
    values instead of #<undef>, for less cluttering of REPL.

Other notable improvements

  * gauche.configure: More feature tests on compilers and linking. Start
    using package.scm for the source of package metainformation.
  * Extended number syntax:
      + You can insert _ in prefixed numeric literal for readability, e.g.
        #b1101_1000_0001_1101.
      + Polar notation of numeric literal recognize pi suffix, e.g.
        2@0.5pi => 0.0+2.0i.
      + The reader recognizes CL-ish #<radix>r syntax, e.g. #3r121 for 121
        on base 3 (which is 16 in decimal).
  * Hashtables are now salted, meaning, it uses different hash functions
    at least for each invocation of the program, so that it is immune to
    the hash collision attack. The hash function is deprecated, replaced
    by default-hash, portable-hash and legacy-hash. See the manual entry
    for the details.
  * sys-sleep, sys-nanosleep: Changed to retry sleep/nanosleep by default
    if it is interrupted by as signal.
  * A new debug special reader macro: #?,, which can be used as #?,(proc
    arg ...). When evaluated, it displays the form (proc arg ...) and each
    value of arg, then calls proc with those arguments and displays the
    return value(s). Similar to #?= but you can also check the actual
    value of arguments. The #?= stub is also improved to show the thread
    from which it is displaying.
  * gauche.vport: open-output-uvector now takes an option to make the
    output buffer extendable.
  * load searches .sld suffix as well, as some other R7RS implementations
    do.
  * Stack trace now works for threads (but you have to call report-error
    within guard clauses explicitly, for by default unhandled error is
    propagated to the thread that calls thread-join!).
  * gauche.uvector: s8vector->string and u8vector->string now take
    optional 'terminator' argument, convenient to extract NUL-terminated
    string from fixed size buffer.
  * gauche.net: More flexible port number selection in make-server-socket
    and make-server-sockets.
  * data.sparse: Allow default value per vector (a sparse vector returns
    its default value when unset element is accessed).
  * rfc.http: Handles ipv6-style server address spec, e.g. [::1]:8888.
  * file.util: copy-file - Now takes :if-exists and :append keyword
    arguments.
  * crypt.bcrypt: Update bcrypt implementation and changed the default
    from 2a to 2b.
  * gauche.termios: Support mintty on MSYS.
  * rfc.tls: Add basic server-side certificate support.

Changes that may alter the behavior of existing code

  * gauche.generator: gtake - changed optional argument spec to match
    srfi-121. Existing code that needs the old behavior can use a new
    procedure gtake*.
  * If a hygienic macro inserts a fresh toplevel identifier, that
    identifier is renamed. E.g. if you say

    (define-syntax define-x (syntax-rules () ((_) (define x #t))))

    and then

    (define-x)

    the toplevel x is renamed and can't be referred to from outside. This
    is not explicitly specified in R7RS, but renaming is consistent with
    hygiene.
  * U+180e Mongolian Vowel Separator is no longer treated as a whitespace
    character, since Unicode 6.3.0 changed its category from Zs to Cf.
  * when, unless - Now they require at least one expr in their body.
  * require: Now loads a file into a special module, instead of #<module
    gauche>. This may catch an error that was previously ignored. See the
    manual entry for the details.
  * include, include-ci: Now relative pathnames, including ones that begin
    with ./ or ../, are taken relative to the includer file. Before, files
    beginning with ./ and ../ are treated specially, just like load. But
    it is less useful for include and just increases confusion.

Bug fixes

  * Fixed numerous bugs in hygienic macro expander.
  * When a module exports an inherited binding from renaming, it wasn't
    searched properly.
  * util.match: Fixed a bug that doesn't handle match expressions
    generated by hygienic macros.
  * Make -fcase-fold option affect REPL as well.
  * fixnum-width: It returned a number one smaller than the correct value.
  * Fixed a number reader bug handling very big or very small exponent.
  * srfi-13: Fixed a bug in xsubstring when 'from' argument is negative.
  * parameterize: Fixed a bug that failed to restore parameter values in
    some edge cases.
2016-10-13 00:30:13 +00:00
..
a60 Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
abcl Update to ABCL 1.3.3 2015-12-09 20:48:43 +00:00
algol68g Recursive bump for all users of pgsql now that the default is 95. 2016-10-09 21:41:55 +00:00
asn1c Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
awka Add patch comments. 2015-12-29 23:34:43 +00:00
baci Add patch comments. 2015-12-29 23:34:43 +00:00
basic256 Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
boomerang Recursive revbump associated with ocaml update. 2016-05-05 11:45:36 +00:00
brandybasic Add patch comments. 2015-12-29 23:34:43 +00:00
bwbasic Add patch comments. 2015-12-29 23:34:43 +00:00
caml-light Add patch comments. 2015-12-29 23:34:43 +00:00
camlp4 Updated camlp4 to version 4.03+1, to be compatible with ocaml 4.03.0. 2016-05-05 11:03:26 +00:00
camlp5 Updated package to latest version, 6.16. Changes include: 2016-05-06 10:50:55 +00:00
ccsh Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
cdl3 Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
Cg-compiler Don't use PREFIX/share/doc/html, which is deprecated. PKGREVISION -> 1. 2015-12-30 02:59:07 +00:00
chicken Update to CHICKEN 4.11.0 2016-06-08 14:44:54 +00:00
cim Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
cint Upgrade cint from 5.15.174 to 5.16.19 2016-09-28 10:00:27 +00:00
clang Update llvm and clang* to 3.8.1. 2016-07-26 12:43:51 +00:00
clang-static-analyzer Update llvm and clang* to 3.8.1. 2016-07-26 12:43:51 +00:00
classpath fix accidentally broken patch in prior commit 2016-01-06 07:21:31 +00:00
classpath-gui Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
clisp Recursive bump for all users of pgsql now that the default is 95. 2016-10-09 21:41:55 +00:00
clojure Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
coq Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
coreclr Extract using bsdtar. 2016-08-26 17:18:03 +00:00
cparser Add patch comments. 2015-12-29 23:34:43 +00:00
cu-prolog Add patch comments. 2015-12-29 23:34:43 +00:00
duktape Add duktape 1.5.1, an MIT-licensed Javascript engine. 2016-05-05 03:59:48 +00:00
eag Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
ecl LAGS are not FLAGS. 2016-07-05 01:26:59 +00:00
eieio Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
elisp-manual Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
elk Add patch comments. 2015-12-29 23:34:43 +00:00
embryo Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
erlang Remove entries which are (no longer?) installed on NetBSD/i386 or NetBSD/amd64. 2016-10-04 08:16:13 +00:00
erlang-doc Update lang/erlang* to 19.1. 2016-10-02 10:12:36 +00:00
erlang-luerl Import luerl-0.2 as lang/erlang-luerl. 2016-04-22 14:54:58 +00:00
erlang-man Update lang/erlang* to 19.1. 2016-10-02 10:12:36 +00:00
f2c Add patch comments. 2015-12-29 23:34:43 +00:00
ficl Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
focal Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
fort77 Fixed pkglint warnings about $(VARIABLES). 2016-07-24 21:01:27 +00:00
g95 g95: now that I understand why -mips1 is chosen here, clarify it in the 2016-10-02 23:26:39 +00:00
gambc Drop CVP memory use workaround for clang, no longer needed with 3.8. 2016-03-25 21:11:47 +00:00
gauche Update gauche to 0.9.5 2016-10-13 00:30:13 +00:00
gawk Support SunOS in C99 mode. 2016-09-08 16:16:15 +00:00
gcc-aux Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc2 Add patch comments. 2015-12-29 23:34:43 +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 build on MKGCC=no systems 2015-03-21 01:17:08 +00:00
gcc3-c++
gcc3-f77
gcc3-objc
gcc5 lang/gcc5: add patch to avoid declaring a prototype of host_detect_local_cpu 2016-09-30 04:06:07 +00:00
gcc5-aux lang/gcc5-aux: Upgrade version 20150422 => 20160603 (GCC 5.1 => 5.4) 2016-08-28 17:59:36 +00:00
gcc5-libs gcc5: netbsd-only: unconditionally disable libssp, use a saner specfile. 2016-09-06 05:08:48 +00:00
gcc6 Remove the whitespace between $(LINKER_RPATH_FLAG) and the path. 2016-09-30 17:17:37 +00:00
gcc6-libs add packages gcc6, gcc6-libs (GCC 6.2.0), based on wip/gcc6snapshot 2016-09-12 22:13:54 +00:00
gcc34 Do not build with the gcc-java enabled by default. 2016-09-30 13:16:59 +00:00
gcc44 Do not build with the gcc-java enabled by default. 2016-09-30 13:16:59 +00:00
gcc45 gcc45: use a more reasonable specfile for netbsd 2016-09-10 13:59:31 +00:00
gcc46 gcc46: use a more reasonable specfile for netbsd 2016-09-06 13:57:02 +00:00
gcc46-libs gcc46-libs: bump PKGREVISION further than gcc46 2016-09-06 14:01:20 +00:00
gcc47 Do not build with the gcc-java enabled by default. 2016-09-30 13:16:59 +00:00
gcc47-libs gcc47: don't use PCH for libstdc++ on gcc5, it causes hangs during configure. 2016-09-06 12:00:33 +00:00
gcc48 Do not build with the gcc-java enabled by default. 2016-09-30 13:16:59 +00:00
gcc48-libs gcc48: update to 4.8.5 2016-09-12 18:42:04 +00:00
gcc49 Do not build with the gcc-java enabled by default. 2016-09-30 13:16:59 +00:00
gcc49-libs Reset PKGREVISION after 4.9.4 update. 2016-09-06 12:38:35 +00:00
gforth Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
ghc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
ghc-bootstrap Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
ghc7 Bump PKGREVISION for NOT_PAX_MPROTECT_SAFE 2016-09-10 23:23:20 +00:00
gnat_util Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
gnucobol Don't remove -g, especially when done badly, breaking -gfoo. 2016-01-07 16:01:10 +00:00
go Patch a subtle data corruption issue where the HTTP/2 client sometimes 2016-09-17 15:56:58 +00:00
go14 Backport fixes for compiling under macOS Sierra from 2016-10-04 18:45:22 +00:00
gpc Add patch comments. 2015-12-29 23:34:43 +00:00
gprolog Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
guile Improve HOMEPAGE. 2016-09-19 11:21:11 +00:00
guile20 Handle PLIST difference on Darwin. 2016-09-28 09:04:41 +00:00
gwydion-dylan Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
heirloom-awk
hugs Adjust checks for _USE_DESTDIR != no or incorrect references to 2016-04-10 16:39:27 +00:00
icc11
icon Add patch comments. 2015-12-29 23:34:43 +00:00
inform Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
intercal Fix PLIST after update. No version bump as it didn't build. Hi mef :-) 2016-09-08 01:48:39 +00:00
ja-gawk Add patch comments. 2015-12-29 23:34:43 +00:00
jamvm Add patch comments. 2015-12-29 23:34:43 +00:00
japhar Add patch comments. 2015-12-29 23:34:43 +00:00
jasmin Add patch comments. 2015-12-29 23:34:43 +00:00
java-lang-spec Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
java-vm-spec Moved documentation from share/doc/html to share/doc/java-vm-spec. 2016-07-24 20:35:20 +00:00
jikes Add patch comments. 2015-12-29 23:34:43 +00:00
jimtcl Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
jini Update homepage. 2015-03-14 17:58:29 +00:00
joos Add patch comments. 2015-12-29 23:34:43 +00:00
js Add patch comments. 2015-12-29 23:34:43 +00:00
kaffe Add patch comments. 2015-12-29 23:34:43 +00:00
kaffe-esound
kaffe-x11 Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
kali Needs -lnsl on Solaris. 2016-09-19 05:52:45 +00:00
konoha Revbump post boost update 2016-10-07 18:25:29 +00:00
ksi Add patch comments. 2015-12-29 23:34:43 +00:00
libduktape Add libduktape, an MIT-licensed Javascript engine - this is the library 2016-05-05 03:57:26 +00:00
libLLVM Update libLLVM to 3.8.1. 2016-08-02 22:39:21 +00:00
libLLVM34 Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
librep Add patch comments. 2015-12-29 23:34:43 +00:00
libtcl-nothread Add patch comments. 2015-12-29 23:34:43 +00:00
libunwind Updated libunwind to 3.8.1. 2016-08-03 09:06:44 +00:00
likepython Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
llvm Mention other llvm packages in pkgsrc to update. 2016-08-03 09:07:39 +00:00
lua Instead of having only lua.pc, provide both the versioned pkg-config file 2015-07-20 11:30:54 +00:00
lua51 Add patch comments. 2015-12-29 23:34:43 +00:00
lua52 Add patch comments. 2015-12-29 23:34:43 +00:00
lua53 Update lang/lua53 to version 5.3.3. 2016-06-06 22:18:07 +00:00
LuaJIT Remove manual OPSYSVARS additions which are now part of the default set. 2016-02-25 08:27:02 +00:00
LuaJIT2 LuaJIT isn't pax mprotect safe. 2016-08-21 21:34:57 +00:00
lush Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
maude Add patch comments. 2015-12-29 23:34:43 +00:00
mawk Use OPSYSVARS. 2016-02-25 14:42:55 +00:00
mercury Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
micropython Regen. 2016-03-25 21:11:16 +00:00
minischeme Add patch comments. 2015-12-29 23:34:43 +00:00
mit-scheme-bin Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
mono Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
mono-basic Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
mono2 SunOS updates to really use c99 and update mono-sigcontext.h to use 2016-08-15 10:24:31 +00:00
moscow_ml Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
mpd Add patch comments. 2015-12-29 23:34:43 +00:00
nawk Don't use __attribute__((__noreturn__)) without compiler guards. 2015-12-17 21:27:53 +00:00
newlisp Pass --mandir. Fixes PKGMANDIR. 2016-04-01 16:22:15 +00:00
newsqueak Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
nhc98 Add patch comments. 2015-12-29 23:34:43 +00:00
nim Import nim-0.14.2 as lang/nim 2016-09-18 01:02:43 +00:00
nodejs Update lang/nodejs to 6.7.0 2016-09-28 11:10:44 +00:00
nodejs4 Update lang/nodejs4 to 4.6.0. 2016-09-28 11:09:47 +00:00
nqp Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
nuitka Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
objc Use OPSYSVARS. 2016-02-25 14:42:55 +00:00
ocaml Update HOMEPAGE. 2016-08-24 10:52:46 +00:00
onyx Add patch comments. 2015-12-29 23:34:43 +00:00
oo2c Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
open-cobol-ce Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
opencobol Add patch comments. 2015-12-29 23:34:43 +00:00
openjdk7 Recursive bump for cups openssl -> gnutls change. 2016-09-20 11:12:22 +00:00
openjdk8 Recursive bump for cups openssl -> gnutls change. 2016-09-20 11:12:22 +00:00
opensource-cobol Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
oracle-jdk8 Update to 8.0.102 based on a update from prlw1@ 2016-09-19 06:57:49 +00:00
oracle-jre8 Update to 8.0.102 based on a update from prlw1@ 2016-09-19 06:57:49 +00:00
ossp-js Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
p2c Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
p5-Switch Update to 2.17 2016-07-29 12:10:19 +00:00
parrot Don't use -Werror=undef, it is quite harmful with random third party 2016-10-10 21:11:08 +00:00
pcc Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
pcc-current Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
pear Bump PKGREVISION. 2016-09-12 15:43:00 +00:00
perl5 Fix for OS X 10.12, where clock_gettime() is defined. 2016-08-31 13:24:06 +00:00
pfe Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
pforth Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
php Update php71 to 7.1.0RC3 2016-10-08 09:16:09 +00:00
php56 Update php56 to 5.6.26 (PHP 5.6.26). 2016-09-16 16:09:24 +00:00
php70 Update php70 to 7.0.11 (PHP 7.0.11). 2016-09-16 16:10:28 +00:00
php71 Update php71 to 7.1.0RC3 2016-10-08 09:16:09 +00:00
picoc Add patch comments. 2015-12-29 23:34:43 +00:00
pict Recursive revbump associated with ocaml update. 2016-05-05 11:45:36 +00:00
polyml Update to Poly/ML 5.6. 2016-03-01 19:50:10 +00:00
py-basicproperty Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-byterun Set EGG_NAME and simplify PLIST. 2016-09-17 23:46:37 +00:00
py-cxfreeze Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-hy Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-pyrex Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-pythonz Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-six Updated maintainer's email address 2016-08-07 16:06:24 +00:00
py27-html-docs Update lang/py27-html-docs to 2.7.12 2016-07-06 15:22:35 +00:00
py34-html-docs Update lang/py34-html-docs to 3.4.5 2016-07-12 10:34:42 +00:00
py35-html-docs Import py35-html-docs-3.5.2 as lang/py35-html-docs 2016-07-12 10:13:59 +00:00
python Let print-PLIST generate python version agnostic PYVERSSUFFIX in filenames. 2016-08-28 09:40:35 +00:00
python27 Bump PKGREVISION for previous 2016-07-26 16:45:33 +00:00
python34 Forward port patches from python27 for dlopen(3) 2016-09-18 12:36:41 +00:00
python35 Forward port patches from python27 for dlopen(3) 2016-09-18 12:44:49 +00:00
qore email style fix 2016-08-07 10:12:58 +00:00
racket Revert previous. 2016-07-17 21:46:54 +00:00
racket-textual PATCHDIR must be absolute path, avoid unnecessary rebuilds for bulk 2016-04-06 12:39:37 +00:00
rakudo-star Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
rcfunge Add patch comments. 2015-12-29 23:34:43 +00:00
rexx-imc Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
rexx-regina Add patch comments. 2015-12-29 23:34:43 +00:00
ruby Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby-coffee-script Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
ruby-coffee-script-source Update ruby-coffee-script-source to 1.10.0. 2015-12-12 14:41:21 +00:00
ruby-doc-stdlib Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
ruby-execjs Since ruby-execjs require JavaScript engine at runtime, add dependency to 2015-11-18 16:11:46 +00:00
ruby18 Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby18-base Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby21 Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby21-base Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby22 Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby22-base Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby23 Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby23-base Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
runawk Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
rust Restore accidentally deleted comment and use .NetBSD suffix 2016-09-13 12:37:08 +00:00
sablevm Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
sablevm-classpath Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
sablevm-classpath-gui Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
sather Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
sbcl Needs _KERNTYPES on NetBSD. 2016-10-12 11:35:48 +00:00
scala Update to 2.11.8 2016-03-13 03:16:41 +00:00
scheme48 Update lang/scheme48 to 1.9.2. 2015-11-14 14:14:46 +00:00
scm Not MAKE_JOBS_SAFE. 2016-09-06 20:54:00 +00:00
see Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
sigscheme "-std=c99" not "--std=c99" 2016-06-11 23:39:28 +00:00
siod Use OPSYSVARS. 2016-02-25 14:42:55 +00:00
smalltalk Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
smlnj Bump PKGREVISION for patches. 2016-07-03 19:38:27 +00:00
smlnj11072 Sync new patches from main smlnj package; they all apply. 2016-07-03 19:35:36 +00:00
snobol Pass --mandir. Fixes PKGMANDIR. 2016-04-01 12:24:14 +00:00
spidermonkey Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
spidermonkey17 spidermonkey17: revert previous, reject n32 2016-10-05 02:52:06 +00:00
spl Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
squeak Use pkgsrc-standard spelling for LICENSE. 2016-10-03 07:57:24 +00:00
squeak-vm Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
sr Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
sr-examples Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
stalin Add patch comments. 2015-12-29 23:34:43 +00:00
STk Add patch comments. 2015-12-29 23:34:43 +00:00
sun-jdk6 Set CHECK_SHLIBS_SUPPORTED=no for both the JRE and JDK, a bug in check-shlibs 2016-03-10 19:20:15 +00:00
sun-jdk7 restore SunOS distinfo checksums 2016-08-19 14:45:59 +00:00
sun-jre6 Set CHECK_SHLIBS_SUPPORTED=no for both the JRE and JDK, a bug in check-shlibs 2016-03-10 19:20:15 +00:00
sun-jre7 Add jcmd to JAVA_WRAPPERS 2016-08-10 22:26:46 +00:00
swi-prolog
swi-prolog-jpl Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
swi-prolog-lite Add patch comments. 2015-12-29 23:34:43 +00:00
swi-prolog-packages The recent libarchive update changed the library major. Increase the 2016-07-01 17:55:22 +00:00
tcl Bump sqlite3 dependency to 3.13.0 2016-09-05 13:24:38 +00:00
tcl-expect Fix shared library name on Darwin 2016-03-06 14:13:36 +00:00
tcl-otcl Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
tcl85 Update Tcl to 8.5.19. 2016-03-03 21:16:46 +00:00
tinyscheme Add patch comments. 2015-12-29 23:34:43 +00:00
ucblogo Add patch comments. 2015-12-29 23:34:43 +00:00
umb-scheme Add patch comments. 2015-12-29 23:34:43 +00:00
utilisp Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
vala Update vala to 0.32.0 2016-04-10 18:49:42 +00:00
vscm Add patch comments. 2015-12-29 23:34:43 +00:00
vslisp Mark as MAKE_JOBS_SAFE=no for race conditions. While here, fix ctype 2016-01-17 15:14:47 +00:00
wsbasic Add patch comments. 2015-12-29 23:34:43 +00:00
yabasic Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
yap The recent libarchive update changed the library major. Increase the 2016-07-01 17:55:22 +00:00
Makefile + lang/nim 2016-09-18 01:04:13 +00:00