pkgsrc/lang
ryoon 437b8ad5e9 Update to 3.4
* Tested under NetBSD/amd64 6.99.28 and Debian GNU/Linux/amd64 7.3

Changelog:
From: http://llvm.org/svn/llvm-project/llvm/tags/RELEASE_34/final/docs/ReleaseNotes.rst
Non-comprehensive list of changes in this release
=================================================

* This is expected to be the last release of LLVM which compiles using a C++98
  toolchain. We expect to start using some C++11 features in LLVM and other
  sub-projects starting after this release. That said, we are committed to
  supporting a reasonable set of modern C++ toolchains as the host compiler on
  all of the platforms. This will at least include Visual Studio 2012 on
  Windows, and Clang 3.1 or GCC 4.7.x on Mac and Linux. The final set of
  compilers (and the C++11 features they support) is not set in stone, but we
  wanted users of LLVM to have a heads up that the next release will involve
  a substantial change in the host toolchain requirements.

* The regression tests now fail if any command in a pipe fails. To disable it in
  a directory, just add ``config.pipefail = False`` to its ``lit.local.cfg``.
  See :doc:`Lit <CommandGuide/lit>` for the details.

* Support for exception handling has been removed from the old JIT. Use MCJIT
  if you need EH support.

* The R600 backend is not marked experimental anymore and is built by default.

* ``APFloat::isNormal()`` was renamed to ``APFloat::isFiniteNonZero()`` and
  ``APFloat::isIEEENormal()`` was renamed to ``APFloat::isNormal()``. This
  ensures that ``APFloat::isNormal()`` conforms to IEEE-754R-2008.

* The library call simplification pass has been removed.  Its functionality
  has been integrated into the instruction combiner and function attribute
  marking passes.

* Support for building using Visual Studio 2008 has been dropped. Use VS 2010
  or later instead. For more information, see the `Getting Started using Visual
  Studio <GettingStartedVS.html>`_ page.

* The Loop Vectorizer that was previously enabled for ``-O3`` is now enabled
  for ``-Os`` and ``-O2``.

* The new SLP Vectorizer is now enabled by default.

* ``llvm-ar`` now uses the new Object library and produces archives and
  symbol tables in the gnu format.

* FileCheck now allows specifing ``-check-prefix`` multiple times. This
  helps reduce duplicate check lines when using multiple RUN lines.

* The bitcast instruction no longer allows casting between pointers
   with different address spaces. To achieve this, use the new addrspacecast
   instruction.

* Different sized pointers for different address spaces should now
  generally work. This is primarily useful for GPU targets.

* OCaml bindings have been significantly extended to cover almost all of the
  LLVM libraries.

Mips Target
-----------

Support for the MIPS SIMD Architecture (MSA) has been added. MSA is supported
through inline assembly, intrinsics with the prefix '``__builtin_msa``', and
normal code generation.

For more information on MSA (including documentation for the instruction set),
see the `MIPS SIMD page at Imagination Technologies
<http://imgtec.com/mips/mips-simd.asp>`_

PowerPC Target
--------------

Changes in the PowerPC backend include:

* fast-isel support (for faster ``-O0`` code generation)
* many improvements to the builtin assembler
* support for generating unaligned (Altivec) vector loads
* support for generating the fcpsgn instruction
* generate ``frin`` for ``round()`` (not ``nearbyint()`` and ``rint()``, which
  had been done only in fast-math mode)
* improved instruction scheduling for embedded cores (such as the A2)
* improved prologue/epilogue generation (especially in 32-bit mode)
* support for dynamic stack alignment (and dynamic stack allocations with large alignments)
* improved generation of counter-register-based loops
* bug fixes

SPARC Target
------------

The SPARC backend got many improvements, namely

* experimental SPARC V9 backend
* JIT support for SPARC
* fp128 support
* exception handling
* TLS support
* leaf functions optimization
* bug fixes

SystemZ/s390x Backend
---------------------

LLVM and clang can now optimize for zEnterprise z196 and zEnterprise EC12
targets.  In clang these targets are selected using ``-march=z196`` and
``-march=zEC12`` respectively.

From: http://llvm.org/svn/llvm-project/cfe/tags/RELEASE_34/final/docs/ReleaseNotes.rst
What's New in Clang 3.4?
========================

