pkgsrc/lang
jaapb 16f61f7a1b Updated coq to latest version, 8.6. Changes include:
Changes from V8.6beta1 to V8.6
==============================

Kernel

- Fixed critical bug #5248 in VM long multiplication on 32-bit
  architectures. Was there only since 8.6beta1, so no stable release impacted.

Other bug fixes in universes, type class shelving,...

Changes from V8.5 to V8.6beta1
==============================

Kernel

- A new, faster state-of-the-art universe constraint checker.

Specification language

- Giving implicit arguments explicitly to a constant with multiple
  choices of implicit arguments does not break any more insertion of
  further maximal implicit arguments.
- Ability to put any pattern in binders, prefixed by quote, e.g.
  "fun '(a,b) => ...", "λ '(a,(b,c)), ...", "Definition foo '(x,y) := ...".
  It expands into a "let 'pattern := ..."

Tactics

- Flag "Bracketing Last Introduction Pattern" is now on by default.
- Flag "Regular Subst Tactic" is now on by default: it respects the
  initial order of hypothesis, it contracts cycles, it unfolds no
  local definitions (common source of incompatibilities, fixable by
  "Unset Regular Subst Tactic").
- New flag "Refolding Reduction", now disabled by default, which turns
  on refolding of constants/fixpoints (as in cbn) during the reductions
  done during type inference and tactic retyping. Can be extremely
  expensive. When set off, this recovers the 8.4 behaviour of unification
  and type inference. Potential source of incompatibility with 8.5 developments
  (the option is set on in Compat/Coq85.v).
- New flag "Shrink Abstract" that minimalizes proofs generated by the abstract
  tactical w.r.t. variables appearing in the body of the proof.
  On by default and deprecated. Minor source of incompatibility
  for code relying on the precise arguments of abstracted proofs.
- Serious bugs are fixed in tactic "double induction" (source of
  incompatibilities as soon as the inductive types have dependencies in
  the type of their constructors; "double induction" remains however
  deprecated).
- In introduction patterns of the form (pat1,...,patn), n should match
  the exact number of hypotheses introduced (except for local definitions
  for which pattern can be omitted, as in regular pattern-matching).
- Tactic scopes in Ltac like constr: and ltac: now require parentheses around
  their argument.
- Every generic argument type declares a tactic scope of the form "name:(...)"
  where name is the name of the argument. This generalizes the constr: and ltac:
  instances.
- When in strict mode (i.e. in a Ltac definition), if the "intro" tactic is
  given a free identifier, it is not bound in subsequent tactics anymore.
  In order to introduce a binding, use e.g. the "fresh" primitive instead
  (potential source of incompatibilities).
- New tactics is_ind, is_const, is_proj, is_constructor for use in Ltac.
- New goal selectors.  Sets of goals can be selected by listing integers
  ranges. Example: "1,4-7,24: tac" focuses "tac" on goals 1,4,5,6,7,24.
- For uniformity with "destruct"/"induction" and for a more natural
  behavior, "injection" can now work in place by activating option
  "Structural Injection". In this case, hypotheses are also put in the
  context in the natural left-to-right order and the hypothesis on
  which injection applies is cleared.
- Tactic "contradiction" (hence "easy") now also solve goals with
  hypotheses of the form "~True" or "t<>t" (possible source of
  incompatibilities because of more successes in automation, but
  generally a more intuitive strategy).
- Option "Injection On Proofs" was renamed "Keep Proof Equalities". When
  enabled, injection and inversion do not drop equalities between objects
  in Prop. Still disabled by default.
- New tactics "notypeclasses refine" and "simple notypeclasses refine" that
  disallow typeclass resolution when typechecking their argument, for use
  in typeclass hints.
- Integration of LtacProf, a profiler for Ltac.
- Reduction tactics now accept more fine-grained flags: iota is now a shorthand
  for the new flags match, fix and cofix.
- The ssreflect subterm selection algorithm is now accessible to tactic writers
  through the ssrmatching plugin.
- When used as an argument of an ltac function, "auto" without "with"
  nor "using" clause now correctly uses only the core hint database by
  default.

