summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2008-11-28Add a reminder to install with debugging symbols if buildingbjs1-2/+2
with e.g. -g (in the future)
2008-11-28Add/enable lang/cparserbjs1-1/+2
2008-11-28Import cparser-0.9.5.bjs6-0/+179
Cparser is a recursive descent C99 parser written in C99. It contains a lexer, a parser, and the appropriate constructs; it does AST and semantic analysis. It is currently used as a frontend to the libFirm intermediate representation. However, it can be used independently, and also is able to bootstrap itself. Currently, cparser uses an external preprocessor.
2008-11-22add mono-basickefren1-1/+2
2008-11-22Initial import of Mono VB.NET frameworkkefren4-0/+46
2008-11-21correct general register state indexes for NetBSD/amd64kefren3-9/+31
Bump PKGREVISION
2008-11-19reenable MAKE_JOBS_SAFE (2.0.1 compiled OK several times on i386 and amd64)kefren4-8/+73
let configure choose tls model provide atomic_ops to Interlock functions in newer NetBSDs bump PKGREVISION
2008-11-14Oops, undo r1.8, committed by accident.epg1-10/+8
2008-11-14blank line before PLIST_SRCepg1-8/+10
2008-11-14Add rpath entries for XCOFF/AIX as well. Tested by Jens Rehsack.joerg1-2/+2
2008-11-11Bump revisions of sun-jre6 and sun-jdk6 as suggested by joergreinoud2-2/+4
2008-11-11Add three missing files in the PLIST; not worthy a patch bump. Aparently Sunreinoud1-1/+4
decided to add files to the distribution.
2008-11-11Add missing file in PLIST; no need to update of patch number.reinoud1-1/+2
java/sun-6/lib/servicetag/registration.xml
2008-11-10Update to 2.3.7:wiz6-60/+36
Python 2.3 is now well and truly in bugfix-only mode; no new features are being added, and only security critical bugs have been fixed. This release addresses a number of cases interpreter might have crashed in certain boundary conditions. What's New in Python 2.3.7? =========================== *Release date: 11-Mar-2008* What's New in Python 2.3.7c1? =========================== *Release date: 02-Mar-2008* Core and builtins ----------------- - Added checks for integer overflows, contributed by Google. Some are only available if asserts are left in the code, in cases where they can't be triggered from Python code. What's New in Python 2.3.6? =========================== *Release date: 01-NOV-2006* What's New in Python 2.3.6c1? ============================= *Release date: 25-OCT-2006* Core and builtins ----------------- - Patch #1541585: fix buffer overrun when performing repr() on a unicode string in a build with wide unicode (UCS-4) support. This is the problem described in security advisory PSF-2006-001. Extension modules ----------------- - Apply fix for potential heap overflow in PCRE code (CAN-2005-2491). Library ------- - The email package has improved RFC 2231 support, specifically for recognizing the difference between encoded (name*0*=<blah>) and non-encoded (name*0=<blah>) parameter continuations. This may change the types of values returned from email.message.Message.get_param() and friends. Specifically in some cases where non-encoded continuations were used, get_param() used to return a 3-tuple of (None, None, string) whereas now it will just return the string (since non-encoded continuations don't have charset and language parts). Also, whereas % values were decoded in all parameter continuations, they are now only decoded in encoded parameter parts.
2008-11-10Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal.wiz3-5/+6
2008-11-06Add buildlink3.mk.bjs1-0/+21
2008-11-03Fix build with perl 5.10.markd2-1/+15
As perl 5.6 wont be seen in a pkgsrc context just replace the test for 5.6 with one for 5.10 rather than a more substantial change.
2008-11-02Marked as MAKE_JOBS_SAFE=no, reported by PR 39616.obache1-1/+3
2008-10-28Fix buildling ap-php with APACHE_MPM=workeradam2-4/+18
2008-10-27Update to clisp-2.47. From Aleksej Saushev via pkgsrc-wip. Changes:tnn4-46/+45
* New module DBUS interfaces to the D-Bus message bus system. See <http://clisp.cons.org/impnotes/dbus.html> for details. * New function EXT:PROBE-PATHNAME can figure out whether the existing pathname refers to a file or a directory. See <http://clisp.cons.org/impnotes/files.html#probe-path> for details. * New function EXT:CANONICALIZE lets you easily canonicalize a value before processing it. See <http://clisp.cons.org/impnotes/macros3.html#canonicalize> for details. * New user variable CUSTOM:*REOPEN-OPEN-FILE* controls CLISP behavior when opening an already open file. See <http://clisp.cons.org/impnotes/open.html#reopen> for details. * New SETFable function OS:FILE-SIZE extends FILE-LENGTH to pathname designators and lets you change file size. See <http://clisp.cons.org/impnotes/syscalls.html#file-size> for details. New function OS:USER-SHELLS returns the list of legal user shells. See <http://clisp.cons.org/impnotes/syscalls.html#user-shells> for details. New SETFable functions OS:HOSTID and OS:DOMAINNAME. See <http://clisp.cons.org/impnotes/syscalls.html#hostid> for details. * Module readline has been upgraded to readline 5.2 (older versions 5.0 and 5.1 are, of course, still supported). See <http://clisp.cons.org/impnotes/readline-mod.html> for details. * LOAD now uses DIRECTORY only for wild *LOAD-PATHS* components, thus speeding up the most common cases and preventing the denial-of-service attack whereas CLISP would not start if a file with a name incompatible with *PATHNAME-ENCODING* is present in USER-HOMEDIR-PATHNAME. * ROOM now prints some GC statistics and returns the same values as GC. See <http://clisp.cons.org/impnotes/environment-enq.html#room> for details. * New user variable CUSTOM:*HTTP-LOG-STREAM* controls EXT:OPEN-HTTP logging. See <http://clisp.cons.org/impnotes/macros3.html#http-log-stream> for details. * Bug fixes: + Comparison of floats and rationals never underflows. [ 2014262 ] + When failing to convert a huge LONG-FLOAT to a RATIONAL, signal an ARITHMETIC-ERROR instead of blowing the stack. [ 2015118 ] + Restored TYPECODES g++ compilation [ 2015118 ], which allowed fixing a few GC-safety bugs. + Fixed a segfault when signaling some UNBOUND-VARIABLE errors in some interpreted code on MacOS X (introduced in 2.46). [ 2020784 ] Thanks to Vladimir Tzankov <vtzankov@gmail.com>. + Fixed input after switching a :DOS stream to binary. [ 2022362 ] + Support circular objects in EQUAL and EQUALP hash-tables. [ 2029069 ] + Avoid C namespace pollution. [ 2146126 ] + Fix timeout precision in NEW-CLX. [ 2188102 ] * ANSI compliance: + The sets of declaration and type names are disjoint. + FLET, LABELS and MACROLET respect declarations.
2008-10-26Set PKGCONFIG_OVERRIDE.minskim1-1/+4
Bump PKGREVISION.
2008-10-26Enable lang/embryo.minskim1-1/+2
2008-10-26Import embryo from pkgsrc-wip. Packaged by Grzegorz BÅ‚ach.minskim5-0/+53
Embryo implements a C like scripting language used in various parts of the Enlightenment project, namely Edje. Embryo allows scripting capabilities in places that otherwise wouldn't support basic programming structures such as in Edje EDCs.
2008-10-25Remove the Darwin specific hacks in this so it can detect Java on otheradrianp1-5/+8
OSes as well (e.g. OpenSolaris).
2008-10-25Fix path to jre on SunOSadrianp1-2/+2
2008-10-25* Update to mono 2.0.1kefren4-8/+9
* Add linux PLIST Mono 2.0.1 is a minor bugfix update to Mono 2.0. For full release notes please consult: http://www.mono-project.com/Release_Notes_Mono_2.0.1
2008-10-24Remove the Darwin specific hacks in this so it can detect Java on otheradrianp1-7/+9
OSes as well (e.g. OpenSolaris).
2008-10-24Add support for builtin Java 1.6 on Darwin 9.*adrianp1-0/+61
2008-10-24Add support for builtin Java 1.6 on Darwin 9.*adrianp1-0/+74
2008-10-21Fixed a memory leak in the qr operator. PKGREVISION++rillig3-3/+18
2008-10-20Import see-3.0.1376 as lang/see.ahoka1-1/+2
2008-10-20Import see-3.0.1376 as lang/see.ahoka4-0/+68
ECMAScript is a standardized language also known variously as JavaScript, JScript, and LiveScript. SEE is a library that provides a parser and runtime environment for this language. It conforms to ECMAScript Edition 3, and to JavaScript 1.5, with some compatibility switches for earlier versions of JavaScript and Microsoft's JScript.
2008-10-19Add BUILDLINK_API_DEPENDS.perl+= perl<5.12.0 together with a commenthe1-1/+5
explaining that this should prevent a repeat of the current problem where binary perl packages built for 5.8.8 can be installed together with perl 5.10.0 without any warning/error. By the perl numbering scheme, perl 5.12.0 will be the next maintenance version which installs modules in a different path than what's used for 5.10.0. The contents of perl itself doesn't change as a result of this change, so no revision bump, but a revision bump for all packages which depend directly on perl is forthcoming, as a workaround for the 5.8.8 -> 5.10.0 transition.
2008-10-19Remove some extraneous quoting which makes this package not buildhe1-2/+2
on Linux under certain circumstances. Does not change the contents of the package for other platforms, so no revision bump.
2008-10-17Update to Pyrex-0.8.9.5. Myriad bug fixes and some new features;bjs2-8/+9
the only changelog I found is very dense (CHANGES.TXT) and I do not have the time to condense it for inclusion here.
2008-10-16Adjust PERL5_REQD from 5.8.7 to 5.10.0, so as to prevent attemptshe2-3/+4
at using p5-* packages built with the new perl from being installed together with an older version of perl. The p5-* packages will not work because the new and old perls install modules in different directories. As a consequence, bump package revision.
2008-10-16Update distinfo file.taca1-4/+4
2008-10-13Update ocamlduce to 3.10.2.obache1-4/+5
Based on maintainer update request in PR 39450. (Changes is unkonw)
2008-10-11Remove patch that tries to create "hints/dragonfly.sh" which is now parttron2-112/+1
of the distribution. This fixes build problems on platforms which use GNU patch (e.g. Mac OS X).
2008-10-11Move mk/emacs.mk to editors/emacs/modules.mk.uebayasi2-4/+4
Don't call pkg_info to get the installed Emacs version; always use the version matching EMACS_TYPE set by users. Be DEPENDS to it. This should address pkg/37146 by Aleksey Cheusov. While here convert some emacs lisp packages to user-destdir.
2008-10-11WRKDIR's basename can be anything hence be a bit more genericseb1-2/+2
while removing workdir reference in "lib/Config_heavy.pl"
2008-10-10Disable generic sharing on NetBSD/amd64 in order to get it built andkefren3-2/+19
working. Probably this should be done for all *BSD as well. Bump PKGREVISION
2008-10-10Update perl5 from version 5.8.8nb8 to 5.10.0.he30-769/+190
A large number of packages have had their internal regression tests run successfully with this update, including mod_perl for Apache. Pkgsrc changes: a number of our local patches are no longer needed. Upstream changes from version 5.8.8: # Core Enhancements * The feature pragma * New -E command-line switch * Defined-or operator * Switch and Smart Match operator * Regular expressions * say() * Lexical $_ * The _ prototype * UNITCHECK blocks * New Pragma, mro * readdir() may return a "short filename" on Windows * readpipe() is now overridable * Default argument for readline() * state() variables * Stacked filetest operators * UNIVERSAL::DOES() * Formats * Byte-order modifiers for pack() and unpack() * no VERSION * chdir, chmod and chown on filehandles * OS groups * Recursive sort subs * Exceptions in constant folding * Source filters in @INC * New internal variables * Miscellaneous * UCD 5.0.0 * MAD * kill() on Windows # Incompatible Changes * Packing and UTF-8 strings * Byte/character count feature in unpack() * The $* and $# variables have been removed * substr() lvalues are no longer fixed-length * Parsing of -f _ * :unique * Effect of pragmas in eval * chdir FOO * Handling of .pmc files * $^V is now a version object instead of a v-string * @- and @+ in patterns * $AUTOLOAD can now be tainted * Tainting and printf * undef and signal handlers * strictures and dereferencing in defined() * (?p{}) has been removed * Pseudo-hashes have been removed * Removal of the bytecode compiler and of perlcc * Removal of the JPL * Recursive inheritance detected earlier # Modules and Pragmata * Upgrading individual core modules * Pragmata Changes * New modules * Selected Changes to Core Modules # Utility Changes # New Documentation # Performance Enhancements * In-place sorting * Lexical array access * XS-assisted SWASHGET * Constant subroutines * PERL_DONT_CREATE_GVSV * Weak references are cheaper * sort() enhancements * Memory optimisations * UTF-8 cache optimisation * Sloppy stat on Windows * Regular expressions optimisations # Installation and Configuration Improvements * Configuration improvements * Compilation improvements * Installation improvements * New Or Improved Platforms # Selected Bug Fixes # New or Changed Diagnostics # Changed Internals * Reordering of SVt_* constants * Elimination of SVt_PVBM * New type SVt_BIND * Removal of CPP symbols * Less space is used by ops * New parser * Use of const * Mathoms * AvFLAGS has been removed * av_* changes * $^H and %^H * B:: modules inheritance changed * Anonymous hash and array constructors ... See 'perldoc perldelta' or http://perldoc.perl.org/perldelta.html for explanation of each of these points.
2008-10-07Update chicken to 3.4.0.ahoka3-7/+9
Changes between 3.3.0 and 3.4.0: - Fixes to the MinGW build. - PCRE 7.7 - Bug fix for bitwise-or use [Joerg Wittenberger] - Bug fix in thread-terminate! [thanks to Joerg Wittenberger] - Cygwin build patched to put the runtime libraries in the right place. [thanks to Nathan Thern] - added support for out-of-tree compilation (via the SRCDIR variable) [thanks to Ivan Shmakov] - bug fix for (string->number "/") - support for selective procedure profiling in the compiler - unit utils: moved file- and pathname-related procedures to unit files - new unit files
2008-10-07Update to monodoc 2.0, part of mono 2.0kefren4-13/+29
2008-10-07Update to mono 2.0kefren16-253/+69
Improved performance, more features, C# 3.0, complete LINQ support etc. For a more complete list of changes please consult: http://www.mono-project.com/Release_Notes_Mono_2.0
2008-10-06Add support to derive the Python version from PKGNAME_OLD.joerg1-1/+3
2008-10-03Fix pax invocation.joerg2-4/+4
2008-09-24Not jobsafe.ahoka1-1/+2
Reported by ASau.
2008-09-22Make the change made in replace.mk 1.10 work on Solaris.minskim1-2/+4
Previously, a non-existing directory in REPLACE_RUBY_DIRS stopped the build on Solaris.