Some of the major new features and improvements to Clang are listed here.
Generic improvements to Clang as a whole or to its underlying infrastructure
are described first, followed by language-specific sections with improvements
to Clang's support for those languages.

Last release which will build as C++98
--------------------------------------

This is expected to be the last release of Clang which compiles using a C++98
toolchain. We expect to start using some C++11 features in Clang starting after
this release. That said, we are committed to supporting a reasonable set of
modern C++ toolchains as the host compiler on all of the platforms. This will
at least include Visual Studio 2012 on Windows, and Clang 3.1 or GCC 4.7.x on
Mac and Linux. The final set of compilers (and the C++11 features they support)
is not set in stone, but we wanted users of Clang to have a heads up that the
next release will involve a substantial change in the host toolchain
requirements.

Note that this change is part of a change for the entire LLVM project, not just
Clang.

Major New Features
------------------

Improvements to Clang's diagnostics
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Clang's diagnostics are constantly being improved to catch more issues, explain
them more clearly, and provide more accurate source information about them. The
improvements since the 3.3 release include:

- -Wheader-guard warns on mismatches between the #ifndef and #define lines
  in a header guard.

  .. code-block:: c

    #ifndef multiple
    #define multi
    #endif

  returns
  `warning: 'multiple' is used as a header guard here, followed by #define of a different macro [-Wheader-guard]`

- -Wlogical-not-parentheses warns when a logical not ('!') only applies to the
  left-hand side of a comparison.  This warning is part of -Wparentheses.

  .. code-block:: c++

    int i1 = 0, i2 = 1;
    bool ret;
    ret = !i1 == i2;

  returns
  `warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]`


- Boolean increment, a deprecated feature, has own warning flag
  -Wdeprecated-increment-bool, and is still part of -Wdeprecated.
- Clang errors on builtin enum increments and decrements.

  .. code-block:: c++

    enum A { A1, A2 };
    void test() {
    	A a;
    	a++;
    }

  returns
  `error: must use 'enum' tag to refer to type 'A'`


- -Wloop-analysis now warns on for-loops which have the same increment or
  decrement in the loop header as the last statement in the loop.

  .. code-block:: c

    void foo(char *a, char *b, unsigned c) {
	  for (unsigned i = 0; i < c; ++i) {
		a[i] = b[i];
		++i;
	  }
    }

  returns
  `warning: variable 'i' is incremented both in the loop header and in the loop body [-Wloop-analysis]`

- -Wuninitialized now performs checking across field initializers to detect
  when one field in used uninitialized in another field initialization.

  .. code-block:: c++

    class A {
      int x;
      int y;
      A() : x(y) {}
    };

  returns
  `warning: field 'y' is uninitialized when used here [-Wuninitialized]`

- Clang can detect initializer list use inside a macro and suggest parentheses
  if possible to fix.
- Many improvements to Clang's typo correction facilities, such as:

  + Adding global namespace qualifiers so that corrections can refer to shadowed
    or otherwise ambiguous or unreachable namespaces.
  + Including accessible class members in the set of typo correction candidates,
    so that corrections requiring a class name in the name specifier are now
    possible.
  + Allowing typo corrections that involve removing a name specifier.
  + In some situations, correcting function names when a function was given the
    wrong number of arguments, including situations where the original function
    name was correct but was shadowed by a lexically closer function with the
    same name yet took a different number of arguments.
  + Offering typo suggestions for 'using' declarations.
  + Providing better diagnostics and fixit suggestions in more situations when
    a '->' was used instead of '.' or vice versa.
  + Providing more relevant suggestions for typos followed by '.' or '='.
  + Various performance improvements when searching for typo correction
    candidates.

- `LeakSanitizer <LeakSanitizer.html>`_ is an experimental memory leak detector
  which can be combined with AddressSanitizer.

New Compiler Flags
------------------

- Clang no longer special cases -O4 to enable lto. Explicitly pass -flto to
  enable it.
- Clang no longer fails on >= -O5. These flags are mapped to -O3 instead.
- Command line "clang -O3 -flto a.c -c" and "clang -emit-llvm a.c -c"
  are no longer equivalent.
- Clang now errors on unknown -m flags (``-munknown-to-clang``),
  unknown -f flags (``-funknown-to-clang``) and unknown
  options (``-what-is-this``).

C Language Changes in Clang
---------------------------

- Added new checked arithmetic builtins for security critical applications.