Hints

- Revised the syntax of [Hint Cut] to follow standard notation for regexps.
- Hint Mode now accepts "!" which means that the mode matches only if the
  argument's head is not an evar (it goes under applications, casts, and
  scrutinees of matches and projections).
- Hints can now take an optional user-given pattern, used only by
  [typeclasses eauto] with the [Filtered Unification] option on.

Typeclasses

- Many new options and new engine based on the proof monad. The
  [typeclasses eauto] tactic is now a multi-goal, multi-success tactic.
  See reference manual for more information. It is planned to
  replace auto and eauto in the following version. The 8.5 resolution
  engine is still available to help solve compatibility issues.

Program

- The "Shrink Obligations" flag now applies to all obligations, not only
  those solved by the automatic tactic.
- "Shrink Obligations" is on by default and deprecated. Minor source of
  incompatibility for code relying on the precise arguments of
  obligations.

Notations

- "Bind Scope" can once again bind "Funclass" and "Sortclass".

General infrastructure

- New configurable warning system which can be controlled with the vernacular
  command "Set Warnings", or, under coqc/coqtop, with the flag "-w". In
  particular, the default is now that warnings are printed by coqc.
- In asynchronous mode, Coq is now capable of recovering from errors and
  continue processing the document.

Tools

- coqc accepts a -o option to specify the output file name
- coqtop accepts --print-version to print Coq and OCaml versions in
  easy to parse format
- Setting [Printing Dependent Evars Line] can be unset to disable the
  computation associated with printing the "dependent evars: " line in
  -emacs mode
- Removed the -verbose-compat-notations flag and the corresponding Set
  Verbose Compat vernacular, since these warnings can now be silenced or
  turned into errors using "-w".

XML protocol

- message format has changed, see dev/doc/changes.txt for more details.

Many bug fixes, minor changes and documentation improvements are not mentioned
here.

Changes from V8.5pl2 to V8.5pl3
===============================

Critical bugfix

- #4876: Guard checker incompleteness when using primitive projections

Other bugfixes

- #4780: Induction with universe polymorphism on was creating ill-typed terms.
- #4673: regression in setoid_rewrite, unfolding let-ins for type unification.
- #4754: Regression in setoid_rewrite, allow postponed unification problems to remain.
- #4769: Anomaly with universe polymorphic schemes defined inside sections.
- #3886: Program: duplicate obligations of mutual fixpoints.
- #4994: Documentation typo.
- #5008: Use the "md5" command on OpenBSD.
- #5007: Do not assume the "TERM" environment variable is always set.
- #4606: Output a break before a list only if there was an empty line.
- #5001: metas not cleaned properly in clenv_refine_in.
- #2336: incorrect glob data for module symbols (bug #2336).
- #4832: Remove extraneous dot in error message.
- Anomaly in printing a unification error message.
- #4947: Options which take string arguments are not backwards compatible.
- #4156: micromega cache files are now hidden files.
- #4871: interrupting par:abstract kills coqtop.
- #5043: [Admitted] lemmas pick up section variables.
- Fix name of internal refine ("simple refine").
- #5062: probably a typo in Strict Proofs mode.
- #5065: Anomaly: Not a proof by induction.
- Restore native compiler optimizations, they were disabled since 8.5!
- #5077: failure on typing a fixpoint with evars in its type.
- Fix recursive notation bug.
- #5095: non relevant too strict test in let-in abstraction.
- Ensuring that the evar name is preserved by "rename".
- #4887: confusion between using and with in documentation of firstorder.
- Bug in subst with let-ins.
- #4762: eauto weaker than auto.
- Remove if_then_else (was buggy). Use tryif instead.
- #4970: confusion between special "{" and non special "{{" in notations.
- #4529: primitive projections unfolding.
- #4416: Incorrect "Error: Incorrect number of goals".
- #4863: abstract in typeclass hint fails.
- #5123: unshelve can impact typeclass resolution
- Fix a collision about the meta-variable ".." in recursive notations.
- Fix printing of info_auto.
- #3209: Not_found due to an occur-check cycle.
- #5097: status of evars refined by "clear" in ltac: closed wrt evars.
- #5150: Missing dependency of the test-suite subsystems in prerequisite.
- Fix a bug in error printing of unif constraints
- #3941: Do not stop propagation of signals when Coq is busy.
- #4822: Incorrect assertion in cbn.
- #3479 parsing of "{" and "}" when a keyword starts with "{" or "}".
- #5127: Memory corruption with the VM.
- #5102: bullets parsing broken by calls to parse_entry.

