pkgsrc/lang
ryoon bf5dc979ee Update to 1.8.102
Changelog:
IANA Data 2016d
JDK 8u102 contains IANA time zone data version 2016d. For more
information, refer to Timezone Data Versions in the JRE Software.
See JDK-8151876


Enhancements

core-libs/java.lang.invoke
Internal package sun.invoke.anon has been removed
The internal package sun.invoke.anon has been removed. The
functionality it used to provide, namely anonymous class loading
with possible constant pool patches, is available via the
Unsafe.defineAnonymousClass() method.
See JDK-8081512


hotspot/runtime
New property jdk.lang.processReaperUseDefaultStackSize
When a large TLS (Thread local storage) size is set for Threads,
the JVM results in a stack overflow exception. The reason for this
behavior is that the reaper thread was created with a low stack
size of 32768k. When a large TLS size is set, it steals space from
the threads stack, which eventually results in a stack overflow.
This is a known glibc bug.  To overcome this issue, we have introduced
a workaround (jdk.lang.processReaperUseDefaultStackSize) in which
the user can set the reaper threads stack size to a default instead
of to 32768. This gives the reaper thread a bigger stack size, so
for a large TLS size, such as 32k, the process will not fail.
Users can set this flag in one of two ways:
1. -Djdk.lang.processReaperUseDefaultStackSize=true
2. System.setProperty("jdk.lang.processReaperUseDefaultStackSize",
"true")
The problem has been observed only when JVM is started from JNI
code in which TLS is declared using "__thread"
See JDK-8130425


hotspot/compiler
Implemented performance improvements for BigInteger.montgomeryMultiply
We have implemented improvements that will improve performance of
several security algorithms, especially when using ciphers with
key lengths of 2048-bit or greater. To turn on these improvements,
use the options -XX:+UseMontgomeryMultiplyIntrinsic and
-XX:+UseMontgomerySquareIntrinsic. This improvement is only for
Linux and Solaris on x86_64 architecture.
See JDK-8130150