C++ Language Changes in Clang
-----------------------------

- Fixed an ABI regression, introduced in Clang 3.2, which affected
  member offsets for classes inheriting from certain classes with tail padding.
  See Bug16537.

- Clang 3.4 supports the 2013-08-28 draft of the ISO WG21 SG10 feature test
  macro recommendations. These aim to provide a portable method to determine
  whether a compiler supports a language feature, much like Clang's
  |has_feature macro|_.

.. |has_feature macro| replace:: ``__has_feature`` macro
.. _has_feature macro: LanguageExtensions.html#has-feature-and-has-extension

C++1y Feature Support
^^^^^^^^^^^^^^^^^^^^^

Clang 3.4 supports all the features in the current working draft of the
upcoming C++ standard, provisionally named C++1y. Support for the following
major new features has been added since Clang 3.3:

- Generic lambdas and initialized lambda captures.
- Deduced function return types (``auto f() { return 0; }``).
- Generalized ``constexpr`` support (variable mutation and loops).
- Variable templates and static data member templates.
- Use of ``'`` as a digit separator in numeric literals.
- Support for sized ``::operator delete`` functions.

In addition, ``[[deprecated]]`` is now accepted as a synonym for Clang's
existing ``deprecated`` attribute.

Use ``-std=c++1y`` to enable C++1y mode.

OpenCL C Language Changes in Clang
----------------------------------

- OpenCL C "long" now always has a size of 64 bit, and all OpenCL C
  types are aligned as specified in the OpenCL C standard. Also,
  "char" is now always signed.

Internal API Changes
--------------------

These are major API changes that have happened since the 3.3 release of
Clang. If upgrading an external codebase that uses Clang as a library,
this section should help get you past the largest hurdles of upgrading.

Wide Character Types
^^^^^^^^^^^^^^^^^^^^

The ASTContext class now keeps track of two different types for wide character
types: WCharTy and WideCharTy. WCharTy represents the built-in wchar_t type
available in C++. WideCharTy is the type used for wide character literals; in
C++ it is the same as WCharTy, but in C99, where wchar_t is a typedef, it is an
integer type.

Static Analyzer
---------------

The static analyzer has been greatly improved. This impacts the overall analyzer quality and reduces a number of false positives.
In particular, this release provides enhanced C++ support, reasoning about initializer lists, zeroing constructors, noreturn destructors and modeling of destructor calls on calls to delete.

Clang Format
------------

