pkgsrc/math
adam df7202641a py-sympy: updated to 1.8
1.8:

Backwards compatibility breaks and deprecations

Please manually add any backwards compatibility breaks or deprecations here, in addition to the automatic listing below.

assumptions

AskHandler(), register_handler() and remove_handler() are deprecated. Handler now must be multipledispatch instance.
parsing

Parsing of "Q" returns AssumptionKeys instance in assumptions module. This means that sympify("Q") will no longer return a symbol.
Changes

assumptions

Q.infinite now correctly evaluates to True for oo, -oo, and zoo.

Assumption predicates now correctly evaluates to None for S.NaN.

Relational objects do not need to be wrapped by Q.is_true to be asked or refined anymore

Q.is_true wrapping over AppliedPredicate now just return the argument.

refine arg(x) when x is real and nonzero

assumptions/relation module is introduced. This module implements binary relation as predicate.

AskHandler(), register_handler() and remove_handler() are deprecated. Handler now must be multipledispatch instance.

Predicate now uses a single handler which is multipledispatch instance.

Predicate can now take multiple arguments.

Predicate("...") now returns UndefinedPredicate instance. To define a predicate, you must make a subclass of Predicate.

calculus

Using maximum with a piecewise expression over a domain no longer fails due to a bug fix in Piecewise.as_expr_set_pairs.
codegen

allowing for multi-dimensional arrays as arguments/locals in c code generation

create_expand_pow_optimization is now customizable with respect to requirement on base.

Support flattening of elementwise additions of array expressions.

Fixes to array-expressions in order to properly work with ZeroArray and ZeroMatrix.

Fixing matrix expression recognition from array-expressions.

Minor fixes to the way the AST of array expressions is built

Add normalization of CodegenArrayDiagonal when it's nested with CodegenArrayPermuteDims and CodegenArrayContraction.

Increased support for the normalization of array expressions and permutations of indices.

parse_matrix_expression( ) is now able to parse traces of matrices.

combinatorics

Added a section to the permutation docs about containment in permutation groups.
concrete

Improved infinite summation capability by adding residue formula.
A bug leading to incorrect evaluation of a summation of an exponential function was fixed.
core

Fixed a bug in Pow._eval_nseries that added Order terms to exact expansions

Fixed a bug in Expr.round that could lead to infinite recursion in integrate.

Removed deprecated ClassRegistry

get_integer_part no longer has a threshold on the approximation to closest integer based on difference, allowing floor to give more accurate results for smaller evalf precisions also

A bug causing match to fail for expressions with different signs was fixed. Previously this resulted in solve raising an exception for some inputs.

Make S(0.0) == S.false return False

.refine() method is moved from Expr to Basic.
gcd correctly handles unevaluated Mul

Fixed a bug leading to infinite recursion in the old assumptions under evaluate(False).

Fixed _eval_is_zero() functionality when imaginary numbers are involved.

Kind classification of objects is introduced. This feature is experimental, and can be replaced or deleted in the future.
Make class Eq with sets as arguments work with simplify().

Fixed a few broken cases of expr.is_integer

functions

Implemented Riemann Xi function

riemaan xi function

Added nseries expansion for besselj and bessely

Fixed leading term calculation of sin functions to handle angles outside (-pi, pi)

Added aseries expansion to error functions

Changes _eval_nseries of Abs to no longer return a Piecewise

Modified _eval_nseries to handle infinity and added _eval_as_leading_term in floor and ceiling

Added Generalized Incomplete, Generalized Regularized and Central Beta functions

Added _eval_nseries support to sign

Fixed assumption is_algebraic for exponentials with rational multiples of I*pi to be True.
geometry

Fix AssertError for vertical tangent
Geometric entities with symbolic coordinates will not be printed in SVG.
integrals

Fixed a bug that led to RecursionError in integrals involving hyperbolic functions.

The heurisch integration method was made faster by improvements in the sparse linear systems solver.

A bug leading to incorrect results when integrating Piecewise expressions where a condition simplifies to True was fixed.

logic

simplify_logic faster in most cases, especially for larger expressions.
refine() on Boolean objects reduces them to true or false if the truth value can be determined.
matrices

Fixed a bug that led to the wrong derivative result in matrix expressions.

The eye and zero functions have been made much faster for large matrices.

Added two new functions upper_triangular and lower_triangular, that return upper and lower triangular parts of a matrix.

Minus one, integers, rational numbers multiplied with MatAdd is automatically distributed.

Added function returning Wilkinson matrix

Implemented Singular Value decomposition for matrices

Implemented Upper Hessenberg Decomposition for a matrix

eigenvals, eigenvects without radical solution will be returned as CRootOf
Added function to calculate Generalized Schur Complement for Block Matrices

