pkgsrc/math
markd 53438ccbcc Update to R 3.1.0
NEW FEATURES:

    * type.convert() (and hence by default read.table()) returns a
      character vector or factor when representing a numeric input as a
      double would lose accuracy.  Similarly for complex inputs.

      If a file contains numeric data with unrepresentable numbers of
      decimal places that are intended to be read as numeric, specify
      colClasses in read.table() to be "numeric".

    * tools::Rdiff(useDiff = FALSE) is closer to the POSIX definition
      of diff -b (as distinct from the description in the man pages of
      most systems).

    * New function anyNA(), a version of any(is.na(.)) which is fast
      for atomic vectors, based on a proposal by Tim Hesterberg.

    * arrayInd(*, useNames = TRUE) and, analogously, which(*, arr.ind =
      TRUE) now make use of names(.dimnames) when available.

    * is.unsorted() now also works for raw vectors.

    * The "table" method for as.data.frame() (also useful as
      as.data.frame.table()) now passes sep and base arguments to
      provideDimnames().

    * uniroot() gets new optional arguments, notably extendInt,
      allowing to auto-extend the search interval when needed.  The
      return value has an extra component, init.it.

    * switch(f, ...) now warns when f is a factor, as this typically
      happens accidentally where the useR meant to pass a character
      string, but f is treated as integer (as always documented).

    * The parser has been modified to use less memory.

    * The way the unary operators (+ - !) handle attributes is now more
      consistent.  If there is no coercion, all attributes (including
      class) are copied from the input to the result: otherwise only
      names, dims and dimnames are.

    * colorRamp() and colorRampPalette() now allow non-opaque colours
     and a ramp in opacity via the new argument alpha = TRUE.
      (Suggested by Alberto Krone-Martins, but optionally as there are
      existing uses which expect only RGB values.)

    * grid.show.layout() and grid.show.viewport() get an optional vp.ex
      argument.

    * There is a new function find_gs_cmd() in the tools package to
      locate a GhostScript executable.  (This is an enhanced version of
      a previously internal function there.)

    * object.size() gains a format() method.

    * There is a new family, "ArialMT", for the pdf() and postscript()
      devices.  This will only be rendered correctly on viewers which
      have access to Monotype TrueType fonts (which are sometimes
      requested by journals).

    * The text and PDF news files, including NEWS and NEWS.2, have been
      moved to the doc directory.

    * combn(x, simplify = TRUE) now gives a factor result for factor
      input x (previously user error).

    * Added utils::fileSnapshot() and utils::changedFiles() functions
      to allow snapshots and comparison of directories of files.

    * make.names(names, unique=TRUE) now tries to preserve existing
      names.

    * New functions cospi(x), sinpi(x), and tanpi(x), for more accurate
      computation of cos(pi*x), etc, both in R and the C API.  Using
      these gains accuracy in some cases, e.g., inside lgamma() or
      besselI().

    * print.table(x, zero.print = ".") now also has an effect when x is
      not integer-valued.

    * There is more support to explore the system's idea of time-zone
      names.  Sys.timezone() tries to give the current system setting
      by name (and succeeds at least on Linux, OS X, Solaris and
     Windows), and OlsonNames() lists the names in the system's Olson
      database. Sys.timezone(location = FALSE) gives the previous
      behaviour.

    * Platforms with a 64-bit time_t type are allowed to handle
      conversions between the "POSIXct" and "POSIXlt" classes for
      date-times outside the 32-bit range (before 1902 or after 2037):
      the existing workarounds are used on other platforms.  (Note that
      time-zone information for post-2037 is speculative at best, and
      the OS services are tested for known errors and so not used on OS
      X.)

      Currently time_t is usually long and hence 64-bit on Unix-alike
      64-bit platforms: however it several cases the time-zone database
      is 32-bit.  On R for Windows it is 64-bit (for both architectures
      as from this version).

    * The "save.defaults" option can include a value for
      compression_level.

    * colSums() and friends now have support for arrays and data-frame
      columns with 2^31 or more elements.

    * as.factor() is faster when f is an unclassed integer vector (for
      example, when called from tapply()).

    * fft() now works with longer inputs, from the 12 million
      previously supported up to 2 billion.

    * Complex svd() now uses LAPACK subroutine ZGESDD, the complex
      analogue of the routine used for the real case.

    * Sweave now outputs .tex files in UTF-8 if the input encoding is
      declared to be UTF-8, regardless of the local encoding.  The
      UTF-8 encoding may now be declared using a LaTeX comment
      containing the string %\SweaveUTF8 on a line by itself.

    * file.copy() gains a copy.date argument.

    * Printing of date-times will make use of the time-zone
      abbreviation in use at the time, if known.  For example, for
      Paris pre-1940 this could be LMT, PMT, WET or WEST.  To enable
      this, the "POSIXlt" class has an optional component "zone"
      recording the abbreviation for each element.

      For platforms which support it, there is also a component
      "gmtoff" recording the offset from GMT where known.

    * (On Windows, by default on OS X and optionally elsewhere.)  The
      system C function strftime has been replaced by a more
      comprehensive version with closer conformance to the POSIX 2008
      standard.

    * dnorm(x, log = FALSE) is more accurate (but somewhat slower) for
      |x| > 5.

    * Some versions of the tiff() device have further compression
      options.

    * read.table(), readLines() and scan() have a new argument to
      influence the treatment of embedded nuls.

    * Avoid duplicating the right hand side values in complex
      assignments when possible.  This reduces copying of replacement
      values in expressions such as Z$a <- a0 and ans[[i]] <- tmp: some
      package code has relied on there being copies.

      Also, a number of other changes to reduce copying of objects; all
      contributed by or based on suggestions by Michael Lawrence.

    * The fast argument of KalmanLike(), KalmanRun() and
      KalmanForecast() has been replaced by update, which instead of
      updating mod in place, optionally returns the updated model in an
      attribute "mod" of the return value.

    * arima() and makeARIMA() get a new optional argument SSinit,
      allowing the choice of a different *s*tate *s*pace initialization
      which has been observed to be more reliable close to
      non-stationarity.

    * warning() has a new argument noBreaks., to simplify
      post-processing of output with options(warn = 1).

    * pushBack() gains an argument encoding, to support reading of
      UTF-8 characters using scan(), read.table() and related functions
      in a non-UTF-8 locale.

    * all.equal.list() gets a new argument use.names which by default
      labels differing components by names (if they match) rather than
      by integer index.  Saved R output in packages may need to be
      updated.

    * The methods for all.equal() and attr.all.equal() now have
      argument check.attributes after ... so it cannot be partially nor
      positionally matched (as it has been, unintentionally).

      A side effect is that some previously undetected errors of
      passing empty arguments (no object between commas) to all.equal()
      are detected and reported.

      There are explicit checks that check.attributes is logical,
      tolerance is numeric and scale is NULL or numeric.  This catches
      some unintended positional matching.

      The message for all.equal.numeric() reports a "scaled difference"
      only for scale != 1.

    * all.equal() now has a "POSIXt" method replacing the "POSIXct"
      method.

    * The "Date" and "POSIXt" methods of seq() allows by = "quarter"
      for completeness (by = "3 months" always worked).

    * file.path() removes any trailing separator on Windows, where they
      are invalid (although sometimes accepted).  This is intended to
      enhance the portability of code written by those using POSIX file
      systems (where a trailing / can be used to confine path matching
      to directories).

    * New function agrepl() which like grepl() returns a logical
      vector.

    * fifo() is now supported on Windows.

    * sort.list(method = "radix") now allows negative integers

    * Some functionality of print.ts() is now available in
      .preformat.ts() for more modularity.

    * mcparallel() gains an option detach = TRUE which allows execution
      of code independently of the current session.  It is based on a
      new estranged = TRUE argument to mcfork() which forks child
      processes such that they become independent of the parent
      process.

    * The pdf() device omits circles and text at extremely small sizes,
      since some viewers were failing on such files.

    * The rightmost break for the "months", "quarters" and "years"
      cases of hist.POSIXlt() has been increased by a day.

    * The handling of DF[i,] <- a where i is of length 0 is improved.

    * hclust() gains a new method "ward.D2" which implements Ward's
      method correctly.  The previous "ward" method is "ward.D" now,
      with the old name still working.  Thanks to research and
      proposals by Pierre Legendre.

    * The sunspot.month dataset has been amended and updated from the
      official source, whereas the sunspots and sunspot.year datasets
      will remain immutable. The documentation and source links have
      been updated correspondingly.

    * The summary() method for "lm" fits warns if the fit is
      essentially perfect, as most of the summary may be computed
      inaccurately (and with platform-dependent values).

      Programmers who use summary() in order to extract just a
      component which will be reliable (e.g. $cov.unscaled) should wrap
      their calls in suppressWarnings().
