summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2013-05-26Update to 3.3.2:wiz7-50/+73
3.3.2 This release fixes a few regressions found in Python 3.3.1. Complete list at http://docs.python.org/release/3.3.2/whatsnew/changelog.html 3.3.1 This is a 3.3 series bugfix release. It includes hundreds of bugfixes over 3.3.0. Complete list at http://docs.python.org/release/3.3.1/whatsnew/changelog.html
2013-05-26Set CONFLICTS.ryoon2-2/+6
2013-05-26Add open-cobol-ceryoon1-1/+2
2013-05-26Import open-cobol-ce-1.1.59 as lang/open-cobol-ce.ryoon5-0/+82
OpenCOBOL CE is based on OpenCOBOL and has modern features.
2013-05-26Add opensource-cobolryoon1-1/+2
2013-05-26Import opensource-cobol-1.3J as lang/opensource-cobol.ryoon4-0/+78
opensource COBOL is based on OpenCOBOL compiler and has some extensions used in Japan. It translate COBOL programs to C code and compiles it using GCC. This package tracks opensource COBOL UTF-8 version.
2013-05-25Bump PKGREVISION.ryoon1-2/+5
* Fix runtime error on NetBSD-current.
2013-05-24Bump PKGREVISION for libproxy shlib major bump.wiz1-2/+2
2013-05-232013.05.17, Version 0.10.7 (Stable)fhajny3-27/+131
* uv: upgrade to v0.10.7 * npm: Upgrade to 1.2.21 * crypto: Don't ignore verify encoding argument (isaacs) * buffer, crypto: fix default encoding regression (Ben Noordhuis) * timers: fix setInterval() assert (Ben Noordhuis) (Commit lost when importing from wip/node.)
2013-05-23Ensure we use the pkgsrc openssl when requested.fhajny1-1/+2
(Commit lost when importing from wip/node.)
2013-05-22Use ${PKGMANDIR}sbd2-5/+5
2013-05-22add nodejs package, previously in wip/nodemspo15-1/+1191
2013-05-22Apply _CTYPE_BL fixes to gcc47 and gcc48.joerg8-2/+222
2013-05-20Small SITES fixadam1-2/+2
2013-05-20* Switched to gcc-4.1.2adam19-154/+131
* Clean-up
2013-05-19dylib entry not needed in PLIST.Darwinadam3-6/+3
2013-05-18Correct patch of configure scripts for DragonFly/FreeBSD.taca3-30/+30
That place was changed prior to my update of ruby193-base pacakge and I'm not sure it was correct or not. And suffix of libruby shared library has something historical part of pkgsrc. I don't care so much to changing the name, but also don't think it is so important thing to bump revisions. Noted by pkg/47831 from David Shao.
2013-05-16Update php54 to 5.4.15 (PHP 5.4.15).taca3-22/+6
09 May 2013, PHP 5.4.15 - Core: . Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: segfault). (Laruence) . Fixed bug #64458 (dns_get_record result with string of length -1). (Stas) . Fixed bug #64433 (follow_location parameter of context is ignored for most response codes). (Sergey Akbarov) . Fixed bugs #47675 and #64577 (fd leak on Solaris) - Fileinfo: . Upgraded libmagic to 5.14. (Anatol) - Zip: . Fixed bug #64342 (ZipArchive::addFile() has to check for file existence). (Anatol) - Streams: . Fixed Windows x64 version of stream_socket_pair() and improved error handling (Anatol Belski)
2013-05-16Update php53 to 5.3.25 (PHP 5.3.25).taca4-25/+12
09 May 2013, PHP 5.3.25 - Core: . Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: segfault). (Laruence) . Fixed bug #64458 (dns_get_record result with string of length -1). (Stas) . Fixed bugs #47675 and #64577 (fd leak on Solaris). (Rasmus) - Streams: . Fixed Windows x64 version of stream_socket_pair() and improved error handling. (Anatol Belski) - Zip: . Fixed bug #64342 (ZipArchive::addFile() has to check for file existence). (Anatol)
2013-05-16Update ruby193 and related packages to 1.9.3p429 (Ruby 1.9.3 patchlevel 429).taca7-57/+56
pkgsrc changes: * Fix gem command creating extra directories. Quote from release announce: This release includes a security fix about bundled DL / Fiddle. * Object taint bypassing in DL and Fiddle in Ruby (CVE-2013-2065) http://www.ruby-lang.org/en/news/2013/05/14/taint-bypass-dl-fiddle-cve-2013-2065/ * And some small bugfixes are also included. See tickets: https://bugs.ruby-lang.org/projects/ruby-193/issues?set_filter=1&status_id=5 ChangeLog for details. http://svn.ruby-lang.org/repos/ruby/tags/v1_9_3_426/ChangeLog
2013-05-15Changes from 4.0.2 to 4.1.0adam4-22/+44
--------------------------- 1. The three executables gawk, pgawk, and dgawk, have been merged into one, named just gawk. As a result: * The -R option is gone * Use -D to run the debugger. An optional file argument is a list of commands to run first. * Use -o to do pretty-printing only. * Use -p to do profiling. This considerably reduces gawk's "footprint" and eases the documentation burden as well. 2. Gawk now supports high precision arithmetic with MPFR. The default is still double precision, but setting PREC changes things, or using the -M / --bignum options. This support is not compiled in if the MPFR library is not available. 3. The new -i option (from xgawk) is used for loading awk library files. This differs from -f in that the first non-option argument is treated as a script. 4. The new -l option (from xgawk) is used for loading dynamic extensions. 5. The dynamic extension interface has been completely redone! There is now a defined API for C extensions to use. A C extension acts like a function written in awk, except that it cannot do everything that awk code can. However, this allows interfacing to any facility that is available from C. This is a major development, see the doc, which has a nice shiny new chapter describing everything. This support is not compiled in if dynamic loading of shared libraries is not supported. The old extension mechanism is still supported for compatiblity, but it will most definitely be removed at the next major release. 6. The "inplace" extension, built using the new facility, can be used to simulate the GNU "sed -i" feature. 7. The and(), or() and xor() functions now take any number of arguments, with a minimum of two. 8. New arrays: SYMTAB, FUNCTAB, and PROCINFO["identifiers"]. SYMTAB allows indirect access to any defined variable or array; it is possible to "walk" the symbol table, if that should be necessary. 9. Support for building gawk with a cross compiler has been improved. 10. Infrastructure upgrades: bison 2.7.1, gettext 0.18.2.1, automake 1.13.1, libtool 2.4.2 for the extensions.
2013-05-14Force realigning the stack for Clang on AMD64 as Hotspot createsjoerg1-1/+4
misaligned stack frames.
2013-05-14* Properly handle the case of multiple values in RUBY_VERSION_SUPPORTED.taca1-14/+20
* Clean up PLIST_VARS. No functional change should be done.
2013-05-14RUBY_COMMANDS aren't specific to ruby193 but they will be also neededtaca1-2/+2
by ruby200.
2013-05-13Update to 1.3.4.20130219wen2-6/+6
Upstream changes: 20130219 + modify missing-operand check in rexp.c to allow the case of empty "()", matching behavior of gawk and BWK (report by Arkadiusz Miskiewicz). + revert in-progress change to gsub retain ifdef'd for additional development since it did not handle array as the second parameter (report by Arkadiusz Miskiewicz). 20121209 + build-fix for cygwin in matherr.c, which declares a different type for _LIB_VERSION + add missing "-f" option in examples/gdecl.awk + fix a regression in fflush, ensuring that it returns an error if the argument does not match any output filename (report by Nathan Weeks). + modify wording of configure --help message to make it clear that the default for --with-builtin-regex uses the builtin regular expression engine of mawk. + fix issues reported by Coverity scan. Most of these were minor, and were addressed by modifying the source to allow Coverity to improve its analysis of the code. + amend support for LC_NUMERIC by translating period to the local decimal separator as needed to work with strtod() which is used to validate decimal constants when scanning source files. This fixes an infinite loop with mawk 'BEGIN { print 1.0 }' (report by Jan Psota). + regenerate man/mawk.doc, overlooked in previous updates.
2013-05-12Explicitly default PYTHON_FOR_BUILD_ONLY to `no'.riastradh1-1/+2
Avoids problems with make on NetBSD 5 where empty(XYZ:Mfoo) fails rather than yielding false if XYZ is undefined.
2013-05-10Partially back out change to PYTHON_FOR_BUILD_ONLY.riastradh2-8/+10
This broke packages that needed a target Python at build-time. Instead, change it from defined/undefined to yes/no/tool. Most cases of defined used `yes' anyway; fix the few stragglers do that instead. New case `tool' is for TOOL_DEPENDS rather than buildlink3.
2013-05-10Use a tool dependency, not buildlink3, if PYTHON_FOR_BUILD_ONLY.riastradh1-5/+7
ok agc
2013-05-09Fix wrong condition check; make's variable should be referenced as variable.taca1-2/+2
2013-05-09Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu.adam8-15/+16
2013-05-06Merge upstream patch to allow building with stricter iterator interfacejoerg2-1/+68
in libc++.
2013-05-04Avoid overlap with std::mutex with C++11 STL.joerg3-1/+32
2013-04-30Deal with 16bit ctype table change in NetBSD/current.joerg8-14/+267
2013-04-30Unbreak build on MirBSD by pre-including sys/types.h and sys/time.h inbsiegert3-31/+75
header checks. This will be submitted upstream.
2013-04-29Deal with the 16bit ctype table move in NetBSD/current. Fix some casesjoerg12-24/+338
of ctype.h argument range errors.
2013-04-29Do not define putc/getc macros on NetBSD, it can wreak havoc withjoerg2-1/+29
cstdio.
2013-04-29Remove python31.wiz26-4679/+7
There are three python3 versions in pkgsrc, python31, python32 and python33. The last published update for python was only released for python27, python32 and python33 -- not for python31. No reason for keeping python31 was brought up in two weeks on pkgsrc-users, so remove it.
2013-04-28Honor PKGMANDIR, and fix race condition in makefile.dholland2-4/+15
2013-04-28Work around linux's broken sort(1).dholland2-4/+13
2013-04-27lang/gcc-aux: Update to gcc 4.6.4 (version 20130412)marino2-35/+46
This is a bug fix release, the final of the GCC 4.6 series. The official change page is http://gcc.gnu.org/gcc-4.6/changes.html According to it, 86 bugs have been resolved since version 4.6.3 was released (2 P1 bugs, 20 P2 bugs).
2013-04-25Update to 6.0.45ryoon4-36/+35
Changelog: * Update timezone data to 2012i * Bugfixes
2013-04-25Restore checksum for ecj-4.5.jar (hi adam!)wiz1-1/+4
2013-04-24Changes 4.7.3:adam5-25/+19
http://gcc.gnu.org/gcc-4.7/changes.html
2013-04-24Revbump for all packages that have USE_TOOLS+=gssbd1-2/+2
2013-04-23prevent to use C++ as default linker for Cygwin.obache3-9/+19
2013-04-21Disable libsanitizer on Mac OS X 10.6 due to linking problem.adam2-1/+17
2013-04-21Deal with libtool fallout.joerg2-6/+5
2013-04-21add pkg for the newest vala release branchdrochner7-1/+378
2013-04-21Bump PKGREVISION because of lang/gcc48 revbump.sbd1-2/+2
2013-04-21Add substitution variable for @GCC_TARGET_MACHINE@ in gcc/Makefile.insbd1-2/+8
Bump PKGREVISION