Added functions to compute LDU, UDL and LU decompositions for Block Matrices

Fixed issues with dot product for Matrix.orthogonalize with complex vectors.

Fixed zero division issues for Matrix.QRdecomposition with zero columns coming first than nonzero columns.

Added a function to compute the permanent of a matrix
Changed behaviour of eq() of class DenseMatrix

det has a new option 'gauss-ge' which is much faster in many cases

ntheory

Added documentation of ecm and qs functions

Fixed a bug in the is_gaussian_prime function for python complex numbers (e.g. 1+1j).

primerange now accepts a single argument i.e., primerange(input_arg) is valid and is same as primerange(2, input_arg).

Added motzkin numbers

parsing

Fixed issue with parsing logarithm bases without curly braces
Fix parse_expr parsing of expressions with methods when using the implicit_multiplications transformation.

Include the transformed code in the error message when the evaluation in parse_expr fails.

Extended the LaTeX parser with support for complex conjugates (via \overline{...}).

Latex parser does not evaluate sqrt expressions anymore.

physics.continuum_mechanics

make beam module compute correctly internal forces
physics.optics

Fixed bugs related to basic operations on TWave
physics.quantum

WignerD now evaluates to KroneckerDelta in some cases.
physics.units

Fix bug when input argument to a function is an integer

Change default behavior for functions (all function arguments must be dimensionless by default)

sin, cos, tan, cot, sec, and csc functions may have a dimensionless or angle input argument

Exponents must now be dimensionless

Constants such as pi and E are now treated as dimensionless (raised exception previously)

Numbers with an imaginary component are now treated as dimensionless (raised exception previously)

Fixed a bug with derived units and dimensions in check_dimensions.

Fix bug in convert_to returning wrong units in some cases where the linear equation system between canonical units is unsolvable.

physics.vector

Fix documentation for v1pt_theory
Introduced new methods on ReferenceFrame: .orient_axis(), .orient_explicit(), .orient_body_fixed(), .orient_space_fixed(), and .orient_quaternion(). .orient() calls out to each new method and it is recommended to use the new methods.
Added .xreplace() to Vector Class.

Added .xreplace() to Dyadic Class.

Added .evalf() to Vector class

Added .evalf() to Dyadic class

plotting

Added handling for OverflowError (when plotting functions like exp(1/x)).
polys

Added internal representation as both dense and sparse matrix

Added docstrings for Domain Matrix class

Add zeros method to DomainMatrix

A new sparse implementation of DomainMatrix is added.

make is_disjoint strict so that inequalities evaluated with solve() return consistent results

The DomainMatrix class has moved from sympy.polys.domainmatrix to sympy.polys.matrices and should now be imported as from sympy.polys.matrices import DomainMatrix.

A new polys FiniteExtension domain is added.

numberfields: implemented new algorithm for primitive_element in case ex=True.
added boilerplate index method for FracField

Solved bug in Poly.replace

Solve a bug in polytools.degree.

Use assumption system instead of structural equality check in __bool__ method of Expression domain element (fixing cases where Poly(...).is_zero would incorrectly return False)

printing

The pretty printer was made faster when printing large sequences (e.g. tuples, sets etc).

Fixed a bug which led to latex printing error in singularity function expressions.

Replaced the Theano printer with an Aesara printer

Symbols with Unicode character names and no underscores, like ω0 now properly pretty print subscripts.

Fix the printing of the vertical bar in ImageSet, ConditionSet, and ComplexRegion so that it is the full height in the pretty and LaTeX printers.

Fix the tag for the degree of a root with a rational base in MathML output.

irrational powers are no longer printed with square root sign, they are printed as fractional powers

Allow spreading assignments across multiple symbols when printing multi-member objects.

Support various array constructor types when printing arrays to GLSL.

Fixes a bug when printing negative expressions to GLSL with operators printed as functions.

Support a custom 0 substitution for printing expressions representing various GLSL types.

make cxxcode correctly print the first argument of Min/Max functions

sets

Added basic denesting functionaility for sets of the form ConditionSet(x, Contains(x, ...)).

ConditionSet.contains(x) now returns False if x is not in the base set (even if its substitution into the condition will cause an error).

FiniteSet.evalf with a subs argument now does the substitution. Previously, the argument was ignored.

Add .simplify to FiniteSet.

Make 'is_subset' work for ProductSet

changed behavior of Rationals.contains(float) to indeterminate

tests modified to include new behavior

.evalf() precisions with x and FiniteSet(x) is same now.

simplify

Fix simplify calls sympify without rational parameter
TRmorrie now takes powers of cos terms into account
solvers

Fixed a bug in solve that expanded hyperbolic function constants to equivalent exp form.

Handle x**r=0 case in invert_complex

