summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2015-04-11Update to 1.4.0Jryoon2-10/+7
CHangelog: * Changes in opensource COBOL 1.4.0J ** New features *** Supports for Microsoft Windows ( Visual Studio and CL compiler ) Added win32 directory in opensource COBOL package, and prepared Solution Files for Visual Studio. *** Enhanced CUI features (1) Add a new function "CBL_OC_KEISEN". This displays a KEISEN ( vertical or horizontal ruled lines ) on the screen. (2) Supports SJIS multi-byte character input and output on the screen. ** Changes *** Added VBISAM to the opensource COBOL package *** Fixed not to abandon REPLACE after following COPY REPLACING has done *** Though old style STOP statement maybe skipped, it should be still at least recognized as non-nil statement on empty check *** Stop editing initial value of national-edited item *** Changed NATIONAL comparison to be independent on COLLATING SEQUENCE setting *** Fixed memory leaks in decoding national words *** Fixed behavior of COPY REPLACING LEADING/TRAILING according to the standard *** Fixed undecoded national item names appear in runtime messages *** Fixed undecoded national item names appear in compilation messages *** Prefixing/Suffixing should have no effect on FILLER item *** Fixed compilation error on some SOURCE FORMAT FREE usage *** Fixed bug in field subscript boundary check in cond expression *** Preserve system time when date is modified by COB_DATE *** Avoid reporting wrong section/paragraph name in error message *** Fixed bug in reference modification boundary check in MOVE statement *** Fixed initialization bug of ZonedDecimal variable defined as SIGN SEPARATE *** Fixed initialization bug of ZonedDecimal variable when using -fsign-ebcdic option ** Other Updates *** added and enhanced some tests *** updated message catalog for 'ja' *** bug fix some problem
2015-04-10Set GCC_REQD+=4.4 here too as gcc-4.2 won't build it due to needingrodent1-1/+2
omp_lock_t.
2015-04-10Same deal here as lang/gcc48. Set GCC_REQD+=4.4, as the packages needsrodent1-1/+2
omp_lock_t and gcc-4.2 doesn't provide that.
2015-04-10GCC_REQD+=4.4, because 4.2 can't build it due to the package needingrodent1-1/+2
omp_lock_t.
2015-04-07Unbreak C++ on NetBSD, by popular demand.tnn2-2/+13
Background: LLVM 3.6 upstream added support for being a native toolchain on NetBSD. This changed the default C++ runtime library from libstdc++ to libc++. Patch this in pkgsrc's clang so we continue to use libstdc++ (for now) Proper support for libc++ should be added later (perhaps w/ PKG_OPTIONs). Thanks to Joerg for explaining the problem.
2015-04-07Upgrade to 2.11.6 from 2.11.1.yyamano8-37/+38
http://www.scala-lang.org/news/2.11.6 Scala 2.11.6 is a bugfix release that is binary compatible with previous releases in the Scala 2.11 series. We would like to highlight the following changes: * We fixed a cross-site scripting vulnerability in Scaladoc's JavaScript. Many thanks to @todesking for discovering this, suggesting a fix, and for delaying disclosure until this release! This bug could be used to access sensitive information on sites hosted on the same domain as Scaladoc-generated documentation. All previous versions of Scaladoc are affected (Scala 2.10.5 includes the fix as well). We do recommend, as a general precaution, to host Scaladoc documentation on its own domain. * SI-9089 repl is now much less crash-and-burny when calling a function (which turns out to be a common thing people do in a REPL). Also, apologies to the author of SI-9022, who reported this before the bug was discovered and you had to wait in line for like three hours on a Tuesday afternoon. Or, maybe, that honor should go to the enigmatic dk14. * SI-8759 no need to enter almost half the konami code to enter a right square bracket in the REPL (via jline 2.12.1). Thank you for implementing the jline fix, @michael72, and kudos to @jdillon and @trptcolin for cutting a new jline release just for us! http://www.scala-lang.org/news/2.11.5 Scala 2.11.5 is a bugfix release that is binary compatible with previous releases in the Scala 2.11 series. We would like to highlight the following changes: * heathermiller's SI-6502 Reenables loading jars into the running REPL * mpociecha's The alternative, flat representation of classpath elements * gbasler's Avoid the ¡CNF budget exceeded¢ exception via smarter translation into CNF * adriaanm's SAMmy: eta-expansion, overloading, existentials * A great number of documentation improvements - thank you (and, to those appearing for the first time in our release notes, welcome!): @kanielc, @lymia, @stevegury, @vigdorchik, @gourlaysama, @ichoran, @retronym, @xuwei-k, @dickwall, @phaller. http://www.scala-lang.org/news/2.11.4 Scala 2.11.4 is a bugfix release that is binary compatible with previous releases in the Scala 2.11 series. The changes include: * Scala shell (REPL) is more friendly to Ctrl+D. It leaves your terminal in a clean state and suggests using :quit the next time (see #3902). Kudos to @gourlaysama! * REPL uses different colors when printing references to vals and types. Pass -Dscala.color to enable that behavior (see #3993). Thanks to @puffnfresh! * The Scala specification received a fair amount of love and became much more beautiful. It has got syntax highlighting (#3984), linkable headers, and a side bar with TOC (#3996). A few final touches has been merged that fix typos and mistakes stemming from automatic Latex to Markdown conversion we've done a while ago. Thanks for attention to details @gourlaysama, @som-snytt and roberthoedicke! * Non-deterministic pattern matching warnings has been fixed (SI-7746). Many thanks to @gbasler for diving deep (#3954) into logical formulas constructed by our pattern matcher implementation! https://groups.google.com/forum/#!msg/scala-internals/SSD9BNJaFbU/rACBkHrs2JEJ > I've got an important information to share. I'd like to announce the > Scala 2.11.3 artifacts as being dead on arrival. The 2.11.3 > artifacts that got released to Maven Central have a critical bug > related to binary compatibility. Please stick to using Scala 2.11.2 > until 2.11.4 is released which is planned to happen as soon as we > fix all critical bugs found in Scala 2.11.3. The rest of my email > will discuss the events that led to a broken Scala release, next > steps we're planning to take. http://www.scala-lang.org/news/2.11.2 Scala 2.11.2 is a bugfix release that is binary compatible with previous releases in the Scala 2.11 series. The changes include: * Several issues in the collections library were resolved, most notably equality on ranges (SI-8738). * The optimizer no longer eliminates division instructions that may throw an ArithmeticException (SI-7607). * The -Xlint compiler flag is now parameterized by individual warnings. This is intended to replace the -Ywarn-... options, for instance, -Xlint:nullary-unit is equivalent to -Ywarn-nullary-unit. Run scalac -Xlint:help to see all available options. Kudos to @som-snytt!x * TypeTags and Exprs are now serializable (SI-5919).
2015-04-06Teach the llvm shared library build rules about NetBSD so we get a singletnn10-217/+68
shlib with whole-archive like on other platforms. Bump revision and bl3.
2015-04-06Revbump after updating textproc/icuadam17-32/+34
2015-04-04+jimtclrodent1-1/+2
2015-04-04Import jimtcl-0.76 as lang/jimtcl.rodent4-0/+62
Jim is an opensource small-footprint implementation of the Tcl programming language. It implements a large subset of Tcl and adds new features like references with garbage collection, closures, built-in Object Oriented Programming system, Functional Programming commands, first-class arrays and UTF- 8 support. All this with a binary size of about 100-200kB (depending upon selected options). The Jim core is very stable. Jim passes over 3000 unit tests and many Tcl programs run unmodified. Jim is highly modular with the possiblity to configure many components as loadable modules, or omitted entirely. A number of extensions are included with Jim which may be built as loadable modules.
2015-04-03Remove shlib option. lang/libLLVM provides equivalent functionality.tnn2-146/+2
2015-04-03Disable CPU detection on Darwin, the result for 32-bit (i486) is incompatiblejperkin6-31/+58
with pkgsrc MACHINE_ARCH (i386). Fixes 32-bit build, no change for 64-bit.
2015-04-03Update to 0.28.0:wiz4-317/+324
Vala 0.28.0 =========== * Binding updates. Vala 0.27.2 =========== * Bug fixes and binding updates. Vala 0.27.1 =========== * Print compiler messages in color. * Add clutter-gdk-1.0 bindings. * Add clutter-gst-3.0 bindings. * Add clutter-x11-1.0 bindings. * Add rest-extras-0.7 bindings. * Bug fix and binding updates.
2015-04-02Avoid using the "3o" man page section, since plist-man.awk can't handle it.tnn6-151/+179
Instead treat ocaml like we do with lang/perl5 and install the man pages in the "3" section in /usr/pkg/lib/ocaml/man/man3.
2015-04-02Add MirBSD.bsiegert1-2/+3
2015-03-31Rpath option should get the path directly.joerg2-4/+4
2015-03-31ARM requires more than 128MB data size.joerg1-1/+3
2015-03-31Don't mess with __sync_*, clang disallows it this way. Failing at linkjoerg2-4/+26
time is good enough anyway.
2015-03-31Allow building on platforms where "int3" is not a valid debug trap.joerg4-3/+69
Build shared library with -fPIC on all platforms. Bump revision for that.
2015-03-31Use unified asm syntax. Build with -O0 on ARM when using clang, to muchjoerg3-2/+21
optimisation potential.
2015-03-24Don't mess with sync builtins, it breaks the build with Clang.joerg2-1/+30
2015-03-22SECURITY: Add a patch for CVE-2014-5461, taken from the Debian package.bsiegert3-3/+18
Bump PKGREVISION.
2015-03-22need zlibtnn2-2/+4
2015-03-22Needs dvips and pdftex for build.asau1-2/+4
2015-03-21Provide library path to libpython too.joerg2-6/+7
2015-03-21Fix build on MKGCC=no systemstnn1-2/+4
2015-03-20Update php56 to 5.6.7, including security fix.taca2-6/+6
19 Mar 2015, PHP 5.6.7 - Core: . Fixed bug #69174 (leaks when unused inner class use traits precedence). (Laruence) . Fixed bug #69139 (Crash in gc_zval_possible_root on unserialize). (Laruence) . Fixed bug #69121 (Segfault in get_current_user when script owner is not in passwd with ZTS build). (dan at syneto dot net) . Fixed bug #65593 (Segfault when calling ob_start from output buffering callback). (Mike) . Fixed bug #68986 (pointer returned by php_stream_fopen_temporary_file not validated in memory.c). (nayana at ddproperty dot com) . Fixed bug #68166 (Exception with invalid character causes segv). (Rasmus) . Fixed bug #69141 (Missing arguments in reflection info for some builtin functions). (kostyantyn dot lysyy at oracle dot com) . Fixed bug #68976 (Use After Free Vulnerability in unserialize()). (Stas) . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM configuration options). (Anatol Belski) . Fixed bug #69207 (move_uploaded_file allows nulls in path). (Stas) - CGI: . Fixed bug #69015 (php-cgi's getopt does not see $argv). (Laruence) - CLI: . Fixed bug #67741 (auto_prepend_file messes up __LINE__). (Reeze Xia) - cURL: . Fixed bug #69088 (PHP_MINIT_FUNCTION does not fully initialize cURL on Win32). (Grant Pannell) . Add CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME constants if supported by libcurl. (Linus Unneback) - Ereg: . Fixed bug #69248 (heap overflow vulnerability in regcomp.c) (CVE-2015-2305). (Stas) - FPM: . Fixed bug #68822 (request time is reset too early). (honghu069 at 163 dot com) - ODBC: . Fixed bug #68964 (Allowed memory size exhausted with odbc_exec). (Anatol) - Opcache: . Fixed bug #69159 (Opcache causes problem when passing a variable variable to a function). (Dmitry, Laruence) . Fixed bug #69125 (Array numeric string as key). (Laruence) . Fixed bug #69038 (switch(SOMECONSTANT) misbehaves). (Laruence) - OpenSSL: . Fixed bug #68912 (Segmentation fault at openssl_spki_new). (Laruence) . Fixed bug #61285, #68329, #68046, #41631 (encrypted streams don't observe socket timeouts). (Brad Broerman) . Fixed bug #68920 (use strict peer_fingerprint input checks) (Daniel Lowrey) . Fixed bug #68879 (IP Address fields in subjectAltNames not used) (Daniel Lowrey) . Fixed bug #68265 (SAN match fails with trailing DNS dot) (Daniel Lowrey) . Fixed bug #67403 (Add signatureType to openssl_x509_parse) (Daniel Lowrey) . Fixed bug (#69195 Inconsistent stream crypto values across versions) (Daniel Lowrey) - pgsql: . Fixed bug #68638 (pg_update() fails to store infinite values). (william dot welter at 4linux dot com dot br, Laruence) - Readline: . Fixed bug #69054 (Null dereference in readline_(read|write)_history() without parameters). (Laruence) - SOAP: . Fixed bug #69085 (SoapClient's __call() type confusion through unserialize()). (andrea dot palazzo at truel dot it, Laruence) - SPL: . Fixed bug #69108 ("Segmentation fault" when (de)serializing SplObjectStorage). (Laruence) . Fixed bug #68557 (RecursiveDirectoryIterator::seek(0) broken after calling getChildren()). (Julien) - ZIP: . Fixed bug #69253 (ZIP Integer Overflow leads to writing past heap boundary) (CVE-2015-2331). (Stas)
2015-03-20Update php55 to 5.5.23, including security fix.taca2-6/+6
19 Mar 2015, PHP 5.5.23 - Core: . Fixed bug #69174 (leaks when unused inner class use traits precedence). (Laruence) . Fixed bug #69139 (Crash in gc_zval_possible_root on unserialize). (Laruence) . Fixed bug #69121 (Segfault in get_current_user when script owner is not in passwd with ZTS build). (dan at syneto dot net) . Fixed bug #65593 (Segfault when calling ob_start from output buffering callback). (Mike) . Fixed bug #69017 (Fail to push to the empty array with the constant value defined in class scope). (Laruence) . Fixed bug #68986 (pointer returned by php_stream_fopen_temporary_file not validated in memory.c). (nayana at ddproperty dot com) . Fixed bug #68166 (Exception with invalid character causes segv). (Rasmus) . Fixed bug #69141 (Missing arguments in reflection info for some builtin functions). (kostyantyn dot lysyy at oracle dot com) . Fixed bug #68976 (Use After Free Vulnerability in unserialize()). (Stas) . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM configuration options). (Anatol Belski) . Fixed bug #69207 (move_uploaded_file allows nulls in path). (Stas) - CGI: . Fixed bug #69015 (php-cgi's getopt does not see $argv). (Laruence) - CLI: . Fixed bug #67741 (auto_prepend_file messes up __LINE__). (Reeze Xia) - cURL: . Fixed bug #69088 (PHP_MINIT_FUNCTION does not fully initialize cURL on Win32). (Grant Pannell) . Add CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME constants if supported by libcurl. (Linus Unneback) - Ereg: . Fixed bug #69248 (heap overflow vulnerability in regcomp.c). (Stas) - FPM: . Fixed bug #68822 (request time is reset too early). (honghu069 at 163 dot com) - ODBC: . Fixed bug #68964 (Allowed memory size exhausted with odbc_exec). (Anatol) - Opcache: . Fixed bug #69125 (Array numeric string as key). (Laruence) . Fixed bug #69038 (switch(SOMECONSTANT) misbehaves). (Laruence) - OpenSSL: . Fixed bugs #61285, #68329, #68046, #41631 (encrypted streams don't observe socket timeouts). (Brad Broerman) - pgsql: . Fixed bug #68638 (pg_update() fails to store infinite values). (william dot welter at 4linux dot com dot br, Laruence) - Readline: . Fixed bug #69054 (Null dereference in readline_(read|write)_history() without parameters). (Laruence) - SOAP: . Fixed bug #69085 (SoapClient's __call() type confusion through unserialize()). (andrea dot palazzo at truel dot it, Laruence) - SPL: . Fixed bug #69108 ("Segmentation fault" when (de)serializing SplObjectStorage). (Laruence) . Fixed bug #68557 (RecursiveDirectoryIterator::seek(0) broken after calling getChildren()). (Julien) - ZIP: . Fixed bug #69253 (ZIP Integer Overflow leads to writing past heap boundary) (CVE-2015-2331). (Stas)
2015-03-20Update php54 to 5.4.39, including securitfy fix.taca2-6/+6
19 Mar 2015 PHP 5.4.39 - Core: . Fixed bug #68976 (Use After Free Vulnerability in unserialize()). (Stas) . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM configuration options). (Anatol Belski) . Fixed bug #69207 (move_uploaded_file allows nulls in path). (Stas) - Ereg: . Fixed bug #69248 (heap overflow vulnerability in regcomp.c). (Stas) - SOAP: . Fixed bug #69085 (SoapClient's __call() type confusion through unserialize()). (Dmitry) - ZIP: . Fixed bug #69253 (ZIP Integer Overflow leads to writing past heap boundary). (Stas)
2015-03-19Look deeper for config.guess / config.sub.joerg1-1/+2
2015-03-19Add a comment to the patch.he2-3/+5
2015-03-19Treat NetBSD the same as FreeBSD wrt. handling of TCP_INFO.he2-1/+17
No revision bump since this is a build fix for systems supporting TCP_INFO.
2015-03-18Use __sparc instead of __sparc__ as per pkglint, mentioned bydholland5-11/+20
Adrien Auzanneau following up to PR 45036. Add patch comments.
2015-03-17needs gzip(1) during build (to unpack bundled libffi)tnn1-2/+2
2015-03-17Avoid hardcoded ggrep on SunOS.jperkin1-6/+7
2015-03-17Detect 64-bit SunOS.jperkin2-11/+13
2015-03-17Package requires GCC runtime.jperkin1-1/+3
2015-03-16Fix a MAKE_JOBS safety problem. In the recipe for Python/importlib.h ittnn5-16/+32
launches a submake for _freeze_importlib before all the object files have been compiled. List $(LIBRARY_OBJS_OMIT_FROZEN) as dependencies to make it wait until it is safe to launch the submake. Should fix occasional errors of the sort: Python/Python-ast.o: file not recognized: File truncated *** [Modules/_freeze_importlib] Error code 1
2015-03-16Honour LDFLAGS. Fixes cwrapper build with non-builtin zlib.jperkin2-12/+23
2015-03-16One more PHP_BASE_VERS related correction.taca1-2/+2
2015-03-16Fix problem by PHP_BASE_VERS related changes.taca7-14/+11
2015-03-15needs gzip(1) during installationtnn1-2/+2
2015-03-15Drop php53 support.taca2-27/+11
2015-03-15Remove "used by lang/php53/Makefile.common" line.taca1-2/+1
2015-03-15Remove php53 now. It is not supported any more including security fix.taca35-1345/+0
2015-03-15Remove php53.taca1-2/+1
2015-03-15Remove php5-perl package which was supported by php53 only.taca3-22/+0
2015-03-15Remove php5-perl.taca1-2/+1
2015-03-15wants to link with pthreadstnn1-1/+2
2015-03-15Add RUBY_MAJOR_MINOR to use in PLIST.taca1-2/+5