summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2011-11-17Add missing devel/readline buildlink.sbd1-4/+6
/^CHECK_WRKREF_SKIP/s/PKGVERSION/VERSION/ (PKGVERSION has the nbX in it) Bump PKGREVISION
2011-11-16Fix this so that it installs cleanly, by doing several things:he2-5/+27
1) fix the PLIST to correspond with the files added+removed 2) fix the interpreter in some installed files 3) ignore work-directory references in 12 installed files. Yes, this is wrong, and has been reported to parrot, issue #201. PKGREVISION not bumped, since this would not create a package earlier.
2011-11-16Add missing devel/readline buildlinks.sbd1-1/+3
Bump PKGREVISIONs
2011-11-15Update parrot to version 3.8.0.he2-6/+6
Parrot 3.8.0 News: - Core + New tools/release/auto_release.pl script automates most of release - Languages + Winxed - Updated snapshot to version 1.2.0 - allowtailcall modifier in try --debug command-line option, __DEBUG__ predefined constant and __ASSERT__ builtin - namespace, class, and ~ (bitwise not) operators - Implicit nested namespace in namespace and class declarations - -X command-line arg - Documentation + Improved release manager guide - Tests + New Makefile target "resubmit_smolder" to resubmit test results + New Makefile target "all_hll_test" runs the test suite of all HLLs and libraries known to work on Parrot + New Makefile target "interop_tests" run language interoperability tests, which runs as part of the normal "make test" as well
2011-11-14Remove "PREFIX=" and recover "DATE=" line.taca1-2/+2
Thanks to sbd@ noted by this mistake. No PKGREVISION bump since install stage would be failed with previous commit.
2011-11-14lang/tcl: Fix DragonFly breakagemarino3-2942/+45
The previous commit caused DragonFly to build the libraries with a different file name than specified in the PLIST, causing the build to fail on DragonFly. This commit forces DragonFly to use library names without dots to match the PLIST.
2011-11-13Update ruby-rdoc package to 3.11.taca1-2/+2
=== 3.11 / 2011/10-17 * Bug fixes * Avoid parsing TAGS files included in gems. Issue #81 by Santiago Pastorino. === 3.10 / 2011-10-08 * Major enhancements * RDoc HTML output has been improved: * The search from Vladimir Kolesnikov Sdoc has been integrated. The search index generation is a reusable component through RDoc::Generator::JsonIndex * The table of contents is now a separate page and now shows links to headings and sections inside a page or class. * Class pages no longer show the namespace and no longer have file info pages. * HTML output is HTML 5. * Static files can be copied into RDoc using --copy-files * RDoc supports additional documentation formats: * TomDoc 1.0.0-rc1 * RD format The default markup can be set via the <tt>--markup</tt> option. The format of documentation in a particular file can be specified by the +:markup:+ directive. If the +:markup:+ directive is in the first comment it is used as the default for the entire file. For other comments it overrides the default markup format. The markup format can be set for rake tasks using RDoc::Task#markup * RDoc can save and load an options file. To create an options file that defaults to using TomDoc markup run: rdoc --markup tomdoc --write-options This will create a .rdoc_options file. Check it in to your VCS and package it with your gem. RDoc will automatically load this file and combine it with the user's options. Some options are not saved. See RDoc::Options@Saved+Options for full details. * Minor enhancements * RDoc autoloads everything. You only need to require 'rdoc' now. * HTML headings now have ids matching their titles. = Hello! Is rendered as <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> See RDoc::Markup@Links for further details. * For HTML output RDoc uses +SomeClass.method_name+ and +SomeClass#method_name+ for remote methods and attributes and +::method_name+ and +#method_name+ for local methods. * RDoc makes an effort to syntax-highlight ruby code in verbatim sections. See RDoc::Markup@Paragraphs+and+Verbatim * Added RDoc::TopLevel#text? and RDoc::Parser::Text to indicate a parsed file contains no ruby constructs. * Added <tt>rdoc-label</tt> link scheme which allows bidirectional links. See RDoc::Markup for details. * Added RDoc::Comment which encapsulates comment-handling functionality. * Added RDoc::Markup::PreProcess::post_process to allow arbitrary comment munging. * RDoc::RDoc::current is set for the entire RDoc run. * Split rdoc/markup/inline into individual files for its component classes. * Moved token stream HTML markup out of RDoc::AnyMethod#markup_code into RDoc::TokenStream::to_html * "Top" link in section headers is no longer inside the heading element. * RDoc avoids printing some warnings unless run with `rdoc --verbose`. For Rails issue #1646. * Finishing a paragraph with two or more spaces will result in a line break. This feature is experimental and may be modified or removed. * Bug fixes * Performance of RDoc::RubyLex has been improved. Ruby Bug #5202 by Ryan Melton. * Clicking a link in the method description now works. Issue #61 by Alan Hogan. * Fixed RDoc::Markup::Parser for CRLF line endings. Issue #67 by Marvin Gülker. * Fixed lexing of percent strings like %r{#}. Issue #68 by eclectic923. * The C parser now understands classes defined with +rb_struct_define_without_accessor+ (like Range). Pull Request #73 by Dan Bernier * Fixed lexing of <code>a b <<-HEREDOC</code>. Issue #75 by John Mair. * Added LEGAL.rdoc with references to licenses in other files. Issue #78 by Dmitry Jemerov. * Block parameters are displayed in Darkfish output again. Issue #76 by Andrea Singh. * The method parameter coverage report no longer includes parameter default values. Issue #77 by Jake Goulding. * The module for an include is not looked up until parsed all the files are parsed. Unless your project includes nonexistent modules this avoids worst-case behavior (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13Clean up DEINSTALL/INSTALL scripts.taca9-22/+13
* Remove setting PREFIX. * Remove executing exit on last line. Bump PKGREVISION.
2011-11-12Fix post-install rule to not (sometimes) leave behind mode 744dholland1-6/+25
directories.
2011-11-11Change ${HOMEPAGE} to ${HOMEPAGE_NONCOMMERCIAL} and set ${HOMEPAGE_COMMERCIAL}alnsn1-3/+3
to a valid URL.
2011-11-11Unbreak after changes to scotty. Add user-destdir supportjoerg1-4/+7
2011-11-11NOT_FOR_BULK_PLATFORM= Linux-*-*sbd1-1/+2
2011-11-08Update to SBCL 1.0.53asau2-6/+6
changes in sbcl-1.0.53 relative to sbcl-1.0.52: * enhancement: on 64-bit targets, in src/compiler/generic/early-vm.lisp, the parameter n-fixnum-tag-bits may now vary from 1 (fixnum = (signed-byte 63)) to 3 (fixnum = (signed-byte 61)) at build-time. * enhancement: SB-EXT:WAIT-FOR allows waiting for arbitrary events. * minor(?) incompatible(?) change: The default fixnum width on 64-bit targets is now 63 bits (up from 61). * enhancement: DESCRIBE now reports a lambda-list and source location for complext setf-expanders. * bug fix: PUSH, PUSHNEW, POP, REMF, INCF, DECF, DEFINE-MODIFY-MACRO, GETF, LOGBITP, LDB, and MASK-FIELD now arrange for non-primary values of multiple-valued places to be set to NIL, instead of signalling an error (per a careful reading of CLHS 5.1.2.3). * bug fix: floating-point traps now work on darwin/x86 and /x86-64. * bug fix: repair crash in x86oid darwin signal handling emulation when built with certain compilers. * bug fix: SB-ROTATE-BYTE misrotated to the right when using constant rotation arguments on x86-64. (lp#882151) * bug fix: low-level control flow optimisations could result in bogus code in functions with tail and non-tail calls to local functions on x86oids. (lp#883500) * bug fix: on SPARC/:sb-unicode, avoid crashing the assembler by trying to emit literal characters > (code-char 4095), for comparisons with constant characters. * bug fix: ROOM reported only the low 32 bits of dynamic space usage on 64 bit platforms. (lp#881445) * bug fix: DELETE-FILE did not MERGE-PATHNAMES, making it possible to delete the wrong file when using relative pathnames. (lp#882877) * bug fix: optimized SEARCH of vectors-on-vectors mishandled zero-length sequences and :KEY NIL. changes in sbcl-1.0.52 relative to sbcl-1.0.51: * enhancement: ASDF has been updated to version 2.017. * enhancement: the --core command line option now accepts binaries with an embedded core. * enhancement: when built with :sb-core-compression, core files (regular or executable) can be compressed with zlib. Use the :COMPRESSION argument to SAVE-LISP-AND-DIE to specify a compression level. * enhancement: --[no-]merge-core-pages determines whether the runtime hints the operating system that identical core pages between SBCL processes should share the same physical memory. Default is to only enable this for compressed cores. * optimization: SLEEP no longer conses. * optimization: *PRINT-PRETTY* no longer slows down printing of strings or bit-vectors when using the standard pretty-print dispatch table. * bug fix: non-function FTYPE declarations no longer cause a compiler-error. (lp#738464) * bug fix: compiler-errors causes by MEMBER types in conjunction with with AREF, CHAR, etc. (lp#826971) * bug fix: compiler-errors causes by integer arguments with composed of multiple ranges to ARRAY-IN-BOUNDS-P. (lp#826970) * bug fix: ,@ and ,. now signal a read-time error for certain non-list expressions. (lp#770184) * bug fix: complex single float literals are correctly aligned when used as arguments of arithmetic operators. * bug fix: on 32-bit platforms, rounding of double floats larger than a fixnum is correct. (reported by Peter Keller) * bug fix: stray FD-HANDLERs are no longer left lying around after unwinds from RUN-PROGRAM. (lp#840190, reported by Dominic Pearson; fix from Max Mikhanosha) * bug fix: redefining classes such that slots with custom allocation are added or removed works again.
2011-11-08Add and enable ruby193-base and ruby193.taca1-1/+3
2011-11-08Importing ruby193 version 1.9.3p0 (Ruby 1.9.3 p0).taca2-0/+34
This is meta pacakge which contains lang/ruby193-base, databases/ruby-gdbm, devel/ruby-curses, devel/ruby-fiddle, devel/ruby-readline and x11/ruby-tk.
2011-11-08Importing ruby193-base version 1.9.3p0 (Ruby 1.9.3 p0):taca28-0/+1879
Please refer detail for: http://svn.ruby-lang.org/repos/ruby/tags/v1_9_3_0/NEWS http://svn.ruby-lang.org/repos/ruby/tags/v1_9_3_0/ChangeLog Short summary from NEWS: * Ruby's License is changed from a dual license with GPLv2 to a dual license with 2-clause BSDL. * Encoding * new encodings: CP950, CP951, UTF-16 and UTF-32 * change alias: * SJIS is Windows-31J * Regexps now support Unicode 6.0. (new characters and scripts) * builtin classes * ARGF * new methods: ARGF.read_nonblock and so on. * Array * extended method: Array#pack supports endian modifiers * String * extended method: String#unpack supports endian modifiers * new method: String#prepend and String#byteslice * Bignum * Multiplication algorithm for Bignums with a large number of digits over 150 BDIGITs is changed in order to reduce its calculation time. Now such large Bignums are multiplied by using Toom-3 algorithm. * File * new constant: File::NULL and File::DIRECT * IO * extended method: IO#putc supports multibyte characters * new methods: * IO#advise, IO.write and IO.binwrite * Kernel * move #__id__ to BasicObject * extended method: Kernel#rand supports range argument * Module * new methods: Module#private_constant and Module#public_constant * Random * extended method: Random.rand supports range argument * Time * extended method: Time#strftime supports %:z and %::z * Process * Process#maxgroups and Process#maxgroups= now raise NotImplementedError if the platform don't support supplementary groups concept
2011-11-08* Use RUBY_VERSION_SUPPORTED.taca2-14/+14
* Correct DESCR; this isn't 1.9.1 but 1.9.2. And update including packages. * Bump PKGREVISION.
2011-11-08* Use RUBY_VERSION_SUPPORTED.taca7-14/+48
* Correct DESCR; this is 1.9.2 release minimum base package. * Don't remove whole gem directory but keep its own gem directory only. * Also make MESSAGE explicitly 1.9.2. * rubygem: Avoid to use Gem::RequirePathsBuilder now. * Bump PKGREVISION.
2011-11-08* Change RUBY_VERSION_SUFFIX to RUBY_VERSION_FULL.taca1-8/+9
* Explicitly show 1.8.7 in DESCR and COMMENT. * Use RUBY_VERSION_SUPPORTED. * Bump PKGREVISION.
2011-11-08* Change RUBY_VERSION_SUFFIX to RUBY_VERSION_FULL.taca3-7/+6
* Remove workaround for version.h.
2011-11-08* Change RUBY_VERSION_SUFFIX to RUBY_VERSION_FULL.taca1-4/+4
* Add support for Ruby 1.9.3.
2011-11-08* Add LICENSE for Ruby 1.9.3.taca1-6/+15
* Add RUBY_DISTNAME to MESSAGE_SUBST. * Move RUBY_SITE_SUBDIR from rubyversion.mk
2011-11-08* Document rdoc's version contained in each Ruby release.taca1-4/+11
* Add Ruby 1.9.3 support.
2011-11-08* Document rubygem's version contained in each Ruby release.taca1-15/+52
* Add RUBYGEM_LANG and use it as LANG and LC_CTYPE for proper rdoc processing. * Add Ruby 1.9.3 support.
2011-11-08Use RUBY_VERSION instead of RUBY_REQD.taca1-2/+2
2011-11-08* Improve make macro's documentation.taca1-137/+260
* Use 18, 19 instead of 1.9, 2.0 for RUBY_VERSION_DEFAULT. * Add 193 for Ruby 1.9.3, too. * If RUBY_VERSION_SUPPORTED contains single version of Ruby, make package force depends to the version. * Move RUBY_SITE_SUBDIR to Makefile.common. * Change RUBY_VERSION_SUFFIX to RUBY_VERSION_FULL. * Remove small code for NetBSD 1.x. * Change RUBY_DLEXT and RUBY_SLEXT by ${_OPSYS_SHLIB_TYPE} instead of ${OPSYS}'s value.
2011-11-08Use ${RUBY_BASE} instead of ${RUBY_VER}-base.taca1-2/+2
2011-11-08Fix PR 45558 (aka CVE-2011-4119) which also turns out to affect Moscow ML.dholland3-2/+96
Credit to Florian Weimer for noticing this.
2011-11-08Change a unused variable referacne to a fixed string that I missed whensbd10-20/+20
coping the Mac OS X sdk filename handling. Thank to Matthias Rampke in PR#45581 for catching this.
2011-11-07Don't require 'yaml' unconditionaly but try to call Gem.load_yaml.taca1-2/+8
Avoid possible problem of ruby192-base with ruby-psych installed.
2011-11-06Fix insecure-temp-files, PR 45558dholland3-3/+92
2011-11-02Improve previous, builds again on netbsd now.dholland2-4/+4
2011-11-01MirBSD build fix: add MirBSD stanzas to tcl.m4, regen configure,bsiegert4-49/+3097
add a patch for EOVERFLOW handling.
2011-11-01cpp is /usr/libexec/cpp in MirBSD. Fixes build.bsiegert3-5/+11
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-2/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd10-18/+20
2011-10-31Update to GCC 4.6.2sbd2-7/+6
GCC 4.6.2 is a bug-fix release containing fixes for regressions and serious bugs in GCC 4.6.1, with over 110 bugs fixed since previous release. This is the list of problem reports (PRs) from GCC's bug tracking system that are known to be fixed in the 4.6.2 release. This list might not be complete (that is, it is possible that some PRs that have been fixed are not listed here). http://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.6.2
2011-10-31allow this to build on NetBSD-*-x86_64reed1-1/+2
I didn't check the others. We should make consider just removing all these ONLY_FOR_PLATFORM restrictions and just make the description or a +DISPLAY message clear on what is supported. cVS: ----------------------------------------------------------------------
2011-10-31Improve the gdbm_compat handling by searching any ndbm.h found for thesbd8-70/+151
string 'This file is part of GDBM' and ignoring it if it dose. Thanks to obache@ for the idea.
2011-10-31Add a minor cleanup to my last commit.sbd2-9/+6
2011-10-31Add devel/ruby-fiddle and textproc/ruby-psych to MESSAGE.taca2-3/+5
Bump PKGREVISION.
2011-10-31Improve the gdbm_compat handling by searching any ndbm.h found for thesbd2-24/+42
string 'This file is part of GDBM' and ignoring it if it dose. Thanks to obache@ for the idea.
2011-10-29Revert last commit, and simple fix.obache3-20/+4
Drop "@pkgdir lib/python${PY_VER_SUFFIX}/test/data" from PLIST.common_end, it should be removed at updated to 2.7.1rc1.
2011-10-29Do not change PHP_VERSIONS_ACCEPTED in phpversion.mk.cheusov1-14/+1
It is not necessary anymore. No objections in tech-pkg@.
2011-10-29lang/python27: Fix pkg_delete errormarino3-5/+20
Fixes the following error: > pkg_delete python27-2.7.2 pkg_delete: Directory '/usr/pkg/lib/python2.7/test/data' disappeared, skipping
2011-10-29Update to 2.10.6. Minor bugfixes found in Changelog:kefren7-136/+59
Simplify building with the Android NDK. Allow Android'd support_boehm=no to work. Disable the -Wunused-by-set-variable warning supported by newer gcc versions. Add shared_perfcounters option to enable minimal. Fix configure check for darwin to support all variants Fix mingw32 cross-build on a git no-branch checkout. Add a membar to libgc's UNLOCK () on arm. Pass HAVE_ARMV6 to libgc on darwin too.
2011-10-29* remove unwanted things (pure python module).obache2-10/+6
* register egg-info. Bump PKGREVISION.
2011-10-29* LICENSE=mitobache2-7/+9
* register egg-info Bump PKGREVISION.
2011-10-28Internally, Python has a set of modules depending on "platform". Thedsainty2-7/+18
"platform" in Python terms is different for Linux kernel 2.* Vs Linux kernel 3.*. Add in support to pull in a different PLIST for Linux 3.*. Fixes build under Ubuntu 11.10. XXX Perhaps it would be cleaner to name the PLIST to match the python platform name - since we already calculate that anyway, and that is exactly what drives the contents of these PLISTs.
2011-10-28+ p5-Switchobache1-1/+2