Fixed a bug in solveset, which led to infinite recursion for solving some expressions involving radicals.

The new sparse DomainMatrix implementation is used in linsolve to make it much faster when solving large sparse systems of linear equations.

Modified symbols sorting in solvers._solve_system to ensure solve and linsolve solve the same way

Added solver for 2nd order nonlinear autonomous ODE.

speed improvement in a substep of rsolve_hyper (when computing constant solutions to constant coefficient recurrences).

Fixed incorrect solutions from rsolve for higher order recurrences

stats

Refactory and simplification of sampling backends for random variables.

Expectation can now be calculated across multiple Uniform RVs evaluating to zero

Implemented Matrix Student's t-distribution

Fixed simplification bug in Stochastic Processes by introducing abstract Distribution class

API changed for StochasticProcess.distribution which now expects a timestamp argument instead of RandomIndexedSymbol object.

Implemented FlorySchulz Distribution

implemented LogCauchy Distribution

Implemented Logit-Normal probability distribution

Fixes cdf computation of Discrete random variables by using integer limits

Added 2 new distributions in frv_types.

added support for fundamental matrix for regular markov chains

Added support for multiple RandomIndexedSymbols in DiscreteMarkovChain

tensor

Introduced objects ArraySymbol and ArrayElement for array expressions equivalent to MatrixSymbol and MatrixElement in the matrix expression module.
shape() function is introduced in array module.
Add class ZeroArray for array expressions of zero-valued elements.

Make Array differentiation(derive_by_array) work with non sympy expressions.

Added tensordiagonal( ) function to perform diagonalization of array expressions.

Adding an array with any other type now consistently gives NotImplemented.
utilities

Added official support for using CuPy to GPU accelerate lambdify functions.

Added Replacer class to simplify the creation of replacement expressions with MatchPy.

Added tests for optional parameter in MatchPy patterns.

Added string printers for MatchPy-compatible wildcards in sympy.utilities.matchpy_connector

Added WildDot, WildPlus and WildStar classes to MatchPy connector. These classes correspond to the dot, dot-plut and dot-star expressions in regular expression, but operate on SymPy expression trees and are aware of associative and commutative properties, features supported through the MatchPy library.

minlex no longer accepts is_set or small arguments

minlex and least_rotation now accept key= arguments similar to sorted.

vector

Fixed a bug with integral over ImplicitRegion objects
other