2014-05-03 22:29: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 bump from ilmbase shlib version change. 2014-04-10 06:21:18 +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 Changes 3.5.0: 2014-02-28 09:39: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 bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
capc-calc update to 2.12.4.13 2014-01-15 16:23:31 +00:00
cgal Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +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 Update to 0.18.1, and add patches from upstream git to fix build with 2014-04-25 21:01:27 +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 Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
eigen3 Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
eispack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ess Install R support files. Bump PKGREVISION. 2014-02-19 09:19:01 +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 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
fftpack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
fftw Update to 3.3.4: 2014-03-31 08:33:10 +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 Define _WITH_GETLINE for getline(3) on FreeBSD 9. 2014-03-26 06:57:06 +00:00
fricas Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +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
geg "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
genius Fix readline use. 2014-04-21 18:17:35 +00:00
glpk Changes 4.54: 2014-04-01 08:38:35 +00:00
gnome-calculator Move (BUILD_)DEPENDS after the maintainer section. Requested by wiz@ 2014-01-25 12:57:30 +00:00
gnumeric Fix HOMEPAGE 2014-01-27 20:47:19 +00:00
gnumeric110 Fix HOMEPAGE 2014-01-27 20:47:19 +00:00
gnumeric112 Fix HOMEPAGE 2014-01-27 20:47:19 +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 PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +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 Update to 0.13: 2014-04-25 09:11:49 +00:00
itpp When extracting rpath options from the Fortran linker, prefix them with 2013-10-28 23:46:55 +00:00
kalgebra recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
kcalc recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +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 Fix linking with gfortran 2014-03-31 20:53:22 +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 Don't use libfl. Bump revision. 2014-04-28 12:43:34 +00:00
libsvm Import libsvm-3.18 as math/libsvm. 2014-04-02 07:31:43 +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 PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +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 Changes 1.0.2: 2014-02-23 15:32:10 +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 Do not re-define gets() on SunOS, incompatible prototype. 2014-03-06 23:09:04 +00:00
odepack "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
openaxiom Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +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-Algorithm-Munkres Import math/p5-Algorithm-Munkres. 2014-02-20 11:25:13 +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-Derivative Import math/p5-Math-Derivative. 2014-02-20 11:26:20 +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-Spline Import math/p5-Math-Spline. 2014-02-20 11:27:51 +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 Tell right prefix to configure for gmp and fltk, or builtin one or other one 2014-02-25 09:32:57 +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 Update comment, from Kai-Uwe Eckhardt. 2014-02-05 18:04:05 +00:00
prng Fix inline misuse. 2012-11-01 19:42:01 +00:00
pspp Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
py-cdecimal Mark as not useful for python-3.x (included since 3.3, the only version 2014-01-25 09:05:56 +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 Update HOMEPAGE. Mark as not ready for python-3.x. 2014-01-25 09:06:15 +00:00
py-gmpy Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-mpmath Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +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 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-numarray Update HOMEPAGE. Mark as not ready for python-3.x (use py-numpy there). 2014-01-25 09:06:42 +00:00
py-Numeric Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-numexpr Remove unused patch 2014-01-23 18:42:34 +00:00
py-numpy Changes 1.8.0: 2014-02-28 09:43:10 +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 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-rpy bulk build suggested readline 2014-02-26 10:38:07 +00:00
py-Scientific Update to 2.8.1. Switch to distutils.mk. 2014-04-16 14:51:24 +00:00
py-Scientific-doc "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
py-scipy Using distutils. 2014-02-12 12:53:56 +00:00
py-sympy Remove unused patch. 2014-01-23 18:43:11 +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 OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
qalculate-kde recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +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 Update to R 3.1.0 2014-05-03 22:29:42 +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 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +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 Update to 0.4.7 2014-03-09 14:15:43 +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 PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +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.14 2014-03-09 14:38:25 +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.18 2014-03-09 14:28:57 +00:00
R-wle Update to 0.9.9 2014-03-09 14:22:53 +00:00
R-XML Update to 3.98.1.1 2013-07-07 14:21:58 +00:00
R-xts Update to 0.9.7(No changelog upstream) 2014-03-09 14:04:36 +00:00
R-zoo Revert previous commit. 2014-03-14 15:20:58 +00:00
randlib "user-destdir" is default these days 2012-09-11 23:04:15 +00:00
ruby-gsl Fix build problem with ruby21. 2014-03-26 13:25:26 +00:00
ruby-narray Add GEM_CLEANBUOLD_EXTENSIONS. 2014-03-17 14:17:22 +00:00
ruby-spreadsheet Use RUBY_SUFFIX instead of RUBY_VER. 2014-04-05 09:05:36 +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 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +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 PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +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 +libsvm 2014-04-02 07:32:27 +00:00