Various documentation improvements


Changes from V8.5pl1 to V8.5pl2
===============================

Critical bugfix
- Checksums of .vo files dependencies were not correctly checked.
- Unicode-to-ASCII translation was not injective, leading in a soundness bug in
  the native compiler.

Other bugfixes

- #4097: more efficient occur-check in presence of primitive projections
- #4398: type_scope used consistently in "match goal".
- #4450: eauto does not work with polymorphic lemmas
- #4677: fix alpha-conversion in notations needing eta-expansion.
- Fully preserve initial order of hypotheses in "Regular Subst Tactic" mode.
- #4644: a regression in unification.
- #4725: Function (Error: Conversion test raised an anomaly) and Program
  (Error: Cannot infer this placeholder of type)
- #4747: Problem building Coq 8.5pl1 with OCaml 4.03.0: Fatal warnings
- #4752: CoqIDE crash on files not ended by ".v".
- #4777: printing inefficiency with implicit arguments
- #4818: "Admitted" fails due to undefined universe anomaly after calling
  "destruct"
- #4823: remote counter: avoid thread race on sockets
- #4841: -verbose flag changed semantics in 8.5, is much harder to use
- #4851: [nsatz] cannot handle duplicated hypotheses
- #4858: Anomaly: Uncaught exception Failure("hd"). Please report. in variant
  of nsatz
- #4880: [nsatz_compute] generates invalid certificates if given redundant
  hypotheses
- #4881: synchronizing "Declare Implicit Tactic" with backtrack.
- #4882: anomaly with Declare Implicit Tactic on hole of type with evars
- Fix use of "Declare Implicit Tactic" in refine.
  triggered by CoqIDE
- #4069, #4718: congruence fails when universes are involved.

Universes
- Disallow silently dropping universe instances applied to variables
  (forward compatible)
- Allow explicit universe instances on notations, when they can apply
  to the head reference of their expansion.