Expanding documentation to include all class members with docstrings
2021-05-12 08:42:42 +00:00
..
aamath
abs
admesh
algae
amath
analitza revbump for textproc/icu 2021-04-21 11:40:12 +00:00
antixls *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
aribas aribas: update download link 2021-04-24 19:36:25 +00:00
arpack-ng Update arpack-ng to 3.8.0 2021-05-11 10:18:37 +00:00
bc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
bc-gh math/bc-gh: Update to 3.3.0 2021-02-17 16:51:17 +00:00
bcal bcal: Update to 2.2 2020-01-09 12:21:37 +00:00
blas math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
blitz++ math: align variable assignments 2019-11-02 16:16:18 +00:00
boolstuff math/boolstuff: suppress USE_TOOLS+=perl warning 2020-05-13 04:18:58 +00:00
calc
calcoo *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
cantor revbump for boost-libs 2021-04-21 13:24:06 +00:00
capc-calc capc-calc: update to 2.12.7.1 and fix darwin compile 2018-12-31 16:35:25 +00:00
cblas math/cblas: import from wip 2021-04-20 20:37:03 +00:00
cgal request c++11, not c++03. some of the demos in this library need 2021-04-25 22:07:26 +00:00
classias
clisp-pari math: align variable assignments 2019-11-02 16:16:18 +00:00
cln all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
cloog math/cloog: remove unknown configure option --with-bits=gmp 2020-03-21 11:50:10 +00:00
coinmp coinmp: binary packages appear broken (wants some libstdc++.so.7)... 2020-10-10 16:10:27 +00:00
congen depend on ruby, as there are ruby scripts 2020-04-01 19:15:00 +00:00
crfsuite Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
dcdflib.c Don't build & install PIC libraries consistently. Bump revision. 2019-12-21 23:43:59 +00:00
dcdflib.f
dfftpack
dieharder
djbfft Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
djbsort Update to 20190516. From the changelog: 2021-02-18 10:08:31 +00:00
double-conversion math: align variable assignments 2019-11-02 16:16:18 +00:00
eigen2 eigen2: fix headers to avoid introducing errors in dependent packages. 2019-09-09 12:05:01 +00:00
eigen3 Update eigen3 to 3.3.9 2021-03-17 17:20:00 +00:00
eispack
erfa erfa: fix HOMEPAGE. 2021-01-07 21:42:50 +00:00
ess *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
eukleides
eukleides10
euler *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
fftpack
ffts
fftw math/fftw: fix pkglint issues 2021-05-07 12:31:22 +00:00
fftw2
fgmp
fityk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
flann-lib math/flann-lib: cleanup for proper distname among others 2021-05-03 09:26:42 +00:00
fplll Reset maintainership for all (no longer) mine packages 2020-07-13 19:45:45 +00:00
fricas *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
funst math/funst: reset maintainer 2021-04-24 19:44:52 +00:00
galculator *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gap *: remove dead download link 2021-04-24 00:16:04 +00:00
gappa math/gappa, math/sollya: Cite upstreamed patches. 2020-07-17 17:30:13 +00:00
gcalctool revbump for textproc/icu 2021-04-21 11:40:12 +00:00
geg
genius revbump for textproc/icu 2021-04-21 11:40:12 +00:00
glpk all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gnome-calculator *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
gnumeric112 *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
go-stats Revbump all Go packages after go116 update 2021-05-08 15:02:22 +00:00
go-units Revbump all Go packages after go116 update 2021-05-08 15:02:22 +00:00
gp-autpgrp *: remove dead download link 2021-04-24 00:16:04 +00:00
gp-factint *: remove dead download link 2021-04-24 00:16:04 +00:00
gp-fplsa *: remove dead download link 2021-04-24 00:16:04 +00:00
gp-grape *: remove dead download link 2021-04-24 00:16:04 +00:00
gp-grpconst *: remove dead download link 2021-04-24 00:16:04 +00:00
gp-lag *: remove dead download link 2021-04-24 00:16:04 +00:00
grace *: remove dead download link 2021-04-25 06:43:48 +00:00
graphopt
grpn *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gsl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
gtklife *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
harmbase2 Add harmbase2-20191229 2020-02-28 22:16:01 +00:00
harmgen math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
harminv math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
heirloom-factor
heirloom-units
herisvm Bump PKGREVISION by change of default Ruby version 2019-12-15 15:38:57 +00:00
hs-bifunctors *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-comonad *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-contravariant *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-distributive *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-ieee754 *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-integer-logarithms *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-math-functions *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-mwc-random *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-nats *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-profunctors *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-scientific *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-semigroupoids *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-semigroups *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
ipopt math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
isl isl: updated to 0.24 2021-05-02 17:47:30 +00:00
itpp math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
kalgebra revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kalk math/kalk: reset maintainer 2021-04-24 19:47:11 +00:00
kcalc revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kissfft kissfft: add buildlink3.mk 2021-04-10 08:28:24 +00:00
lapack cblas: Fix link to Fortran libraries by using Fortran compiler as linker 2021-04-21 13:53:18 +00:00
lapacke math/lapacke: import from wip 2021-04-20 20:40:47 +00:00
libffm
libint all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libixion revbump for boost-libs 2021-04-21 13:24:06 +00:00
liblbfgs
liblinear liblinear: updated to 2.43 2021-04-16 06:48:04 +00:00
libmatheval all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libnumbertext libnumbertext: update to 1.0.7. 2021-02-18 10:20:30 +00:00
libshorttext Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
libsvm Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
linpack math/linpack, math/superlu: Convert to use new BLAS 2020-10-13 12:11:07 +00:00
lp_solve various fixes for arm64 big endian support. 2021-04-25 07:51:24 +00:00
ltm Assume non-VAX uses IEEE754 floats. While it doesn't make a difference 2020-09-14 18:23:41 +00:00
lua-cassowary Add lua-cassowary-2.2: 2020-08-06 23:36:51 +00:00
lumina-calculator revbump for textproc/icu 2021-04-21 11:40:12 +00:00
mapm
mathomatic
maxima maxima: Add missing PLIST entry. 2020-12-26 11:04:48 +00:00
mcsim all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
meschach Always skip PIC libraries. Bump revisions. Add RCS IDs. 2019-12-20 00:02:06 +00:00
metis
minisat
minpack
mpcomplex math: align variable assignments 2019-11-02 16:16:18 +00:00
mpfi mpfi: Import mpfr-1.5.4 as math/mpfr 2020-05-19 14:44:04 +00:00
mpfr gmp,mpfr: Remove CONFIGURE_ARGS flags from builtin.mk as it assumes that 2020-09-03 08:58:42 +00:00
mprime-bin
mtl
muparser *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
newmat math: align variable assignments 2019-11-02 16:16:18 +00:00
nickle all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nlopt
ntl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ocaml-num Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-zarith Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
octave math/fftw and dependents: merge math/fftwf backin and add MPI and OpenMP 2021-04-29 23:30:12 +00:00
odepack
openaxiom Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
openblas openblas: update to 0.3.10, fixing build with gcc 10 2021-03-25 23:22:35 +00:00
openblas_openmp openblas_openmp, openblas_pthread: Remove wip references 2020-11-05 17:06:10 +00:00
openblas_pthread openblas_openmp, openblas_pthread: Remove wip references 2020-11-05 17:06:10 +00:00
openfst math: align variable assignments 2019-11-02 16:16:18 +00:00
ordCalc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
otter otter: update links 2021-04-25 06:36:52 +00:00
p5-Algorithm-BloomFilter *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Algorithm-Cluster *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-Munkres *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Alien-GMP p5-Alien-GMP: update to 1.16. 2020-09-07 11:46:21 +00:00
p5-Excel-Template *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Excel-Template-Plus *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Base-Convert *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Base36 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Base85 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-BaseCnv *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Bezier *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-BigInt p5-Math-BigInt: update to 1.999818. 2020-09-07 11:47:43 +00:00
p5-Math-BigInt-GMP p5-Math-BigInt-GMP: update to 1.6007. 2020-09-07 11:48:34 +00:00
p5-Math-BigInt-Pari p5-Math-BigInt-Pari: update to 1.3006. 2020-09-07 11:49:06 +00:00
p5-Math-BigInteger *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Calc-Units *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Math-Derivative *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-FFT *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-GMP p5-Math-GMP: update to 2.20. 2020-09-07 11:49:43 +00:00
p5-Math-Int64 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Int128 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Interpolate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Matrix p5-Math-Matrix: update to 0.91. 2020-09-07 11:51:38 +00:00
p5-Math-MatrixReal *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Pari *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Permute-List *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Prime-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Random *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Random-ISAAC *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Random-ISAAC-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Random-MT *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Random-MT-Auto p5-Math-Random-MT-Auto: update to 6.23. 2020-09-07 11:54:37 +00:00
p5-Math-Random-MT-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Round *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Spline *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Math-Utils p5-Math-Utils: update to 1.14. 2020-09-07 11:55:10 +00:00
p5-Math-VecStat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Number-Compare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Number-Latin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Number-Range *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Number-Tolerant *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Number-WithError *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Roman *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Set-Crontab *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Set-Infinite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Spreadsheet-ParseExcel *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Spreadsheet-Read p5-Spreadsheet-Read: update to 0.81. 2020-09-07 11:55:56 +00:00
p5-Spreadsheet-ReadSXC p5-Spreadsheet-ReadSXC: update to 0.24. 2020-09-07 11:58:29 +00:00
p5-Spreadsheet-WriteExcel *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Spreadsheet-XLSX *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Statistics-Basic Initial import of p5-Statistics-Basic, a collection of basic statistics 2021-02-05 14:43:32 +00:00
p5-Statistics-CaseResampling *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Statistics-Descriptive *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Statistics-Distributions *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Statistics-TTest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Number-Delta *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pari *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pari-galdata all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
pari23 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pcg
pear-Math_BigInteger Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
pear-Numbers_Roman Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
pear-Numbers_Words Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
php-bcmath
php-stats math/php-stats: update PHP version 2021-01-03 06:47:07 +00:00
ppl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
prng
pspp revbump for textproc/icu 2021-04-21 11:40:12 +00:00
py-abcpmc revert wrong fix for py-scipy python 3.6 deprecation, fix properly 2021-04-09 14:41:34 +00:00
py-almost
py-arviz revert wrong fix for py-scipy python 3.6 deprecation, fix properly 2021-04-09 14:41:34 +00:00
py-asdf py-asdf: updated to 2.7.3 2021-04-05 19:45:49 +00:00
py-asteval py-asteval: updated to 0.9.23 2021-03-12 13:11:50 +00:00
py-astroML (math/py-astroML) import py38-astroML-1.0 2020-12-19 14:42:39 +00:00
py-astroplan (math/py-astroplan) import py38-astroplan-0.7 2020-12-19 14:38:01 +00:00
py-astropy (math/py-astropy) import py38-astropy-4.2 2020-12-19 14:17:39 +00:00
py-astroquery (math/py-astroquery) Fix typo py-astro{4,} 2020-12-22 22:03:56 +00:00
py-autograd math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-bottleneck math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-cdecimal all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-claripy py-angr: update to version 9.0.4378 2020-09-28 22:56:38 +00:00
py-ephem Explicitly read files as unicode for Python 3. The content is converted 2020-05-31 20:49:32 +00:00
py-fftw math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-fpconst Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-gmpy
py-gwcs (math/py-gwcs) import py38-gwcs-0.15.0 2020-12-19 14:54:00 +00:00
py-infinity use versioned py-pygemnts 2021-04-06 14:36:48 +00:00
py-intervals use versioned py-pygemnts 2021-04-06 14:36:48 +00:00
py-jplephem (math/py-jplephem) import py38-jplephem-2.15 2020-12-19 14:23:00 +00:00
py-Keras-Applications math/py-Keras-Applications: Import version 1.0.8 2020-01-01 16:38:15 +00:00
py-Keras-Preprocessing math/py-Keras-Preprocessing: Import version 1.1.0 2020-01-01 16:31:21 +00:00
py-kiwisolver py-kiwisolver: updated to 1.3.1 2021-05-05 09:33:02 +00:00
py-libixion revbump for boost-libs 2021-04-21 13:24:06 +00:00
py-lmfit revert wrong fix for py-scipy python 3.6 deprecation, fix properly 2021-04-09 14:41:34 +00:00
py-mpmath py-mpmath: updated to 1.2.1 2021-05-12 08:32:16 +00:00
py-munkres all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-netCDF4 py-netCDF4: updated to 1.5.6 2021-05-07 18:31:59 +00:00
py-networkx py-networkx: updated to 2.5.1 2021-04-05 08:43:36 +00:00
py-noise
py-numarray Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-numba (math/py-numba) regen PLIST 2021-01-01 13:29:16 +00:00
py-Numeric Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-numexpr py-numexpr: updated to 2.7.3 2021-05-05 10:05:19 +00:00
py-numpy py-numpy: updated to 1.20.3 2021-05-12 08:12:10 +00:00
py-numpy16 math/py-numpy16: bring BLAS usage into line with math/py-numpy 2021-04-20 20:58:39 +00:00
py-pandas py-pandas: remove unneed patch 2021-05-06 04:39:45 +00:00
py-pandas-datareader propagate python incompatibilities 2021-04-09 15:42:35 +00:00
py-patsy math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-photutils (math/py-photutils) import py38-photutils-1.0.1 2020-12-19 14:56:04 +00:00
py-powerlaw revert wrong fix for py-scipy python 3.6 deprecation, fix properly 2021-04-09 14:41:34 +00:00
py-pyerfa (math/py-pyerfa) import py38-pyerfa-1.7.1.1 2020-12-19 14:26:57 +00:00
py-pymc3 revert wrong fix for py-scipy python 3.6 deprecation, fix properly 2021-04-09 14:41:34 +00:00
py-pyvo (math/py-pyvo) Fix typo py-astropy4 to py-astropy 2020-12-21 09:02:04 +00:00
py-pywavelets math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-quadprog py-quadprog: updated to 0.1.8 2020-12-06 10:46:49 +00:00
py-roman py-roman: updated to 3.3 2020-07-12 17:50:29 +00:00
py-rpy math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-Scientific revbump for boost-libs 2021-04-21 13:24:06 +00:00
py-Scientific-doc
py-scikit-image py-scikit-image: cascade py-tifffile Python incompatibilities 2021-03-05 04:16:57 +00:00
py-scikit-learn math/py-scikit-learn: drop explicit BLAS dependency 2021-04-20 21:48:14 +00:00
py-scipy py-scipy: updated to 1.6.3 2021-05-03 17:55:01 +00:00
py-simpleeval py-simpleeval: updated to 0.9.10 2020-01-03 12:17:37 +00:00
py-sklearn-pandas propagate python incompatibilities 2021-04-09 15:42:35 +00:00
py-smt Import PySMT-0.9.0 as math/py-smt. 2020-08-18 20:14:33 +00:00
py-statsmodels Update py-statsmodels to 0.12.2 2021-04-06 12:16:47 +00:00
py-sympy py-sympy: updated to 1.8 2021-05-12 08:42:42 +00:00
py-tables math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-tensorboard
py-Theano revert wrong fix for py-scipy python 3.6 deprecation, fix properly 2021-04-09 14:41:34 +00:00
py-uncertainties py-uncertainties: updated to 3.1.5 2020-11-26 10:57:23 +00:00
py-xarray py-xarray: updated to 0.18.0 2021-05-07 19:14:36 +00:00
py-z3 Drop Python 2.7 restriction that isn't active anyway. 2020-05-31 20:47:23 +00:00
py-z3solver py-z3solver: update to version 4.8.9.0 2020-09-18 05:00:48 +00:00
qalculate revbump for boost-libs 2021-04-21 13:24:06 +00:00
qalculate-gtk revbump for boost-libs 2021-04-21 13:24:06 +00:00
qhull qhull: fix library name on Darwin 2021-02-07 15:23:47 +00:00
quadpack
R revbump for boost-libs 2021-04-21 13:24:06 +00:00
R-abind Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-acepack Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-akima (math/R-akima) Updated 0.6.2 to 0.6.2.1, ChangeLog unknown 2021-01-03 11:23:32 +00:00
R-aplpack Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-backports (math/R-backports) Updated 1.1.4 to 1.2.1 2021-01-03 11:30:46 +00:00
R-bbmle Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-bitops Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-car Update to 3.0.10 2020-10-02 10:31:59 +00:00
R-carData Update to 3.0.4 2020-10-25 03:13:49 +00:00
R-CGIwithR revbump for boost-libs 2021-04-21 13:24:06 +00:00
R-chron (math/R-chron) Updated 2.3.53 to 2.3.56 2021-01-03 11:33:42 +00:00
R-circular Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-classInt (math/R-classInt) Updated 0.4.2 to 0.4.3, ChangeLog not updated (?) 2021-01-03 12:52:04 +00:00
R-clim.pact Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-coda Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-combinat R-combinat: set DIST_SUBDIR 2021-03-11 09:18:39 +00:00
R-compositions R-compositions: initial commit 2019-08-09 15:50:05 +00:00
R-DAAG (math/R-DAAG) Updated 1.22.1 to 1.24. 2020-09-20 21:58:36 +00:00
R-date Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-DBI Update to 1.1.1 2021-04-29 05:56:34 +00:00
R-DEoptimR R-DEoptimR: initial commit 2019-08-09 15:43:47 +00:00
R-dplyr R-dplyr: updated to 1.0.0. 2020-07-31 20:44:49 +00:00
R-e1071 Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-ellipsis (math/R-ellipsis) Updated 0.3.0 to 0.3.1 2020-10-03 13:45:51 +00:00
R-emdbook Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-energy R-energy: initial commit 2019-08-09 15:42:02 +00:00
R-estimability Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-FNN Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-forcats Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-forecast Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-Formula Update to 1.2.4 2020-10-25 03:19:22 +00:00
R-fracdiff Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-gdata *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
R-generics R-generics: initial import of v0.0.2. 2020-07-31 20:41:39 +00:00
R-genetics *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
R-geoR Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-goftest math/R-goftest: remove MASTER_SITES 2020-08-09 17:07:33 +00:00
R-GRASS Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-gss Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-gstat math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
R-gtable Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-gtools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-httpRequest Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-hwde Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-igraph revbump for textproc/icu 2021-04-21 11:40:12 +00:00
R-intervals Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-ISLR Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-ISwR (math/R-ISwR) Updated 2.0.7 to 2.0.8. NEWS.md not recorded 2020-09-20 22:55:50 +00:00
R-LearnBayes math/R-LearnBayes: remove MASTER_SITES 2020-08-09 17:05:12 +00:00
R-lme4 Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-lmm Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-lmtest Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-mapproj Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-maps Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-MatrixModels Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-minqa Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-mitools Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-mnormt math/R-mnormt: remove MASTER_SITES 2020-08-09 16:42:15 +00:00
R-moonsun Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-mvtnorm Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-ncdf revbump for boost-libs 2021-04-21 13:24:06 +00:00
R-nimble Add missing R-R6 dependency 2020-09-20 03:19:05 +00:00
R-nloptr math/R-nloptr: remove no-op SUBST block 2020-05-03 07:44:53 +00:00
R-nortest Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-numDeriv Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-pbkrtest Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-PHYLOGR (math/R-PHYLOGR) Updated 1.0.10 to 1.0.11. NEWS.md not recorded 2020-09-20 23:00:09 +00:00
R-pixmap Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-plyr R-plyr: update to 1.8.6. 2020-07-31 18:37:34 +00:00
R-poweRlaw Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-prettyunits Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-prob Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-psych math/R-psych: remove MASTER_SITES 2020-08-09 16:45:23 +00:00
R-quadprog Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-quantreg math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
R-R2HTML Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-RandomFields math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
R-RandomFieldsUtils Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-randomForest Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-RArcInfo Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-Rcmdr (math/R-Rcmdr) Updated 2.7.0 to 2.7.1 2021-01-02 11:22:48 +00:00
R-RcmdrMisc (math/R-RcmdrMisc) Updated 2.5.1 to 2.7.1, make test fails for now 2020-09-20 23:38:08 +00:00
R-RColorBrewer Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-RcppArmadillo Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-RcppEigen (math/R-RcppEigen) Updated 3.3.5.0 to 3.3.9.1 (make test fails for now) 2021-01-03 10:04:58 +00:00
R-relimp Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-reshape2 Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-RNetCDF revbump for boost-libs 2021-04-21 13:24:06 +00:00
R-robustbase R-robustbase: initial commit 2019-08-09 15:48:20 +00:00
R-RPostgreSQL Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-rstudioapi (math/R-rstudioapi) Updated 0.10 to 0.11 2020-09-20 14:50:51 +00:00
R-sandwich Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-sgeostat Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-shapefiles Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-sp math/R-sp: add a buildlink3.mk file for dependencies. 2020-08-07 00:08:36 +00:00
R-spacetime Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-SparseM (math/R-SparseM) Updated 1.77 to 1.78 (make test fails for now) 2021-01-03 10:49:31 +00:00
R-splancs Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-stabledist Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-statmod Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-stringdist (math/R-stringdist) import R-stringdist-0.9.5.5 2020-02-10 14:21:00 +00:00
R-survey Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-tensor math/R-tensor: remove MASTER_SITES 2020-08-09 17:08:55 +00:00
R-tensorA R-tensorA: initial commit 2019-08-09 15:46:29 +00:00
R-tibble Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-tidyr R-tidyr: update from 0.8.3 to 1.0.2. 2020-07-31 21:49:29 +00:00
R-units math/R-units: import R-units-0.6.5 2020-08-08 22:52:57 +00:00
R-urca Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-vctrs R-vctrs: update to 0.3.2. 2020-07-31 20:17:39 +00:00
R-VGAM Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-XML revbump for textproc/icu 2021-04-21 11:40:12 +00:00
R-xtable Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-xts Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-zeallot Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-zoo Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
randlib randlib: update to 1.3nb1. 2019-12-28 11:47:34 +00:00
ranger math: align variable assignments 2019-11-02 16:16:18 +00:00
ruby-gsl Mark these packages Ruby 3.0 incompatible 2021-02-14 15:09:29 +00:00
ruby-narray all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
ruby-roo math/ruby-roo: update to 2.8.3 2020-03-08 16:06:05 +00:00
ruby-spreadsheet math/ruby-spreadsheet: update to 1.2.8 2021-02-28 15:38:14 +00:00
sc sc: Update to version 7.16_1.1.2 2019-06-01 06:35:33 +00:00
sc-im revbump for boost-libs 2021-04-21 13:24:06 +00:00
scilab Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
slatec all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
snns math: align variable assignments 2019-11-02 16:16:18 +00:00
sollya revbump for textproc/icu 2021-04-21 11:40:12 +00:00
speedcrunch revbump for textproc/icu 2021-04-21 11:40:12 +00:00
stan-math all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
statist
sundials math: align variable assignments 2019-11-02 16:16:18 +00:00
superlu math/linpack, math/superlu: Convert to use new BLAS 2020-10-13 12:11:07 +00:00
svmlin all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tasp-vsipl Don't install PIC libs to avoid different PLISTs depending on the 2019-12-19 22:20:01 +00:00
teapot all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tex-apnum all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-apnum-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-fp all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-fp-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-kastrup tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
tex-kastrup-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:00:17 +00:00
tex-lualatex-math tex-lualatex-math{,-doc}: add version 1.9 2021-02-12 03:18:12 +00:00
tex-lualatex-math-doc tex-lualatex-math{,-doc}: add version 1.9 2021-02-12 03:18:12 +00:00
tex-mathpartir all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-mathpartir-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-mathspec tex-mathspec: dependency tex-ifxetex -> tex-iftex 2020-05-02 03:13:54 +00:00
tex-mathspec-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-minifp tex-minifp{,-doc}: Add version 0.96 2020-05-22 03:10:33 +00:00
tex-minifp-doc tex-minifp{,-doc}: Add version 0.96 2020-05-22 03:10:33 +00:00
tex-physics tex-physics{,-doc}: add version 1.3 2021-03-18 03:46:00 +00:00
tex-physics-doc tex-physics{,-doc}: add version 1.3 2021-03-18 03:46:00 +00:00
tex-unicode-math tex-unicode-math{,-doc}: update to 0.8q texlive 2020 version 2020-04-27 02:20:52 +00:00
tex-unicode-math-doc tex-unicode-math{,-doc}: update to 0.8q texlive 2020 version 2020-04-27 02:20:52 +00:00
texdrive all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
TinySVM
tochnog *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
udunits math/udunits: update to udunits2 v2.2.26. 2020-08-08 21:55:54 +00:00
units Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
vista
volk revbump for boost-libs 2021-04-21 13:24:06 +00:00
vowpal_wabbit revbump for boost-libs 2021-04-21 13:24:06 +00:00
wxmaxima revbump for textproc/icu 2021-04-21 11:40:12 +00:00
xeukleides10
xfractint *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
xgap *: remove dead download link 2021-04-24 00:16:04 +00:00
xldlas
xlife
xlispstat
xmgr *: remove dead download link 2021-04-25 06:43:48 +00:00
xyconvert revbump for textproc/icu 2021-04-21 11:40:12 +00:00
xylib Stop using boost/detail/endian.hpp 2020-05-09 15:19:02 +00:00
yacas *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
yices2 Reset maintainership for all (no longer) mine packages 2020-07-13 19:45:45 +00:00
yorick *: remove dead download location 2021-04-21 09:17:08 +00:00
z3 Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
Makefile math/fftwf: gone, merged into math/fftw 2021-04-29 23:31:41 +00:00