pkgsrc/math
wiz 7978a088b6 Update to 3.0.0. Convert to distutils.mk. Move option handling
into options.mk.

Changes from 2.4 to 3.0
=======================

New features
------------

- Since this release PyTables provides full support to Python_ 3
  (closes :issue:`188`).

- The entire code base is now more compliant with coding style guidelines
  describe in the PEP8_ (closes :issue:`103` and :issue:`224`).
  See `API changes`_ for more details.

- Basic support for HDF5 drivers.  Now it is possible to open/create an
  HDF5 file using one of the SEC2, DIRECT, LOG, WINDOWS, STDIO or CORE
  drivers.  Users can also set the main driver parameters (closes
  :issue:`166`).
  Thanks to Michal Slonina.

- Basic support for in-memory image files.  An HDF5 file can be set from or
  copied into a memory buffer (thanks to Michal Slonina).  This feature is
  only available if PyTables is built against HDF5 1.8.9 or newer.
  Closes :issue:`165` and :issue:`173`.

- New :meth:`File.get_filesize` method for retrieving the HDF5 file size.

- Implemented methods to get/set the user block size in a HDF5 file
  (closes :issue:`123`)

- Improved support for PyInstaller_.  Now it is easier to pack frozen
  applications that use the PyTables package (closes: :issue:`177`).
  Thanks to Stuart Mentzer and Christoph Gohlke.

- All read methods now have an optional *out* argument that allows to pass a
  pre-allocated array to store data (closes :issue:`192`)

- Added support for the floating point data types with extended precision
  (Float96, Float128, Complex192 and Complex256).  This feature is only
  available if numpy_ provides it as well.
  Closes :issue:`51` and :issue:`214`.  Many thanks to Andrea Bedini.

- Consistent ``create_xxx()`` signatures.  Now it is possible to create all
  data sets :class:`Array`, :class:`CArray`, :class:`EArray`,
  :class:`VLArray`, and :class:`Table` from existing Python objects (closes
  :issue:`61` and :issue:`249`).  See also the `API changes`_ section.

- Complete rewrite of the :mod:`nodes.filenode` module. Now it is fully
  compliant with the interfaces defined in the standard :mod:`io` module.
  Only non-buffered binary I/O is supported currently.
  See also the `API changes`_ section.  Closes :issue:`244`.

- New :program:`pt2to3` tool is provided to help users to port their
  applications to the new API (see `API changes`_ section).


Improvements
------------

- Improved runtime checks on dynamic loading of libraries: meaningful error
  messages are generated in case of failure.
  Also, now PyTables no more alters the system PATH.
  Closes :issue:`178` and :issue:`179` (thanks to Christoph Gohlke).

- Improved list of search paths for libraries as suggested by Nicholaus
  Halecky (see :issue:`219`).

- Removed deprecated Cython_ include (.pxi) files. Contents of
  :file:`convtypetables.pxi` have been moved in :file:`utilsextension.pyx`.
  Closes :issue:`217`.

- The internal Blosc_ library has been upgraded to version 1.2.3.

- Pre-load the bzip2_ library on windows (closes :issue:`205`)

- The :meth:`File.get_node` method now accepts unicode paths
  (closes :issue:`203`)

- Improved compatibility with Cython_ 0.19 (see :issue:`220` and
  :issue:`221`)

- Improved compatibility with numexpr_ 2.1 (see also :issue:`199` and
  :issue:`241`)

- Improved compatibility with development versions of numpy_
  (see :issue:`193`)

- Packaging: since this release the standard tar-ball package no more includes
  the PDF version of the "PyTables User Guide", so it is a little bit smaller
  now.  The complete and pre-build version of the documentation both in HTML
  and PDF format is available on the file `download area`_ on SourceForge.net.
  Closes: :issue:`172`.

- Now PyTables also uses `Travis-CI`_ as continuous integration service.
  All branches and all pull requests are automatically tested with different
  Python_ versions.  Closes :issue:`212`.


Other changes
-------------

- PyTables now requires Python 2.6 or newer.

- Minimum supported version of Numexpr_ is now 2.0.


API changes
-----------

The entire PyTables API as been made more PEP8_ compliant (see :issue:`224`).

This means that many methods, attributes, module global variables and also
keyword parameters have been renamed to be compliant with PEP8_ style
guidelines (e.g. the ``tables.hdf5Version`` constant has been renamed into
``tables.hdf5_version``).