Build infrastructure
- New update on how to find camlp5 binary and library at configure time.
2016-12-30 13:23:06 +00:00
..
a60 Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
abcl Revert nonsensical changes. 2016-12-19 15:43:42 +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 Revert "Specify readline requirement on 30 packages" 2016-12-12 14:22:01 +00:00
boomerang Recursive revbump associated with ocaml update to 4.04. 2016-12-30 11:16:56 +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 dependency in buildlink3.mk. 2016-12-30 11:43:36 +00:00
camlp5 Updated package to latest version, 6.17, and changed master site to 2016-12-30 12:37:44 +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 When building with clang, ignore return type warnings. 2016-12-19 13:34:53 +00:00
clang Revert. 2016-12-17 23:28: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 Updated coq to latest version, 8.6. Changes include: 2016-12-30 13:23:06 +00:00
coreclr Recursive revbump from textproc/icu 58.1 2016-12-04 05:17: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 Avoid non-portable recognition of defined() in expanded macros. 2016-12-17 23:27:23 +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++ Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc3-f77 Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc3-objc Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
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: Belated revbump 2016-12-12 14:33:24 +00:00
gcc5-libs gcc5: netbsd-only: unconditionally disable libssp, use a saner specfile. 2016-09-06 05:08:48 +00:00
gcc6 gcc6: update to 6.3.0. 2016-12-30 00:22:44 +00:00
gcc6-aux Add lang/gcc6-aux to pkgsrc 2016-12-13 01:19:19 +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
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 Upgrade USE_LANGUAGES=ada to use lang/gcc5-aux instead of lang/gcc-aux 2016-11-25 20:36:49 +00:00
gnucobol Update to 2.0rc1 2016-10-15 13:40:40 +00:00
go Update Go to 1.7.4. 2016-12-04 16:08:55 +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 guile: SunOS specific changes - don't declare STACKBOTTOM unless 2016-11-10 09:26:21 +00:00
guile20 guile20: fix PLIST for FreeBSD, which for some reason uses a different 2016-12-07 19:05:47 +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 Switch from gcc48-cc++ to gcc48. 2014-11-03 10:35:33 +00:00
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 Backport upstream patches to fix backtrace(3) detection on NetBSD 2016-10-31 01:15:12 +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 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 fix build on NetBSD/i386 2016-12-20 22:40:06 +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 Update llvm packages to 3.9.0 2016-11-14 20:15:32 +00:00
likepython Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
llvm Explicitly build LLVM projects with -std=c++11, it doesn't get detected 2016-12-17 23:28:34 +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 Fixed pkglint warnings. 2016-12-17 13:38:02 +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 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +00:00
mono-basic Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +00:00
mono2 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 7.2.1. 2016-12-08 23:03:28 +00:00
nodejs4 Update lang/nodejs4 to 4.7.0 2016-12-08 23:00:17 +00:00
nodejs6 Update lang/nodejs6 to 6.9.2 2016-12-08 23:02:13 +00:00
nqp Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 Updated package to latest version, ocaml 4.04.0. This involved removing 2016-12-30 11:15:00 +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 Enable OpenJDK 7 and 8 on Linux. Add builtin support. 2016-12-16 16:27:23 +00:00
openjdk8 Enable OpenJDK 7 and 8 on Linux. Add builtin support. 2016-12-16 16:27:23 +00:00
opensource-cobol Update to 1.5.1J 2016-12-25 00:11:56 +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 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 Remove duplicate PERL5 definition. 2016-12-12 16:08:00 +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.0 (PHP 7.1.0 official release). 2016-12-10 07:10:53 +00:00
php56 Update php56 to 5.6.29 (PHP 5.6.29). 2016-12-10 07:08:39 +00:00
php70 php70: pass the parameter to _php_dns_free_res the same way as the original 2016-12-20 07:22:19 +00:00
php71 7.1.0 is out of beta, drop the warning from MESSAGE and expand DESCR a bit 2016-12-23 18:38:04 +00:00
picoc Add patch comments. 2015-12-29 23:34:43 +00:00
pict Recursive revbump associated with ocaml update to 4.04. 2016-12-30 11:16:56 +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 www/py-google-api-python-client is ready for python-3.x, remove. 2016-11-07 11:07:05 +00:00
python27 Changes 2.7.13: 2016-12-30 10:53:21 +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 Friendship is not inherited, so list the class explicitly. 2016-12-17 23:30:12 +00:00
racket Revert nonsensical changes. 2016-12-19 15:43:42 +00:00
racket-textual Remove non-resolving host. 2016-12-12 12:08:57 +00:00
rakudo-star Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 Update ruby23{,-base} to 2.3.3. 2016-12-05 15:11:10 +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 Update ruby-execjs to 2.7.0. 2016-10-15 13:57:53 +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 Trying to move common configuration to common place. 2016-11-13 15:14:19 +00:00
ruby22 Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby22-base Update ruby22{,-base,gdbm,fiddle,readline,tk} to 2.2.6. 2016-12-05 15:02:25 +00:00
ruby23 Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
ruby23-base Update ruby23{,-base} to 2.3.3. 2016-12-05 15:11:10 +00:00
runawk Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
rust Recursive revbump from llvm 3.9.0 2016-11-14 20:56:10 +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 Update to SBCL 1.3.12 2016-12-05 20:03:29 +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 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 Pointers are not ordered relative to 0. 2016-12-15 23:57:33 +00:00
spidermonkey185 Provide consistent visibility for forward declarations. 2016-12-18 21:54:05 +00:00
spl Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +00:00
squeak Revert purely cosmetic changes. 2016-12-19 15:37:50 +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 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +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 Remove gcc45,46,47 and libs as discussed in pkgsrc-users 2016-12-29 22:46:30 +00:00