pkgsrc/math
wiz 20dec34d0a Update to 0.7.6.1, based on PR 50382 by derouiche.
0.7.6.1

This is a small bugfix release over SymPy 0.7.6, primarily to fix issues with printing in the Jupyter notebook.
Changes

    Fix pretty printing in the Jupyter notebook and Jupyter qtconsole for Jupyter 4.0.

    The deprecated linearization method in the mechanics module no longer fails to execute.

0.7.6

Major changes

    New module calculus.finite_diff for generating finite difference formulae approximating derivatives of arbitrary order on arbitrarily spaced grids.

    New module physics.optics for symbolic computations related to optics.

    geometry module now supports 3D geometry.

    Support for series expansions at a point other then 0 or oo. See PR #2427.

    Rules for the intersection of integer ImageSets were added. See PR #7587. We can now do things like {2⋅m | m ∊ ℤ} ∩ {3⋅n | n ∊ ℤ} = {6⋅t | t ∊ ℤ} and {2⋅m | m ∊ ℤ} ∩ {2⋅n + 1 | n ∊ ℤ} = ∅

    dsolve module now supports system of ODEs including linear system of ODEs of 1st order for 2 and 3 equations and of 2nd order for 2 equations. It also supports homogeneous linear system of n equations.

    New support for continued fractions, including iterators for partial quotients and convergents, and reducing a continued fraction to a Rational or a quadratic irrational.

    Support for Egyptian fraction expansions, using several different algorithms.

    Addition of generalized linearization methods to physics.mechanics.

    Use an LRU cache by default instead of an unbounded one. See PR #7464. Control cache size by the environment variable SYMPY_CACHE_SIZE (default is 500). SYMPY_CACHE_SIZE=None restores the unbounded cache.

    Added fastcache as an optional dependency. Requires v0.4 or newer. Control via SYMPY_CACHE_SIZE. May result in significant speedup. See PR #7737.

    New experimental module physics.unitsystems for computation with dimensions, units and quantities gathered into systems. This opens the way to dimensional analysis and better quantity calculus. The old module physics.units will stay available until the new one reaches a mature state. See PR #2628.

    New Complement class to represent relative complements of two sets. See Pr #7462.

    New trigonometric functions (asec, acsc), many enhancements for other trigonometric functions (PR #7500).

    New Contains class to represent the relation "is an element of" (see PR #7989).

    The code generation tools (code printers, codegen, autowrap, and ufuncify) have been updated to support a wider variety of constructs, and do so in a more robust way. Major changes include added support for matrices as inputs/outputs, and more robust handling of conditional (Piecewise) statements.

    ufuncify now uses a backend that generates actual numpy.ufuncs by default through the use of the numpy C api. This allows broadcasting on all arguments. The previous cython and f2py backends are still accessible through the use of the backend kwarg.

    CodeGen now generates code for Octave and Matlab from SymPy expressions. This is supported by a new CodePrinter with interface octave_code. For example octave_code(Matrix([[x**2, sin(pi*x*y), ceiling(x)]])) gives the string [x.^2 sin(pi*x.*y) ceil(x)].

    New general 3D vector package at sympy.vector. This package provides a 3D vector object with the Del, gradient, divergence, curl, and operators. It supports arbitrary rotations of Cartesian coordinate systems and arbitrary locations of points.

Backwards compatibility breaks and deprecations

    All usage of inequalities (>, >=, <, <=) on SymPy objects will now return SymPy's S.true or S.false singletons instead of Python's True or False singletons. Code that checks for, e.g., (a < b) is True should be changed to (a < b) == True or (a < b) == S.true. Use of is is not recommended here.

    The subset() method in sympy.core.sets is marked as being deprecated and will be removed in a future release (issue). Instead, the is_subset() method should be used.

    Previously, if you compute the series expansion at a point other than 0, the result was shifted to 0. Now SymPy returns the usual series expansion, see PR #2427.

    In physics.mechanics, KanesMethod.linearize has a new interface. Old code should be changed to use this instead. See docstring for information.

    physics.gaussopt has been moved to physics.optics.gaussopt. You can still import it from the previous location but it may result in a deprecation warning.

    This is the last release with the bundled mpmath library. In the next release you will have to install this library from the official site.

    Previously lambdify would convert Matrix to numpy.matrix by default. This behavior is being deprecated, and will be completely phased out with the release of 0.7.7. To use the new behavior now set the modules kwarg to [{'ImmutableMatrix': numpy.array}, 'numpy']. If lambdify will be used frequently it is recommended to wrap it with a partial as so: lambdify = functools.partial(lambdify, modules=[{'ImmutableMatrix': numpy.array}, 'numpy']). For more information see #7853 and the lambdify doc string.

    Set.complement doesn't exists as an attribute anymore. Now we have a method Set.complement(<universal_set>) which complements the given universal set.

    Removed is_finite assumption (see #7891). Use instead a combination of "is_bounded and is_nonzero" assumptions.

    is_bounded and is_unbounded assumptions were renamed to is_finite and is_infinite (see #7947).

    Removed is_infinitesimal assumption (see #7995).

    Removed is_real property for Sets, use set.is_subset(Reals) instead (see #7996).

    For generic symbol x (SymPy's symbols are not bounded by default), inequalities with oo are no longer evaluated as they were before, e.g. x < oo no longer evaluates to True). See #7861.

    CodeGen has been refactored to make it easier to add other languages. The main high-level tool is still utilities.codegen.codegen. But if you previously used the Routine class directly, note its __init__ behaviour has changed; the new utilities.codegen.make_routine is recommended instead and by default retains the previous C/Fortran behaviour. If needed, you can still instantiate Routine directly; it only does minimal sanity checking on its inputs. See #8082.

    FiniteSet([1, 2, 3, 4]) syntax not supported anymore, use FiniteSet(1, 2, 3, 4) instead See #7622.

Minor changes

    Updated the parsing module to allow sympification of lambda statements to their SymPy equivalent.
    Lambdify can now use numexpr by specifying modules='numexpr'
    Use with evaluate(False) context manager to control automatic evaluation. E.g. with evaluate(False): x + x is actually x + x, not 2*x
    IndexedBase and Indexed are changed to be commutative by default
    sympy.core.sets moved to sympy.sets
    Changes in sympy.sets:
        Infinite Range is now allowed. See PR #7741
        is_subset(): The is_subset() method deprecates the subset() method. self.is_subset(other) checks if self is a subset of other. This is different from self.subset(other), which checked if other is a subset of self.
        is_superset(): A new method is_superset() method is now available. self.is_superset(other) checks if self is a superset of other.
        is_proper_subset and is_proper_superset: Two new methods allow checking if one set is the proper subset and proper superset of another respectively. For eg. self.is_proper_subset(other) and self.is_proper_superset(other) checks if self is the proper subset of other and if self is the proper superset of other respectively.
        is_disjoint(): A new method for checking if two sets are disjoint.
        powerset(): A new method powerset() has been added to find the power set of a set.
        The cardinality of a ProductSet can be found using the len() function.
    Changes in sympy.plot.plot_implicit:
        The plot_implicit function now also allows explicitly specifying the symbols to plot on the X and Y axes. If not specified, the symbols will be assigned in the order they are sorted.
        The plot_implicit function also allows axes labels for the plot to be specified.
    rules for simplification of ImageSet were added PR#7625. As a result {x | x ∊ ℤ} now simplifies to ℤ and {sin(n) | n ∊ {tan(m) | m ∊ ℤ}} automatically simplifies to {sin(tan(m)) | m ∊ ℤ}
    coth(0) now returns Complex Infinity. See #7634
    dioptre is added to physics.units #7782
    replace now respects commutativity #7752
    The CCodePrinter gracefully handles Symbols which have string representations that match C reserved words. #8199
    limit function now returns an unevaluated Limit instance if it can't compute given limit, see #8213

0.7.5

Major changes

    The version of mpmath included in SymPy has been updated to 0.18.

    New routines for efficiently compute the dispersion of a polynomial or a pair thereof.

    Fancy indexing of matrices is now provided, e.g. A[:, [1, 2, 5]] selects all rows and only 3 columns.

    Enumeration of multiset partitions is now based on an implementation of Algorithm 7.1.2.5M from Knuth's The Art of Computer Programming. The new version is much faster, and includes fast methods for enumerating only those partitions with a restricted range of sizes, and counting multiset partitions. (See the new file sympy.utilities.enumerative.py.)

    distance methods were added to Line and Ray to compute the shortest distance to them from a point.

    The normal_lines method was added to Ellipse to compute the lines from a point that strike the Ellipse at a normal angle.

    inv_quick and det_quick were added as functions in solvers.py to facilitate fast solution of small symbolic matrices; their use in solve has reduced greatly the time needed to solve such systems.

    solve_univariate_inequality has been added to sympy.solvers.inequalities.py.

    as_set attribute for Relationals and Booleans has been added.

    Several classes and functions strictly associated with vector calculus were moved from sympy.physics.mechanics to a new package sympy.physics.vector. (PRs #2732 #2862 #2894)

    New implementation of the Airy functions Ai and Bi and their derivatives Ai' and Bi' (called airyai, airybi, airyaiprime and airybiprime, respectively). Most of the usual features of SymPy special function are present. Notable exceptions are Gruntz limit computation helpers and meijerg special functions integration code.

    Euler-Lagrange equations (function euler_equations) in a new package sympy.calculus (PR #2431).

Minor changes

    Some improvements to the gamma function.

    generate_bell now generates correct permutations for any number of elements.

    It is no longer necessary to provide nargs to objects subclassed from Function unless an eval class method is not defined. (If eval is defined, the number of arguments will be inferred from its signature.)

    geometric Point creation will be faster since simplification is done only on Floats

    Some improvements to the intersection method of the Ellipse.

    solutions from solve of equations involving multiple log terms are more robust

    idiff can now return higher order derivatives

    Added to_matrix() method to sympy.physics.vector.Vector and sympy.physics.dyadic.Dyadic. (PR #2686).

    Printing improvements for sympy.physics.vector objects and mechanics printing. (PRs #2687, #2728, #2772, #2862, #2894)

    Functions with LaTeX symbols now print correct LaTeX. (PR #2772)

    init_printing has several new options, including a flag print_builtin to prevent SymPy printing of basic Python types (PR #2683), and flags to let you supply custom printers (PR #2894).

    improvements in evaluation of imageset for Intervals (PR #2723).

    Set properties to determine boundary and interior (PR #2744).

    input to a function created by lambdify no longer needs to be flattened.

Backwards compatibility breaks and deprecations

    the submatrix method of matrices was removed; access the functionality by providing slices or list of rows/columns to matrix directly, e.g. A[:, [1, 2]].

    Matrix([]) and Matrix([[]]) now both return a 0x0 matrix

    terms_gcd no longer removes a -1.0 from expressions

    extract_multiplicatively will not remove a negative Number from a positive one, so (4*x*y).extract_multiplicatively(-2*x) will return None.

    the shape of the result from M.cross(B) now has the same shape as matrix M.

    The factorial of negative numbers is now zoo instead of 0. This is consistent with the definition factorial(n) = gamma(n + 1).

    1/0 returns zoo, not oo (PR #2813).

    zoo.is_number is True (PR #2823).

    oo < I raises TypeError, just as for finite numbers (PR #2734).

    1**oo == nan instead of 1, better documentation for Pow class (PR #2606).
2015-11-01 09:54:11 +00:00
..
aamath * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
abs Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
admesh
algae * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
analitza Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
antixls Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
aribas
arpack Racy build. 2014-10-15 22:06:23 +00:00
bc * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
blas Build and link Fortran code using the Fortran Compiler. Bump revision. 2014-08-19 13:37:14 +00:00
blitz++ pkglint clean. 2014-12-29 01:41:09 +00:00
calc Resolves: 2013-04-06 20:27:16 +00:00
calcoo Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
cantor Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
capc-calc Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
cgal Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
clisp-pari Provide library path for gmp and pari too. 2014-12-11 22:12:33 +00:00
cln Update to 1.3.4 2015-06-30 07:56:44 +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
coinmp Update to 1.8.3 2015-09-29 14:51:18 +00:00
crfsuite SSE2 support only makes sense on X86, but configure doesn't really 2015-03-31 15:49:15 +00:00
dcdflib.c Don't fail on logical op mixing with clang. 2013-09-10 14:23:05 +00:00
dcdflib.f
dfftpack
dieharder Update dieharder to 3.31.1 2015-10-26 05:52:06 +00:00
djbfft
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
ess Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
eukleides Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
eukleides10 Re-import eukleides-1.0.3 as math/eukleides10. 2013-06-10 12:25:59 +00:00
euler Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
extcalc Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
fftpack
fftw Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
fftw2 fix parse error in fftw.texi when makeinfo is provided by gtexinfo 2015-03-12 16:57:52 +00:00
fftwf Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
fgmp
fityk Since the code expects boost::array to win, use that explicitly. 2015-06-10 15:00:31 +00:00
fricas Update to FriCAS 1.2.6 2015-08-12 08:50:37 +00:00
galculator Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
gap Add termios.h formerly included by unistd.h. 2013-07-18 12:07:24 +00:00
gcalctool Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
geg
genius Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
glpk Changes 4.55: 2014-08-30 11:19:52 +00:00
gnome-calculator Update gnome-calculator to 3.16.2 2015-06-15 01:14:23 +00:00
gnumeric Point out when the latest update was, and that there's a newer 2015-08-05 21:41:38 +00:00
gnumeric110 Point out when the latest update was, and that there's a newer 2015-08-05 21:41:38 +00:00
gnumeric112 Update gnumeric to version 1.12.23. 2015-08-13 15:14:29 +00:00
gp-autpgrp Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
gp-factint Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
gp-fplsa Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
gp-grape Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
gp-grpconst Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
gp-lag Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
grace Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
graphopt
grpn Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
gsl Fix build on MirBSD. 2013-12-03 21:47:36 +00:00
gtklife Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
harminv Use -Wl for rpath options extracted from Fortran linker. 2013-11-04 16:40:37 +00:00
heirloom-factor
heirloom-units
hs-distributive Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-mwc-random Because this error: 2015-05-09 11:22:25 +00:00
hs-nats Bump PKGREVISION for hs-text-1.2.1.3 2015-08-02 11:27:04 +00:00
hs-scientific Bump PKGREVISION for hs-text-1.2.1.3 2015-08-02 11:27:04 +00:00
hs-semigroups Bump PKGREVISION for hs-text-1.2.1.3 2015-08-02 11:27:04 +00:00
ipopt Fix build. 2013-12-06 21:24:59 +00:00
isl Update 0.14 to 0.14.1 2015-04-10 01:54:45 +00:00
itpp Don't strip library path for Fortran lib. 2014-08-19 13:37:53 +00:00
kalgebra Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
kcalc Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
kseg Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
lapack Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libffm Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libint Revert. "GBS" is not acceptable abbreviation here. 2013-04-07 20:38:36 +00:00
liblbfgs Fix for build failure seen on Linux/gcc-4.7. 2014-11-02 23:09:31 +00:00
liblinear Add liblinear. 2014-10-19 09:57:21 +00:00
libmatheval Don't use libfl. Bump revision. 2014-04-28 12:43:34 +00:00
libshorttext LibShortText is an open source tool for short-text classification and 2014-10-29 17:06:40 +00:00
libsvm Needs gmake to process Makefile correctly. Likely fixes build on Darwin. 2015-04-11 03:25:43 +00:00
linpack
lp_solve Package requires GCC runtime. 2015-03-17 14:24:43 +00:00
ltm MASTER_SITES and HOMEPAGE moved from libtom.org to libtom.net 2014-12-27 00:00:26 +00:00
mapm Do not build statically on SunOS. 2014-01-09 12:07:42 +00:00
mathomatic Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
maxima Update maxima to 5.37.2 2015-10-01 18:43:27 +00:00
mcsim Resolves: 2013-04-06 20:27:16 +00:00
meschach
metis installs headers, so should have a bl3.mk 2015-09-23 03:57:32 +00:00
minisat Find correct zlib. 2014-12-15 12:31:09 +00:00
minpack
mpcomplex Don't clean intermediate files after checksum/patch phase. 2015-09-15 20:56:33 +00:00
mpfr Don't clean intermediate files after checksum/patch phase. 2015-09-15 20:56:33 +00:00
mprime-bin
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
nickle suppress detection of DOCBOOK, PR pkg/48115 2013-08-12 02:17:43 +00:00
ntl Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
octave Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
odepack
openaxiom Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +00:00
openfst Update MASTER_SITES, it was 'Server not found' status. 2014-12-26 23:53:08 +00:00
ordCalc Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
otter
p5-Algorithm-Cluster Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Algorithm-Munkres Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Excel-Template Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Excel-Template-Plus Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Base-Convert Import Math-Base-Convert-0.08 as math/p5-Math-Base-Convert. 2015-08-06 01:32:11 +00:00
p5-Math-Base36 Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Base85 Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-BaseCnv Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Bezier Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-BigInt-GMP Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-BigInt-Pari Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-BigInteger Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Complex Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Derivative Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-FFT Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-GMP Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Interpolate Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-MatrixReal Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Pari PR 45271 Joern Clausen: remove old Solaris PIC-related substitution 2015-08-10 08:23:48 +00:00
p5-Math-Permute-List Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Prime-Util Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Random Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Random-ISAAC Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Random-ISAAC-XS Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Random-MT Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Random-MT-Auto Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Random-MT-Perl Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Round Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-Spline Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Math-VecStat Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Number-Compare Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Number-Latin Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Number-Range Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Number-Tolerant Update to 1.706 2015-07-12 03:26:17 +00:00
p5-Roman Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Set-Crontab Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Set-Infinite Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Spreadsheet-ParseExcel Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Spreadsheet-Read Comment out dependencies of the style 2015-07-12 18:56:06 +00:00
p5-Spreadsheet-ReadSXC Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Spreadsheet-WriteExcel Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Spreadsheet-XLSX Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Statistics-Descriptive Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Statistics-Distributions Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Statistics-TTest Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-Test-Number-Delta Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
pari Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
pari-galdata Update to 2.2. Changes not documented. 2012-12-12 12:45:18 +00:00
pear-Math_BigInteger Update pear-Math_BigInteger to 1.0.2. 2015-08-30 08:59:04 +00:00
pear-Numbers_Roman
pear-Numbers_Words Update pear-Numbers_Words to 0.18.1. 2015-08-30 09:00:25 +00:00
php-bcmath
ppl Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
prng Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
pspp Use normal PG selection version and don't hard-code PostgreSQL 8.4. 2015-10-24 21:20:10 +00:00
py-almost Remove unnecessary comment. 2014-07-22 10:12:56 +00:00
py-cdecimal Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-ephem Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-ephem3 Removing python26. EOL'd quite some ago and discussed a couple times on 2015-04-13 23:12:40 +00:00
py-fpconst Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gmpy Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-infinity Import py27-infinity-1.3 as math/py-infinity. 2014-06-14 13:57:58 +00:00
py-intervals Import py27-intervals-0.3.1 as math/py-intervals. 2014-07-05 19:33:17 +00:00
py-mpmath Update to 0.19. Update HOMEPAGE and MASTER_SITES. Allow python-3. 2014-07-22 10:11:42 +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 Update to 1.9 2014-07-28 12:16:23 +00:00
py-numarray use the Accelerate framework on Darwin instead of the obsolete vecLib 2015-01-27 05:04:06 +00:00
py-Numeric use the Accelerate framework on Darwin instead of the obsolete vecLib 2015-01-27 05:04:06 +00:00
py-numexpr Fix build. This is an egg hence has an egg-info dir not a file. 2014-07-19 12:46:53 +00:00
py-numpy Update to 1.9.2 2015-04-17 00:41:38 +00:00
py-pandas Update py-pandas to 0.16.2. 2015-07-21 19:44:45 +00:00
py-pytables Update to 3.1.1 and fix build with py-cython-0.20+. 2014-09-20 17:56:36 +00:00
py-roman Set MAINTAINER to pkgsrc-users. 2015-03-15 17:09:00 +00:00
py-rpy Remove more references to python-2.6. 2015-04-14 11:40:31 +00:00
py-Scientific Don't force mpi-ch, openmpi works just as well. Don't force manual 2015-09-23 12:00:11 +00:00
py-Scientific-doc
py-scipy Fix PLIST for python-3.x -- weave is only built for python-2.x. 2015-04-25 13:43:18 +00:00
py-simpleeval Add py-simpleeval 2015-08-25 05:05:39 +00:00
py-sympy Update to 0.7.6.1, based on PR 50382 by derouiche. 2015-11-01 09:54:11 +00:00
qalculate LLVM's correlated value propagation pass is known to require a lot of 2015-03-02 19:59:06 +00:00
qalculate-bases Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
qalculate-currency Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
qalculate-gtk Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
qalculate-kde Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
qalculate-units Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
qhull
quadpack
R Use install_name_tool to fix up Darwin library names. Fixes check-shlib. 2015-09-11 13:16:16 +00:00
R-abind
R-akima
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-45. 2014-08-26 14:08:02 +00:00
R-circular Update to 0.4.7 2014-03-09 14:15:43 +00:00
R-classInt
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 Remove math/R-latticeExtra and switch dependency to reimported package 2014-09-19 19:42:13 +00:00
R-date Update to date v1.2-34. 2014-08-28 03:14:39 +00:00
R-DBI Update to 0.3.1 2015-08-07 01:41:38 +00:00
R-e1071 Update to 1.6.1 2013-08-15 09:34:23 +00:00
R-gdata Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
R-genetics Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
R-geoR Fixes: 2013-04-06 03:45:05 +00:00
R-geoRglm
R-GRASS Requires zlib. 2014-09-29 15:11:43 +00:00
R-gstat Update to 1.0.15 2013-01-24 01:51:13 +00:00
R-gtools
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.15.0 2015-05-31 14:00:12 +00:00
R-ISwR
R-lmm Update to 1.0 2015-05-31 13:01:35 +00:00
R-mapproj Update to 1.2.2 2015-05-31 12:57:10 +00:00
R-maps Update to 2.3.9 2015-05-31 12:04:11 +00:00
R-minqa Import minqa-1.2.4 as math/R-minqa. 2015-10-05 01:12:46 +00:00
R-mvtnorm Update to 1.0.2 2015-05-31 11:57:03 +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
R-plyr Update to 1.8.2 2015-05-31 03:54:07 +00:00
R-R2HTML
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.10 2015-05-31 02:38:49 +00:00
R-RArcInfo
R-Rcmdr
R-RColorBrewer Update to 1.1.2 2015-05-30 10:30:08 +00:00
R-RPostgreSQL Bump PostgreSQL default version to 9.3. 2014-06-10 14:21:37 +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.1.0 2015-05-30 11:05:17 +00:00
R-spacetime Update to 1.1.4 2015-05-31 02:32:48 +00:00
R-splancs Update to 2.01.37 2015-05-30 11:09:12 +00:00
R-statmod Update to 1.4.21 2015-05-30 10:50:34 +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 Update to 1.7.12 2015-05-30 10:37:38 +00:00
randlib
ruby-gsl Update ruby-gsl to 1.16.0.6. 2015-09-13 14:37:10 +00:00
ruby-narray Update HOMEPAGE. 2015-09-26 15:07:42 +00:00
ruby-spreadsheet Update ruby-spreadsheet to 1.0.7. 2015-10-04 12:40:30 +00:00
sc Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
scilab Switch from x11/Xaw3d to newer x11/libXaw3d. 2015-10-14 20:17:24 +00:00
slatec
snns Switch from x11/Xaw3d to newer x11/libXaw3d. 2015-10-14 20:17:24 +00:00
speedcrunch Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
statist
superlu Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
tasp-vsipl
teapot Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
tex-apnum Update tex-apnum{,-doc} to 1.2 from texlive 2015 2015-06-14 11:31:46 +00:00
tex-apnum-doc Update tex-apnum{,-doc} to 1.2 from texlive 2015 2015-06-14 11:31:46 +00:00
tex-fp
tex-fp-doc
tex-kastrup
tex-kastrup-doc
texdrive Be more explicit in TeX dependencies. 2015-05-02 05:39:14 +00:00
TinySVM Set MAINTAINER to pkgsrc-users. 2015-03-15 17:20:19 +00:00
tochnog
udunits Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
units Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
vista Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
wxmaxima Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
xeukleides10 Restore package name, lack of hyphen 2015-09-15 08:22:39 +00:00
xfractint Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
xgap HOMEPAGE= directory moved. (Share -> Packages) 2014-12-25 23:28:50 +00:00
xldlas Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
xlife Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
xlispstat Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
xmgr Remove USE_X11BASE and X11PREFIX. 2015-07-04 16:18:28 +00:00
xylib Use <memory> for libc++. 2013-04-30 22:26:29 +00:00
yacas Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
yorick Resolves: 2013-04-06 20:27:16 +00:00
Makefile Add R-minqa 2015-10-05 01:14:06 +00:00