We made the best effort to maintain compatibility to the old API for existing
applications.  In most cases, the old 2.x API is still available and usable
even if it is now deprecated (see the Deprecations_ section).

The only important backwards incompatible API changes are for names of
function/methods arguments.  All uses of keyword arguments should be
checked and fixed to use the new naming convention.

The new :program:`pt2to3` tool can be used to port PyTables based applications
to the new API.

Many deprecated features and support for obsolete modules has been dropped:

- The deprecated :data:`is_pro` module constant has been removed

- The nra module and support for the obsolete numarray module has been removed.
  The *numarray* flavor is no more supported as well (closes :issue:`107`).

- Support for the obsolete Numeric module has been removed.
  The *numeric* flavor is no longer available (closes :issue:`108`).

- The tables.netcdf3 module has been removed (closes :issue:`68`).

- The deprecated :exc:`exceptions.Incompat16Warning` exception has been
  removed

- The :meth:`File.create_external_link` method no longer has a keyword
  parameter named *warn16incompat*.  It was deprecated in PyTables 2.4.

Moreover:

- The :meth:`File.create_array`, :meth:`File.create_carray`,
  :meth:`File.create_earray`, :meth:`File.create_vlarray`, and
  :meth:`File.create_table` methods of the :class:`File` objects gained a
  new (optional) keyword argument named ``obj``.  It can be used to initialize
  the newly created dataset with an existing Python object, though normally
  these are numpy_ arrays.

  The *atom*/*descriptor* and *shape* parameters are now optional if the
  *obj* argument is provided.

- The :mod:`nodes.filenode` has been completely rewritten to be fully
  compliant with the interfaces defined in the :mod:`io` module.

  The FileNode classes currently implemented are intended for binary I/O.

  Main changes:

  * the FileNode base class is no more available,
  * the new version of :class:`nodes.filenode.ROFileNode` and
    :class:`nodes.filenode.RAFileNode` objects no more expose the *offset*
    attribute (the *seek* and *tell* methods can be used instead),
  * the *lineSeparator* property is no more available end the ``\n``
    character is always used as line separator.

- The `__version__` module constants has been removed from almost all the
  modules (it was not used after the switch to Git).  Of course the package
  level constant (:data:`tables.__version__`) still remains.
  Closes :issue:`112`.

- The :func:`lrange` has been dropped in favor of xrange (:issue:`181`)

- The :data:`parameters.MAX_THREADS` configuration parameter has been dropped
  in favor of :data:`parameters.MAX_BLOSC_THREADS` and
  :data:`parameters.MAX_NUMEXPR_THREADS` (closes :issue:`147`).

- The :func:`conditions.compile_condition` function no more has a *copycols*
  argument, it was no more necessary since Numexpr_ 1.3.1.
  Closes :issue:`117`.

- The *expectedsizeinMB* parameter of the :meth:`File.create_vlarray` and of
  the :meth:`VLArrsy.__init__` methods has been replaced by *expectedrows*.
  See also (:issue:`35`).

- The :meth:`Table.whereAppend` method has been renamed into
  :meth:`Table.append_where` (closes :issue:`248`).

Please refer to the :doc:`../MIGRATING_TO_3.x` document for more details about
API changes and for some useful hint about the migration process from the 2.X
API to the new one.


Other possibly incompatible changes
-----------------------------------

- All methods of the :class:`Table` class that take *start*, *stop* and
  *step* parameters (including :meth:`Table.read`, :meth:`Table.where`,
  :meth:`Table.iterrows`, etc) have been redesigned to have a consistent
  behaviour.  The meaning of the *start*, *stop* and *step* and their default
  values now always work exactly like in the standard :class:`slice` objects.
  Closes :issue:`44` and :issue:`255`.

- Unicode attributes are not stored in the HDF5 file as pickled string.
  They are now saved on the HDF5 file as UTF-8 encoded strings.

  Although this does not introduce any API breakage, files produced are
  different (for unicode attributes) from the ones produced by earlier
  versions of PyTables.

- System attributes are now stored in the HDF5 file using the character set
  that reflects the native string behaviour: ASCII for Python 2 and UTF8 for
  Python 3.  In any case, system attributes are represented as Python string.

- The :meth:`iterrows` method of :class:`*Array` and :class:`Table` as well
  as the :meth:`Table.itersorted` now behave like functions in the standard
  :mod:`itertools` module.
  If the *start* parameter is provided and *stop* is None then the
  array/table is iterated from *start* to the last line.
  In PyTables < 3.0 only one element was returned.


Deprecations
------------

- As described in `API changes`_, all functions, methods and attribute names
  that was not compliant with the PEP8_ guidelines have been changed.
  Old names are still available but they are deprecated.

- The use of upper-case keyword arguments in the :func:`open_file` function
  and the :class:`File` class initializer is now deprecated.  All parameters
  defined in the :file:`tables/parameters.py` module can still be passed as
  keyword argument to the :func:`open_file` function just using a lower-case
  version of the parameter name.


Bugs fixed
----------

- Better check access on closed files (closes :issue:`62`)

- Fix for :meth:`File.renameNode` where in certain cases
  :meth:`File._g_updateLocation` was wrongly called (closes :issue:`208`).
  Thanks to Michka Popoff.

- Fixed ptdump failure on data with nested columns (closes :issue:`213`).
  Thanks to Alexander Ford.

- Fixed an error in :func:`open_file` when *filename* is a :class:`numpy.str_`
  (closes :issue:`204`)

- Fixed :issue:`119`, :issue:`230` and :issue:`232`, where an index on
  :class:`Time64Col` (only, :class:`Time32Col` was ok) hides the data on
  selection from a Tables. Thanks to Jeff Reback.

- Fixed ``tables.tests.test_nestedtypes.ColsTestCase.test_00a_repr`` test
  method.  Now the ``repr`` of of cols on big-endian platforms is correctly
  handled  (closes :issue:`237`).

- Fixes bug with completely sorted indexes where *nrowsinbuf* must be equal
  to or greater than the *chunksize* (thanks to Thadeus Burgess).
  Closes :issue:`206` and :issue:`238`.

- Fixed an issue of the :meth:`Table.itersorted` with reverse iteration
  (closes :issue:`252` and :issue:`253`).
2014-01-21 16:32:42 +00:00
..
aamath * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
abs "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
admesh "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
algae * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
analitza Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
antixls Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
aribas "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
arpack Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
bc * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
blas This packages needs a Fortran 95 compiler to build, Fortran 77 is not 2013-06-03 08:04:56 +00:00
blitz++ Resolves: 2013-04-06 20:27:16 +00:00
calc Resolves: 2013-04-06 20:27:16 +00:00
calcoo Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
cantor Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
capc-calc update to 2.12.4.13 2014-01-15 16:23:31 +00:00
cgal Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
clisp-pari Pass rpath option with -Wl prefix. 2013-10-20 18:02:58 +00:00
cln Add a bunch of missing includes hidden by libstdc++ namespace pollution. 2013-05-04 12:59:45 +00:00
cloog Fix cut(1) arguments so that all tests work fine. From Kai-Uwe Eckhardt. 2013-02-20 21:37:13 +00:00
dcdflib.c Don't fail on logical op mixing with clang. 2013-09-10 14:23:05 +00:00
dcdflib.f "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
dfftpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
dieharder "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
djbfft "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
eigen2 Revert pkglint-induced nonsense. 2013-04-08 18:29:37 +00:00
eigen3 Update to 3.1.4: 2013-10-06 16:16:17 +00:00
eispack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ess Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
eukleides Install LaTeX files into share/texmf-dist, not share/texmf. 2013-10-29 02:37:56 +00:00
eukleides10 Re-import eukleides-1.0.3 as math/eukleides10. 2013-06-10 12:25:59 +00:00
euler Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
extcalc Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
fftpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
fftw Disable fftw-fortran option by default until lang/g95 issue is resolved. 2013-07-09 15:46:45 +00:00
fftw2 Resolves: 2013-04-06 20:27:16 +00:00
fftwf Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
fgmp "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
fityk Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
fricas Update to FriCAS 1.2.0 2013-05-19 10:01:00 +00:00
galculator Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gap Add termios.h formerly included by unistd.h. 2013-07-18 12:07:24 +00:00
gcalctool Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gcalctool-gtk3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
geg "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
genius Drop -frename-registers. -finline-functions is the default for optimised 2013-10-27 20:35:48 +00:00
glpk GLPK 4.52.1 (release date: Jul 28, 2013) 2013-07-31 07:02:35 +00:00
gnumeric Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnumeric110 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnumeric112 Update to 1.12.9: 2014-01-02 18:50:03 +00:00
gp-autpgrp "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-factint "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-fplsa "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-grape "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-grpconst "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
gp-lag "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
grace recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
graphopt "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
grpn Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gsl Fix build on MirBSD. 2013-12-03 21:47:36 +00:00
gtklife Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
harminv Use -Wl for rpath options extracted from Fortran linker. 2013-11-04 16:40:37 +00:00
heirloom-factor DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-units DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
ipopt Fix build. 2013-12-06 21:24:59 +00:00
isl Changes 0.11.2: 2013-04-16 06:47:15 +00:00
itpp When extracting rpath options from the Fortran linker, prefix them with 2013-10-28 23:46:55 +00:00
kalgebra Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
kcalc Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
kseg recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
lapack This packages needs a Fortran 95 compiler to build, Fortran 77 is not 2013-06-03 08:22:59 +00:00
libffm "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
libint Revert. "GBS" is not acceptable abbreviation here. 2013-04-07 20:38:36 +00:00
libmatheval add test target 2012-09-13 17:14:36 +00:00
linpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
lp_solve "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ltm "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
mapm Do not build statically on SunOS. 2014-01-09 12:07:42 +00:00
mathomatic CHANGES MADE TO MATHOMATIC 16.0.3 TO BRING IT UP TO THE NEXT VERSION: 2012-09-13 09:13:09 +00:00
maxima Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
mcsim Resolves: 2013-04-06 20:27:16 +00:00
meschach "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
metis Update metis to 4.0.3. 2013-05-16 12:37:35 +00:00
minisat Needs zlib. Provide dummy Minisat::memUsedPeak(). 2014-01-09 14:38:33 +00:00
minpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
mpcomplex Split the extract phase into fetch and extract, to ensure that distfiles 2013-07-08 20:18:52 +00:00
mpfr Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
mprime-bin "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
mtl Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
muparser 'Please use ${ECHO} instead of "echo".' 2013-04-06 14:58:18 +00:00
newmat "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
nickle suppress detection of DOCBOOK, PR pkg/48115 2013-08-12 02:17:43 +00:00
ntl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
octave When extracting rpath options from the Fortran linker, qualify them with 2013-10-27 20:35:16 +00:00
odepack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
openaxiom recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
openfst Prefer C++11 interfaces over tr1. 2013-05-06 14:52:54 +00:00
ordCalc malloc.h raises error on FreeBSD intentionally, use stdlib.h instead. 2014-01-16 18:09:46 +00:00
otter "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
p5-Algorithm-Cluster Not MAKE_JOBS_SAFE. 2013-07-19 12:52:10 +00:00
p5-Excel-Template Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Excel-Template-Plus Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Base36 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Base85 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-BaseCnv Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Bezier Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-BigInt-GMP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-BigInt-Pari Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-BigInteger Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Complex Import p5-Math-Complex-1.59 as math/p5-Math-Complex. 2013-07-06 00:35:15 +00:00
p5-Math-FFT Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-GMP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Interpolate Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-MatrixReal Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Pari Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Permute-List Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Prime-Util Update to 0.31 2013-08-25 01:28:38 +00:00
p5-Math-Random Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Random-ISAAC Adding package for CPAN distribution Math-Random-ISAAC version 1.004 into 2013-07-03 14:33:32 +00:00
p5-Math-Random-ISAAC-XS Adding package forPAN package Math-Random-ISAAC-XS version 1.004 into 2013-07-03 14:30:36 +00:00
p5-Math-Random-MT Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-Random-MT-Auto Update to 6.22 2013-08-25 01:34:46 +00:00
p5-Math-Random-MT-Perl Update to 1.11 2013-08-25 01:40:13 +00:00
p5-Math-Round Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Math-VecStat Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Number-Compare Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Number-Latin Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Number-Tolerant Adding package for CPAN distribution Number-Tolerant version 1.701 into 2013-07-03 13:58:39 +00:00
p5-Roman Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Set-Crontab Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Set-Infinite Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Spreadsheet-ParseExcel Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Spreadsheet-Read Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes. 2013-12-09 14:17:41 +00:00
p5-Spreadsheet-ReadSXC Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Spreadsheet-WriteExcel Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Spreadsheet-XLSX Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Statistics-Descriptive Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Number-Delta Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
pari add missing dependencies to build when option x11 is present 2014-01-05 10:57:11 +00:00
pari-galdata Update to 2.2. Changes not documented. 2012-12-12 12:45:18 +00:00
pear-Math_BigInteger Add pear-Math_BigInteger version 1.0.0. 2013-03-16 04:04:30 +00:00
pear-Numbers_Roman "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
pear-Numbers_Words "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
php-bcmath "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ppl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
prng Fix inline misuse. 2012-11-01 19:42:01 +00:00
pspp Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
py-cdecimal cdecimal 2013-08-15 14:23:01 +00:00
py-ephem Add math to CATEGORIES. 2014-01-20 12:51:38 +00:00
py-ephem3 Import py33-ephem-3.7.5.1 as math/py-ephem3. 2014-01-20 12:50:31 +00:00
py-fpconst "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-gmpy "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-mpmath "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-munkres Update to 1.0.6: changes not found, but this version works with python-3. 2014-01-20 20:26:39 +00:00
py-networkx Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-numarray "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-Numeric "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-numexpr Update to 2.2.2. Set LICENSE. Update HOMEPAGE. 2014-01-21 13:26:52 +00:00
py-numpy Changes 1.7.1: 2013-05-20 05:59:58 +00:00
py-pandas Convert to use versioned_dependencies.mk. 2014-01-16 10:41:53 +00:00
py-pytables Update to 3.0.0. Convert to distutils.mk. Move option handling 2014-01-21 16:32:42 +00:00
py-roman "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-rpy Update to 2.3.0: 2014-01-19 22:50:43 +00:00
py-Scientific recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
py-Scientific-doc "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-scipy Update to 0.12.1 2013-10-16 19:35:40 +00:00
py-sympy Update to 0.7.4.1: 2014-01-21 08:38:04 +00:00
qalculate The Clang 3.4RCs started to use slightly more memory when compiling 2013-12-15 19:41:23 +00:00
qalculate-bases Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
qalculate-currency Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
qalculate-gtk Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
qalculate-kde Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
qalculate-units Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
qhull "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
quadpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
R Exclude 64-bit system library paths on SunOS. 2014-01-13 11:25:54 +00:00
R-abind Update to abind v1.4-0, add LICENSE and regularize package files. 2012-04-15 14:55:50 +00:00
R-akima Update to reflect license restrictions on commercial redistribution. 2012-04-15 21:58:24 +00:00
R-bitops Update to R-bitops-1.0-6. No ChangeLog, but fixes build with R-3.0.1. 2013-08-30 12:54:06 +00:00
R-car Update to 2.0.18 2013-08-15 01:56:37 +00:00
R-CGIwithR Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
R-chron Update to chron v2.3-42, add LICENSE and update MAINTAINER. 2012-04-15 15:18:34 +00:00
R-circular I see no reason why this package is marked with PKG_DESTDIR_SUPPORT=none, 2013-10-10 19:15:32 +00:00
R-classInt Update to classInt v0.1-17, add LICENSE and regularize package files. 2012-04-15 16:00:01 +00:00
R-clim.pact Create wildcard NAMESPACE file; fixes build with latest R 2013-12-07 19:32:48 +00:00
R-combinat Create wildcard NAMESPACE file to fix build with R 3.0.1. 2013-08-30 12:56:30 +00:00
R-DAAG Update to DAAG v1.12 and regularize the package files. 2012-04-15 13:33:06 +00:00
R-date Update to date v1.2-32, add LICENSE and update MAINTAINER. 2012-04-15 15:22:37 +00:00
R-DBI Update to 0.2.7 2013-08-15 02:22:18 +00:00
R-e1071 Update to 1.6.1 2013-08-15 09:34:23 +00:00
R-gdata Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
R-genetics Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
R-geoR Fixes: 2013-04-06 03:45:05 +00:00
R-geoRglm Import of geoRglm v0.9-2. 2012-04-15 22:14:29 +00:00
R-GRASS Create wildcard NAMESPACE file; fixes build with latest R 2013-12-07 19:32:48 +00:00
R-gstat Update to 1.0.15 2013-01-24 01:51:13 +00:00
R-gtools Update to gtools v2.6.2, add LICENSE and regularize package files. 2012-04-15 15:26:35 +00:00
R-httpRequest Update to R-httpRequest-0.0.9. No ChangeLog, but fixes build with 2013-08-30 12:57:15 +00:00
R-hwde Update to R-hwde-0.63: 2013-08-30 12:58:11 +00:00
R-intervals Update to 0.14.0 2013-07-07 11:32:24 +00:00
R-ISwR Update to ISwR v2.0-6, add LICENSE and regularize package files. 2012-04-15 14:45:35 +00:00
R-lmm Update to lmm v0.5 and regularize the package files. 2012-04-15 13:46:13 +00:00
R-mapproj Bump dependency as needed. 2013-08-31 14:51:27 +00:00
R-maps Update R-maps to 2.3-3. No Change Log. 2013-08-31 14:51:06 +00:00
R-mvtnorm Update to mvtnorm v0.9-9992, add LICENSE and regularize package files. 2012-04-15 15:33:38 +00:00
R-ncdf recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
R-PHYLOGR Create wildcard NAMESPACE file; fixes build with latest R 2013-12-07 19:32:48 +00:00
R-pixmap Update to pixmap v0.4-11, add LICENSE and update MAINTAINER. 2012-04-15 15:38:14 +00:00
R-plyr Imported R-plyr as math/R-plyr. 2013-08-15 09:22:21 +00:00
R-R2HTML Update to R2HTML v2.2, add LICENSE and regularize package files. 2012-04-15 14:51:05 +00:00
R-RandomFields Update to R-RandomField-2.0.66. No ChangeLog, but fixes build with 2013-08-30 13:05:00 +00:00
R-randomForest Update to 4.6.7 2012-12-17 15:04:19 +00:00
R-RArcInfo Update to RArcInfo v0.4-12, added LICENSE and regularized package files. 2012-04-15 16:57:19 +00:00
R-Rcmdr Update to Rcmdr v1.8-4, add LICENSE and update MAINTAINER. 2012-04-15 15:49:00 +00:00
R-RColorBrewer Import of RColorBrewer v1.0-5. 2012-04-15 16:43:47 +00:00
R-RPostgreSQL Bump PKGREVISION for change of PostgreSQL default version to 9.1. 2012-08-05 10:02:09 +00:00
R-sgeostat Update to 1.0.25 2013-07-07 12:10:58 +00:00
R-shapefiles Update to 0.7 2013-07-07 12:02:36 +00:00
R-sp Update to 1.0.11 2013-07-07 11:16:24 +00:00
R-spacetime Update to 1.0.5 2013-07-07 11:52:41 +00:00
R-splancs Update to 2.01.33 2013-07-07 11:20:24 +00:00
R-statmod Update to 1.4.17 2013-07-07 11:07:18 +00:00
R-wle Does support destdir, mark it as such. 2013-10-10 19:16:40 +00:00
R-XML Update to 3.98.1.1 2013-07-07 14:21:58 +00:00
R-xts Update to 0.9.5 2013-07-07 09:30:28 +00:00
R-zoo Update to 1.7.10 2013-07-07 09:23:30 +00:00
randlib "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ruby-gsl Add patches to fix build problem with gsl-1.16. 2013-08-04 16:42:11 +00:00
ruby-narray Change GEM_CLEANBUILD not to include working file to package. 2013-07-07 15:29:47 +00:00
ruby-spreadsheet Update ruby-spreadsheet to 0.9.6. 2013-12-04 14:00:28 +00:00
sc "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
scilab Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
slatec "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
snns Update to SNNS 4.3 2012-09-13 21:43:08 +00:00
speedcrunch Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
statist "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
superlu Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
tasp-vsipl "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
teapot Use CMake builtin CMAKE_INSTALL_MANDIR for mandir. 2013-10-09 12:07:20 +00:00
tex-fp Import tex-fp-2010 as math/tex-fp. 2011-03-04 19:05:21 +00:00
tex-fp-doc Import tex-fp-doc-2010 as math/tex-fp-doc. 2011-03-04 19:05:30 +00:00
tex-kastrup Import tex-kastrup-2010 as math/tex-kastrup. 2011-03-15 18:45:43 +00:00
tex-kastrup-doc Import tex-kastrup-doc-2010 as math/tex-kastrup-doc. 2011-03-15 18:46:02 +00:00
texdrive Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
TinySVM "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
tochnog "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
udunits Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
units * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
vista "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
xeukleides10 Fix DEPENDS. 2013-06-10 12:29:39 +00:00
xfractint Don't conflict with libm. 2013-01-11 13:29:34 +00:00
xgap "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
xldlas Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
xlife Fix missing includes. Add missing value in return. 2012-10-26 20:39:57 +00:00
xlispstat Use more void. 2012-11-19 02:56:44 +00:00
xmgr recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
xylib Use <memory> for libc++. 2013-04-30 22:26:29 +00:00
yacas Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
yorick Resolves: 2013-04-06 20:27:16 +00:00
Makefile + py-ephem3. 2014-01-20 12:50:46 +00:00