Clang now includes a new tool ``clang-format`` which can be used to
automatically format C, C++ and Objective-C source code. ``clang-format``
automatically chooses linebreaks and indentation and can be easily integrated
into editors, IDEs and version control systems. It supports several pre-defined
styles as well as precise style control using a multitude of formatting
options. ``clang-format`` itself is just a thin wrapper around a library which
can also be used directly from code refactoring and code translation tools.
More information can be found on `Clang Format's
site <http://clang.llvm.org/docs/ClangFormat.html>`_.
2014-01-19 14:06:41 +00:00
..
a60 set LICENSE. 2014-01-02 04:09:11 +00:00
abcl Update to ABCL 1.2.1 2013-07-02 19:33:59 +00:00
algol68g * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
asn1c Adding package for ASN.1 to C compiler asn1c from Lev Walkin version 2013-10-26 14:44:12 +00:00
awka Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
baci Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
basic256 Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
boomerang Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
brandybasic Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
bwbasic Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
caml-light Don't force -fno-defer-pop. 2013-10-27 20:32:56 +00:00
camlp5 Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
ccsh Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
cdl3 No change to package version: just updated maintainer e-mail address (no 2013-04-03 12:53:58 +00:00
Cg-compiler Munged MAINTAINER on file copy. Fixed. 2013-06-30 14:14:10 +00:00
chicken Update to Chicken 4.8.0.5 2013-10-04 15:55:38 +00:00
cim Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cint Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
clang Update to 3.4 2014-01-19 14:06:41 +00:00
classpath Resolves: 2013-04-06 20:27:16 +00:00
classpath-gui Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
clisp Rpath is a linker option, prefix it with -Wl when necessary. 2013-10-26 22:03:49 +00:00
clojure Update to Clojure 1.5.1 2013-06-11 19:51:27 +00:00
coq Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
cparser Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
cu-prolog Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
eag Updated package to version 2.6. Added license (eag-license). Upstream changes 2013-04-03 13:26:44 +00:00
ecl Update to ECL 13.5.1 2013-06-16 07:42:19 +00:00
eieio Resolves: 2013-04-06 20:27:16 +00:00
elisp-manual Shorten. Note that this is the emacs21 manual and emacs22+ come with 2013-08-03 21:47:00 +00:00
elk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
embryo band-aid patch for missing fxp2f(3) on NetBSD<6. 2013-08-30 11:12:04 +00:00
erlang From https://github.com/erlang/otp/pull/46#issuecomment-21719585 2013-12-24 15:00:44 +00:00
erlang-doc Update Erlang/OTP to R16B02. 2013-10-20 18:37:49 +00:00
erlang-man Update Erlang/OTP to R16B02. 2013-10-20 18:37:49 +00:00
f2c Only install catman page if catinstall is set. 2013-09-12 13:10:19 +00:00
ficl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
focal Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
fort77 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
g95 Fix relocation errors on OSX. 2013-12-10 11:44:47 +00:00
gambc Don't try to optimize some files, clang will require up to 8GB of memory 2013-12-15 19:39:34 +00:00
gauche Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
gawk Fix build under Solaris, in particular with the SunStudio compiler. 2013-12-26 19:19:31 +00:00
gcc Resolves: 2013-04-06 20:27:16 +00:00
gcc-aux lang/gcc-aux: when in doubt, revbump 2014-01-07 02:30:11 +00:00
gcc3 Disable gcc3-java as it does not build, has not built in years, and 2012-04-07 17:33:54 +00:00
gcc3-c Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
gcc3-c++ Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
gcc3-f77 Resolves: 2013-04-06 20:27:16 +00:00
gcc3-objc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
gcc34 'Please use ${ECHO} instead of "echo".' 2013-04-06 14:58:18 +00:00
gcc44 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
gcc45 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
gcc46 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
gcc47 Use better gfortran patch from Kai-Uwe Eckhardt in PR 48512. 2014-01-14 19:16:52 +00:00
gcc47-libs fix -specs for ccache 2013-08-15 06:48:50 +00:00
gcc48 Use better gfortran patch, from Kai-Uwe Eckhardt in PR 48512. 2014-01-14 19:32:52 +00:00
gcc48-libs Bump PKGREVISION because gcc48/Makefile says so. 2014-01-14 19:33:10 +00:00
gforth Remove -fno-defer-pop -fcaller-saves -fno-inline, which are workarounds 2013-10-28 23:48:30 +00:00
ghc After all the Sturm und Drang, it turns out the only thing needed for 2013-12-06 06:20:00 +00:00
ghc-bootstrap Improve the ghc bootstrap kit. 2014-01-09 23:55:59 +00:00
ghc7 main DISTFILE must not be commented out. 2013-12-17 01:08:30 +00:00
gnat-aux Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
go FETCH_USING should not be set in package Makefiles. 2014-01-05 14:55:09 +00:00
gpc Resolves: 2013-04-06 20:27:16 +00:00
gprolog Add another site. 2013-06-13 16:31:55 +00:00
guile Patch around gtexinfo 5.2's high-and-mighty attitude towards indiscretions. 2013-11-30 07:06:25 +00:00
guile16 guile doesn't use any curses, termcap or terminfo 2013-10-18 15:53:27 +00:00
gwydion-dylan Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
heirloom-awk
hugs * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
icc11 Switch to gcc48. Bump PKGREVISION. 2014-01-16 09:37:01 +00:00
icon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
inform Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
intercal Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
ja-gawk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
jamvm Don't use -fno-reorder-blocks. 2013-10-28 23:47:18 +00:00
japhar Work around linux's broken sort(1). 2013-04-28 03:31:22 +00:00
jasmin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
java-lang-spec Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
java-vm-spec Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
jikes Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
jini
joos Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
js Add CONFLICTS with spidermonkey 2012-10-21 21:06:05 +00:00
kaffe Fix giflib5 fallout. 2013-08-31 14:50:32 +00:00
kaffe-esound
kaffe-x11 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
kali Remove flagrantly wrong shell syntax (trailing &&) appearing in the 2014-01-02 04:18:49 +00:00
konoha Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
ksi * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
librep Update to 0.92.3 2014-01-03 05:01:36 +00:00
libtcl-nothread Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
likepython "Please write NetBSD.org instead of netbsd.org" 2013-04-06 13:09:24 +00:00
lua Fixes missing ":" 2013-11-05 11:26:44 +00:00
lua51 No need to define BUILDLINK_ABI_DEPENDS, pkgbase is reset. 2013-10-30 08:59:36 +00:00
lua52 Update to 5.2.3: 2014-01-02 19:57:39 +00:00
LuaJIT Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
LuaJIT2 Import LuaJIT version 2.0.2. 2013-07-14 21:42:00 +00:00
lush * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
maude Fix build with newer bison. Don't use <rope> with clang, but fall back 2013-11-29 18:30:09 +00:00
mawk Update to 1.3.4.20130219 2013-05-13 01:47:57 +00:00
mercury * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
minischeme Use void on mark. 2013-01-11 23:27:37 +00:00
mit-scheme-bin Fix a common mistake in many different packages: POSIX says that when using 2013-10-18 11:41:17 +00:00
mono Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
mono-basic Clear PLATFORM in the environment; has the same consequences as in the 2013-11-24 02:38:58 +00:00
mono2 Fix incorrect -ldl handling. 2014-01-15 19:46:12 +00:00
moscow_ml Don't use -fno-defer-pop. 2013-10-28 23:49:17 +00:00
mpd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
nawk Fix build under Mac OS X (Mountain Lion). 2013-06-14 14:46:37 +00:00
newlisp Update to 10.5.4 2013-10-12 10:30:40 +00:00
nhc98 minor tidyup from PR 45318 2013-11-02 18:58:27 +00:00
nodejs Include lang/python/tool.mk, gyp-mac-tool previously used the system python 2014-01-13 13:07:51 +00:00
nqp Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
objc Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
ocaml Fix build on Darwin 9. 2014-01-17 10:03:23 +00:00
onyx This probes for and uses libedit, but libedit isn't buildlinked. 2014-01-05 04:10:06 +00:00
oo2c Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
open-cobol-ce Import open-cobol-ce-1.1.59 as lang/open-cobol-ce. 2013-05-26 04:13:05 +00:00
opencobol Set CONFLICTS. 2013-05-26 04:15:40 +00:00
openjdk7 Fix PR pkg/48530. Fix packaging under NetBSD/i386. 2014-01-18 06:11:37 +00:00
openjdk7-bin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
opensource-cobol Set CONFLICTS. 2013-05-26 04:15:40 +00:00
ossp-js * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
p2c Redo DESTDIR support correctly. hi joerg-from-2009 :-) 2014-01-02 07:45:14 +00:00
p5-Switch Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
parrot Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
pcc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
pcc-current Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
pear Remove description for old versions of php pakcages. 2013-03-16 02:06:20 +00:00
perl5 Changes 5.18.2: 2014-01-13 09:59:16 +00:00
pfe Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
pforth Remove flags that have been GCC's since ~forever. 2013-10-28 23:47:56 +00:00
php Update php55 to 5.5.8. 2014-01-11 17:05:09 +00:00
php5-perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
php53 Update php53 to 5.3.28 (PHP 5.3.28). 2013-12-13 15:30:35 +00:00
php54 Update php to 5.4.24. 2014-01-11 17:03:57 +00:00
php55 Update php55 to 5.5.8. 2014-01-11 17:05:09 +00:00
picoc Use a pointer to the void type, not a enum value that turns out to be 0. 2013-12-17 23:23:38 +00:00
pict Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
polyml Update to Poly/ML 5.5.1 2013-12-15 18:35:22 +00:00
py-basicproperty Update to latest version, 0.6.9a from 2007: changes not found. 2014-01-17 22:44:16 +00:00
py-cxfreeze Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
py-psyco Update for python25 removal. 2012-10-03 22:14:00 +00:00
py-pyrex Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py26-html-docs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
py27-html-docs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
python Revert unintended commit; pkgsrc not ready yet. 2014-01-18 19:51:28 +00:00
python26 Python 2.6.9 is a security-fix source-only release for Python 2.6.8, fixing several reported security issues: issue 16037, issue 16038, issue 16039, issue 16040, issue 16041, and issue 16042 (CVE-2013-1752, long lines consuming too much memory), as well as issue 14984 (security enforcement on $HOME/.netrc files), issue 16248 (code execution vulnerability in tkinter), and issue 18709 (CVE-2013-4238, SSL module handling of NULL bytes inside subjectAltName). 2013-11-06 07:25:49 +00:00
python27 The nullbytecert.pem is actually part of Python 2.7.6 so trying to patch it 2013-12-14 18:59:55 +00:00
python33 Fix packaging on FreeBSD: OSS audio. 2013-12-06 10:46:23 +00:00
racket Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
racket-textual Update to Racket 5.3.6 2013-08-23 17:19:40 +00:00
rakudo-star Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
rcfunge Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
rexx-imc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
rexx-regina Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
ruby Stop using RUBY_RDOC_VERSION for specifying current ruby-rdoc's version. 2014-01-19 12:57:42 +00:00
ruby-coffee-script
ruby-coffee-script-source Update ruby-coffee-script-source to 1.6.3. 2013-09-15 13:50:49 +00:00
ruby-doc-stdlib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
ruby-execjs Update ruby-execjs to 2.0.1. 2013-09-15 13:55:54 +00:00
ruby18
ruby18-base Fix wrong parameter from [ruby-list:49643] in ruby-tk package. 2013-11-24 15:26:30 +00:00
ruby193
ruby193-base Fix wrong parameter from [ruby-list:49643] in ruby-tk package. 2013-11-24 15:26:30 +00:00
ruby200 Add ruby200 package. This is a meta package for Ruby 2.0.0. 2013-07-21 02:36:38 +00:00
ruby200-base Make sure unwanted mkdir is not recorded with full path in rbconfig.rb, fixes packages built with pbulk. 2014-01-08 12:28:18 +00:00
runawk Update to 1.5.0 2013-09-13 07:45:01 +00:00
sablevm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
sablevm-classpath Resolves: 2013-04-06 20:27:16 +00:00
sablevm-classpath-gui Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
sather Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
sbcl Update to SBCL 1.1.14 2013-12-03 19:37:20 +00:00
scala Upgrade to 2.10.3. 2013-10-02 06:59:08 +00:00
scheme48 Build with -O0 for now until I can figure out why it crashes when 2013-11-10 20:28:50 +00:00
scm * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
see * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
sigscheme Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
siod CONFLICTS between siag and siod packages 2012-10-21 11:39:12 +00:00
smalltalk Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
smlnj '"@comment $NetBSD$" expected.' 2013-04-06 04:03:36 +00:00
spidermonkey * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
spl Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
squeak Update to Squeak 4.4 2013-11-16 20:34:56 +00:00
squeak-vm PKGREVISION bump for json-c shlib rename. 2013-11-25 12:00:45 +00:00
sr Add CONFLICTS with clearsilver-base-[0-9]* and netramet-[0-9]* 2012-10-21 20:56:54 +00:00
sr-examples Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
stalin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
STk Update HOMEPAGE. 2013-06-16 11:47:13 +00:00
sun-jdk6 Fix SunOS PLISTs. Please try to keep them in sync when you change this 2013-12-13 11:10:20 +00:00
sun-jdk7 Remove 64-bit libraries from 32-bit PLIST. 2014-01-08 11:05:57 +00:00
sun-jre6 Update to 6.0.45 2013-04-25 13:32:12 +00:00
sun-jre7 Restore SunOS support, deleted in recent update. 2014-01-07 18:25:17 +00:00
swi-prolog
swi-prolog-lite Don't overwrite shlib.pl with the really old version from files/ . 2013-07-26 09:29:34 +00:00
swi-prolog-packages * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
tcl Changes 8.6.1: 2014-01-11 14:41:05 +00:00
tcl-expect Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
tcl-itcl Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
tcl-otcl Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
tinyscheme Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
twelf Resolves: 2013-04-06 20:27:16 +00:00
ucblogo Fix format string, some missing prototypes and the check for signal 2013-07-18 12:05:09 +00:00
umb-scheme Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
utilisp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
vala Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 20:11:34 +00:00
vala014 Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
vala018 Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
vala020 Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
vscm Fix broken build with gcc 4.5. While here, fix usage of tolower(). 2012-12-21 04:23:45 +00:00
vslisp Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
wsbasic Hand in maintainership. 2013-04-13 07:55:01 +00:00
yabasic Consistently return a value in non-void functions. 2012-12-20 21:49:06 +00:00
yap pow(3) takes double arguments. 2014-01-06 22:13:38 +00:00
Makefile Remove python32 as proposed a week ago on pkgsrc-users. 2014-01-12 09:01:50 +00:00