Changes
security-libs/javax.crypto
MSCAPI KeyStore can handle same-named certificates
Java SE KeyStore does not allow certificates that have the same
aliases
(http://docs.oracle.com/javase/8/docs/api/java/security/KeyStore.html).
However, on Windows, multiple certificates stored in one keystore
are allowed to have non-unique friendly names.The fix for JDK-6483657
makes it possible to operate on such non-uniquely named certificates
through the Java API by artificially making the visible aliases
unique.

Please note, this fix does not enable creating same-named certificates
with the Java API. It only allows you to deal with same-named
certificates that were added to the keystore by 3rd party tools.

It is still recommended that your design not use multiple certificates
with the same name. In particular, the following sentence will not
be removed from the Java documentation:  "In order to avoid problems,
it is recommended not to use aliases in a KeyStore that only differ
in case."
(http://docs.oracle.com/javase/8/docs/api/java/security/KeyStore.html)
See JDK-6483657


security-libs/javax.net.ssl
Modify requirements on Authority Key Identifier extension field
during X509 certificate chain building
The requirement to have the Authority Key Identifier (AKID) and
Subject Key Identifier (SKID) fields matching when building X509
certificate chains has been modified for some cases.
See JDK-8072463


hotspot/gc
Providing more granular levels for GC verification
This enhancement provides a way to specify more granular levels
for the GC verification enabled using the VerifyBeforeGC, VerifyAfterGC,
and VerifyDuringGC diagnostic options. It introduces a new diagnostic
option VerifySubSet with which one can specify the subset of the
memory system that should be verified.

With this new option, one or more sub-systems can be specified in
a comma separated string. Valid memory sub-systems are: threads,
heap, symbol_table, string_table, codecache, dictionary,
classloader_data_graph, metaspace, jni_handles, c-heap, and
codecache_oops.

During the GC verification, only the sub-systems specified using
VerifySubSet get verified:

D:\\tests>java -XX:+UnlockDiagnosticVMOptions -XX:+VerifyBeforeGC
-XX:VerifySubSet="threads,c-heap" -Xlog:gc+verify=debug Test
[0.095s][debug ][gc,verify] Threads
[0.099s][debug ][gc,verify] C-heap
[0.105s][info ][gc,verify] Verifying Before GC (0.095s, 0.105s) 10.751ms
[0.120s][debug ][gc,verify] Threads
[0.124s][debug ][gc,verify] C-heap
[0.130s][info ][gc,verify] Verifying Before GC (0.120s, 0.130s) 9.951ms
[0.148s][debug ][gc,verify] Threads
[0.152s][debug ][gc,verify] C-heap

If any invalid memory sub-systems are specified with VerifySubSet,
the Java process exits with the following error message:

D:\\tests>java -XX:+UnlockDiagnosticVMOptions -XX:+VerifyBeforeGC
-XX:VerifySubSet="threads,c-heap,hello" -Xlog:gc+verify=debug oom
Error occurred during initialization of VM VerifySubSet: 'hello'
memory sub-system is unknown, please correct it
See JDK-8072725


hotspot/compiler
Removed PICL warning message
In 8u40 and 7u80, a new feature was introduced to use the PICL
library on Solaris to get some system information. If this library
was not found, we printed an error message:

Java HotSpot(TM) Server VM warning: PICL (libpicl.so.1) is missing.
Performance will not be optimal.

This warning was misleading. Not finding the PICL library is a very
minor issue, and the warnings mostly lead to confusion. In this
release, the warning was removed.
See JDK-8144957


core-libs/javax.naming
Improved exception handling for bad LDAP referral replies
The JDK was throwing a NullPointerException when a non-compliant
REFERRAL status result was sent but no referral values were included.
With this change, a NamingException with message value of "Illegal
encoding: referral is empty" will be thrown in such circumstances.
See JDK-8149450 and JDK-8154304


Bug Fixes

The following are some of the notable bug fixes included in this
release:

security-libs/javax.net.ssl
Fix to resolve "Unable to process PreMasterSecret, may be too big"
issue
Recent JDK updates introduced an issue for applications that depend
on having a delayed provider selection mechanism. The issue was
introduced in JDK 8u71, JDK 7u95 and JDK 6u111. The main error seen
corresponded to an exception like the following :

handling exception: javax.net.ssl.SSLProtocolException: Unable to
process PreMasterSecret, may be too big

See JDK-8149017

This release also contains fixes for security vulnerabilities
described in the Oracle Java SE Critical Patch Update Advisory.
For a more complete list of the bug fixes included in this release,
see the JDK 8u102 Bug Fixes page.
2016-08-15 19:09:38 +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 Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +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 Add patch comments. 2015-12-29 23:34:43 +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 Revert changes inspired by broken tool. 2016-07-16 11:48:01 +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 Import CoreCLR 1.0.0 as lang/coreclr 2016-06-30 12:16:24 +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 Update lang/erlang to 19.0 (R19) 2016-08-09 15:03:15 +00:00
erlang-doc Update lang/erlang to 19.0 (R19) 2016-08-09 15:03:15 +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.0 (R19) 2016-08-09 15:03:15 +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 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +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 set LICENSE 2016-01-26 14:46:46 +00:00
gawk Add patch comments. 2015-12-29 23:34:43 +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 Use OPSYSVARS. 2016-02-25 14:42:55 +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 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc5-aux lang/gcc5-aux: Reduce functionality to allow build on NetBSD 7 2015-06-15 17:14:27 +00:00
gcc5-libs Update gcc5 to 5.4.0 and gcc5-libs to 5.4.0nb1 2016-07-05 18:55:08 +00:00
gcc34 Use OPSYSVARS. 2016-02-25 14:42:55 +00:00
gcc44 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc45 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc46 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc46-libs Remove mk/find-prefix.mk usage from the lang category. 2015-11-25 12:51:16 +00:00
gcc47 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc47-libs Bump lang/gcc47-libs PKGREVISION to stay ahead of lang/gcc47. 2016-01-21 11:56:29 +00:00
gcc48 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc48-libs Remove mk/find-prefix.mk usage from the lang category. 2015-11-25 12:51:16 +00:00
gcc49 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
gcc49-libs Bump lang/gcc49-libs PKGREVISION to stay ahead of lang/gcc49. 2016-01-21 11:53:46 +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 perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +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 Update Go to 1.6.3. 2016-07-18 20:37:40 +00:00
go14 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +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 Switch installation prefix to ${PREFIX}/guile/1.8 in preparation for 2016-08-03 15:03:03 +00:00
guile20 Use PKGMANDIR. 2016-07-22 12:19:15 +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 Updated lang/intercal to 0.30 2016-08-14 13:39:29 +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 Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
konoha Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +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 Fix PLIST for SunOS. Upstream intentionally doesn't build the shared 2016-06-21 16:40:10 +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
nodejs Update lang/nodejs to 6.3.1. 2016-08-09 08:50:51 +00:00
nodejs4 Update lang/nodejs4 to 4.4.7. 2016-07-01 15:41:28 +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 Fix build on 32-bit SunOS with 64-bit native assembler. 2016-07-15 12:44:21 +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 Add jcmd to JAVA_WRAPPERS, bump PKGREVISION 2016-08-11 15:34:29 +00:00
openjdk8 Update to 1.8.102 2016-08-15 19:09:38 +00:00
opensource-cobol Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
oracle-jdk8 Add new jdk-8u92-linux-i586.tar.gz distinfo. 2016-05-20 22:26:21 +00:00
oracle-jre8 Reinstate old jce_policy-8.zip distinfo, and add new 2016-05-20 22:24:09 +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 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +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 Take care of DIST_SUBDIR when accessing DISTFILES. 2015-12-17 01:40:54 +00:00
perl5 Build with DTrace support enabled on OS X Leopard and newer 2016-06-20 17:19:56 +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.0beta2. List of changes is not available. 2016-08-06 11:32:14 +00:00
php55 * Switch to use external gd (graphics/gd package). 2016-08-13 17:34:41 +00:00
php56 * Switch to use external gd (graphics/gd package). 2016-08-13 17:34:41 +00:00
php70 * Switch to use external gd (graphics/gd package). 2016-08-13 17:34:41 +00:00
php71 * Switch to use external gd (graphics/gd package). 2016-08-13 17:34:41 +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 Add py-byterun, version 20160218, to the Packages Collection. 2016-07-24 19:11:27 +00:00
py-cxfreeze Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +00:00
py-hy Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-pyrex Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-pythonz Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +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 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
python27 Bump PKGREVISION for previous 2016-07-26 16:45:33 +00:00
python34 Changes 3.4.5: 2016-07-02 15:23:33 +00:00
python35 Changes 3.5.2: 2016-07-02 15:07:47 +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 Removed unnecessary space after variable name, to fix pkglint warning. 2016-07-09 10:11:08 +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
ruby18-base Try to fix build error by recent OpenSSL change on NetBSD, 2016-03-24 16:28:59 +00:00
ruby21 Reset PKGREVISION. 2015-04-19 16:20:42 +00:00
ruby21-base Removed reference to undefined RUBY_LICENSE variable. 2016-07-10 18:42:50 +00:00
ruby22 Revert previous commit since it was wrong packge to bump PKGREVISION. 2015-12-20 05:26:31 +00:00
ruby22-base Removed reference to undefined RUBY_LICENSE variable. 2016-07-10 18:42:50 +00:00
ruby23 Forgot to add DESCR file. 2016-01-03 12:57:24 +00:00
ruby23-base Removed reference to undefined RUBY_LICENSE variable. 2016-07-10 18:42:50 +00:00
runawk Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +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.5 2016-05-06 20:33:59 +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 Add missing dependencies on generated file. 2016-06-01 13:32:13 +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 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
spl Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
squeak Add SHA512 digests for distfiles for lang category 2015-11-03 22:50:31 +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 Add jcmd to JAVA_WRAPPERS 2016-08-10 22:26:46 +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 57.1 2016-04-11 19:01:33 +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 add php71 2016-08-04 14:09:31 +00:00