pkgsrc/math
wen 82d787ff3f Update to 4.1.0
Upstream changes:
CHANGES IN R 4.1.0:

  FUTURE DIRECTIONS:

    * It is planned that the 4.1.x series will be the last to support
      32-bit Windows, with production of binary packages for that
      series continuing until early 2023.

  SIGNIFICANT USER-VISIBLE CHANGES:

    * Data set esoph in package datasets now provides the correct
      numbers of controls; previously it had the numbers of cases added
      to these.  (Reported by Alexander Fowler in PR#17964.)

  NEW FEATURES:

    * www.omegahat.net is no longer one of the repositories known by
      default to setRepositories().  (Nowadays it only provides source
      packages and is often unavailable.)

    * Function package_dependencies() (in package tools) can now use
      different dependency types for direct and recursive dependencies.

    * The checking of the size of tarball in R CMD check --as-cran
      <pkg> may be tweaked via the new environment variable
      _R_CHECK_CRAN_INCOMING_TARBALL_THRESHOLD_, as suggested in
      PR#17777 by Jan Gorecki.

    * Using c() to combine a factor with other factors now gives a
      factor, an ordered factor when combining ordered factors with
      identical levels.

    * apply() gains a simplify argument to allow disabling of
      simplification of results.

    * The format() method for class "ftable" gets a new option justify.
      (Suggested by Thomas Soeiro.)

    * New ...names() utility.  (Proposed by Neal Fultz in PR#17705.)

    * type.convert() now warns when its as.is argument is not
      specified, as the help file always said it _should_.  In that
      case, the default is changed to TRUE in line with its change in
      read.table() (related to stringsAsFactor) in R 4.0.0.

    * When printing list arrays, classed objects are now shown _via_
      their format() value if this is a short enough character string,
      or by giving the first elements of their class vector and their
      length.

    * capabilities() gets new entry "Rprof" which is TRUE when R has
      been configured with the equivalent of --enable-R-profiling (as
      it is by default).  (Related to Michael Orlitzky's report
      PR#17836.)

    * str(xS4) now also shows extraneous attributes of an S4 object
      xS4.

    * Rudimentary support for vi-style tags in rtags() and R CMD rtags
      has been added.  (Based on a patch from Neal Fultz in PR#17214.)

    * checkRdContents() is now exported from tools; it and also
      checkDocFiles() have a new option chkInternal allowing to check
      Rd files marked with keyword "internal" as well.  The latter can
      be activated for R CMD check via environment variable
      _R_CHECK_RD_INTERNAL_TOO_.

    * New functions numToBits() and numToInts() extend the raw
      conversion utilities to (double precision) numeric.

    * Functions URLencode() and URLdecode() in package utils now work
      on vectors of URIs.  (Based on patch from Bob Rudis submitted
      with PR#17873.)

    * path.expand() can expand ~user on most Unix-alikes even when
      readline is not in use.  It tries harder to expand ~, for example
      should environment variable HOME be unset.

    * For HTML help (both dynamic and static), Rd file links to help
      pages in external packages are now treated as references to
      topics rather than file names, and fall back to a file link only
      if the topic is not found in the target package. The earlier rule
      which prioritized file names over topics can be restored by
      setting the environment variable _R_HELP_LINKS_TO_TOPICS_ to a
      false value.

    * c() now removes NULL arguments before dispatching to methods,
      thus simplifying the implementation of c() methods, _but_ for
      back compatibility keeps NULL when it is the first argument.
      (From a report and patch proposal by Lionel Henry in PR#17900.)

    * Vectorize()'s result function's environment no longer keeps
      unneeded objects.

    * Function ...elt() now propagates visibility consistently with
      ..n.  (Thanks to Lionel Henry's PR#17905.)

    * capture.output() no longer uses non-standard evaluation to
      evaluate its arguments.  This makes evaluation of functions like
      parent.frame() more consistent.  (Thanks to Lionel Henry's
      PR#17907.)

    * packBits(bits, type="double") now works as inverse of
      numToBits().  (Thanks to Bill Dunlap's proposal in PR#17914.)

    * curlGetHeaders() has two new arguments, timeout to specify the
      timeout for that call (overriding getOption("timeout")) and TLS
      to specify the minimum TLS protocol version to be used for
      https:// URIs (_inter alia_ providing a means to check for sites
      using deprecated TLS versions 1.0 and 1.1).

    * For nls(), an optional constant scaleOffset may be added to the
      denominator of the relative offset convergence test for cases
      where the fit of a model is expected to be exact, thanks to a
      proposal by John Nash.  nls(*, trace=TRUE) now also shows the
      convergence criterion.

    * Numeric differentiation _via_ numericDeriv() gets new optional
      arguments eps and central, the latter for taking central divided
      differences.  The latter can be activated for nls() via
      nls.control(nDcentral = TRUE).

    * nls() now passes the trace and control arguments to getInitial(),
      notably for all self-starting models, so these can also be fit in
      zero-noise situations via a scaleOffset.  For this reason, the
      initial function of a selfStart model must now have ... in its
      argument list.

    * bquote(splice = TRUE) can now splice expression vectors with
      attributes: this makes it possible to splice the result of
      parse(keep.source = TRUE).  (Report and patch provided by Lionel
      Henry in PR#17869.)

    * textConnection() gets an optional name argument.

    * get(), exists(), and get0() now signal an error if the first
      argument has length greater than 1.  Previously additional
      elements were silently ignored.  (Suggested by Antoine Fabri on
      R-devel.)

    * R now provides a shorthand notation for creating functions, e.g.
      \(x) x + 1 is parsed as function(x) x + 1.

    * R now provides a simple native forward pipe syntax |>.  The
      simple form of the forward pipe inserts the left-hand side as the
      first argument in the right-hand side call.  The pipe
      implementation as a syntax transformation was motivated by
      suggestions from Jim Hester and Lionel Henry.

    * all.equal(f, g) for functions now by default also compares their
      environment(.)s, notably via new all.equal method for class
      function.  Comparison of nls() fits, e.g., may now need
      all.equal(m1, m2, check.environment = FALSE).

    * .libPaths() gets a new option include.site, allowing to _not_
      include the site library.  (Thanks to Dario Strbenac's suggestion
      and Gabe Becker's PR#18016.)

    * Lithuanian translations are now available.  (Thanks to Rimantas
      Zakauskas.)

    * names() now works for DOTSXP objects.  On the other hand, in
      R-lang, the R language manual, we now warn against relying on the
      structure or even existence of such dot-dot-dot objects.

    * all.equal() no longer gives an error on DOTSXP objects.

    * capabilities("cairo") now applies only to the file-based devices
      as it is now possible (if very unusual) to build R with Cairo
      support for those but not for X11().

    * There is optional support for tracing the progress of
      loadNamespace() - see its help.

    * (Not Windows.)  l10n_info() reports an additional element, the
      name of the encoding as reported by the OS (which may differ from
      the encoding part (if any) of the result from
      Sys.getlocale("LC_CTYPE").

    * New function gregexec() which generalizes regexec() to find _all_
      disjoint matches and well as all substrings corresponding to
      parenthesized subexpressions of the given regular expression.
      (Contributed by Brodie Gaslam.)

    * New function charClass() in package utils to query the
      wide-character classification functions in use (such as
      iswprint).

    * The names of quantile()'s result no longer depend on the global
      getOption("digits"), but quantile() gets a new optional argument
      digits = 7 instead.

    * grep(), sub(), regexp and variants work considerably faster for
      long factors with few levels.  (Thanks to Michael Chirico's
      PR#18063.)

    * Provide grouping of x11() graphics windows within a window
      manager such as Gnome or Unity; thanks to a patch by Ivan Krylov
      posted to R-devel.

    * The split() method for class data.frame now allows the f argument
      to be specified as a formula.

    * sprintf now warns on arguments unused by the format string.

    * New palettes "Rocket" and "Mako" for hcl.colors() (approximating
      palettes of the same name from the 'viridisLite' package).

      Contributed by Achim Zeileis.

    * The base environment and its namespace are now locked (so one can
      no longer add bindings to these or remove from these).

    * Rterm handling of multi-byte characters has been improved,
      allowing use of such characters when supported by the current
      locale.

    * Rterm now accepts ALT+ +xxxxxxxx sequences to enter Unicode
      characters as hex digits.

    * Environment variable LC_ALL on Windows now takes precedence over
      LC_CTYPE and variables for other supported categories, matching
      the POSIX behaviour.

    * duplicated() and anyDuplicated() are now optimized for integer
      and real vectors that are known to be sorted via the ALTREP
      framework. Contributed by Gabriel Becker via PR#17993.

  GRAPHICS:

    * The graphics engine version, R_GE_version, has been bumped to 14
      and so packages that provide graphics devices should be
      reinstalled.

    * Graphics devices should now specify deviceVersion to indicate
      what version of the graphics engine they support.

    * Graphics devices can now specify deviceClip.  If TRUE, the
      graphics engine will never perform any clipping of output itself.

      The clipping that the graphics engine does perform (for both
      canClip = TRUE and canClip = FALSE) has been improved to avoid
      producing unnecessary artifacts in clipped output.

    * The grid package now allows gpar(fill) to be a linearGradient(),
      a radialGradient(), or a pattern().  The viewport(clip) can now
      also be a grob, which defines a clipping path, and there is a new
      viewport(mask) that can also be a grob, which defines a mask.

      These new features are only supported so far on the Cairo-based
      graphics devices and on the pdf() device.

    * (Not Windows.)  A warning is given when a Cairo-based type is
      specified for a png(), jpeg(), tiff() or bmp() device but Cairo
      is unsupported (so type = "Xlib" is tried instead).

    * grSoftVersion() now reports the versions of FreeType and
      FontConfig if they are used directly (not _via_ Pango), as is
      most commonly done on macOS.

  C-LEVEL FACILITIES:

    * The _standalone_ libRmath math library and R's C API now provide
      log1pexp() again as documented, and gain log1mexp().

  INSTALLATION on a UNIX-ALIKE:

    * configure checks for a program pkgconf if program pkg-config is
      not found.  These are now only looked for on the path (like
      almost all other programs) so if needed specify a full path to
      the command in PKG_CONFIG, for example in file config.site.

    * C99 function iswblank is required - it was last seen missing ca
      2003 so the workaround has been removed.

    * There are new configure options --with-internal-iswxxxxx,
      --with-internal-towlower and --with-internal-wcwidth which allows
      the system functions for wide-character classification,
      case-switching and width (wcwidth and wcswidth) to be replaced by
      internal ones.  The first has long been used on macOS, AIX (and
      Windows) but this enables it to be unselected there and selected
      for other platforms (it is the new default on Solaris).  The
      second is new in this version of R and is selected by default on
      macOS and Solaris.  The third has long been the default and
      remains so as it contains customizations for East Asian
      languages.

      System versions of these functions are often minimally
      implemented (sometimes only for ASCII characters) and may not
      cover the full range of Unicode points: for example Solaris (and
      Windows) only cover the Basic Multilingual Plane.

    * Cairo installations without X11 are more likely to be detected by
      configure, when the file-based Cairo graphics devices will be
      available but not X11(type = "cairo").

    * There is a new configure option --with-static-cairo which is the
      default on macOS.  This should be used when only static cairo
      (and where relevant, Pango) libraries are available.

    * Cairo-based graphics devices on platforms without Pango but with
      FreeType/FontConfig will make use of the latter for font
      selection.

  LINK-TIME OPTIMIZATION on a UNIX-ALIKE:

    * Configuring with flag --enable-lto=R now also uses LTO when
      installing the recommended packages.

    * R CMD INSTALL and R CMD SHLIB have a new flag --use-LTO to use
      LTO when compiling code, for use with R configured with
      --enable-lto=R.  For R configured with --enable-lto, they have
      the new flag --no-use-LTO.

      Packages can opt in or out of LTO compilation _via_ a UseLTO
      field in the DESCRIPTION file.  (As usual this can be overridden
      by the command-line flags.)

  BUILDING R on Windows:

    * for GCC >= 8, FC_LEN_T is defined in config.h and hence character
      lengths are passed from C to Fortran in _inter alia_ BLAS and
      LAPACK calls.

    * There is a new text file src/gnuwin32/README.compilation, which
      outlines how C/Fortran code compilation is organized and
      documents new features:

        * R can be built with Link-Time Optimization with a suitable
          compiler - doing so with GCC 9.2 showed several
          inconsistencies which have been corrected.

        * There is support for cross-compiling the C and Fortran code
          in R and standard packages on suitable (Linux) platforms.
          This is mainly intended to allow developers to test later
          versions of compilers - for example using GCC 9.2 or 10.x has
          detected issues that GCC 8.3 in Rtools40 does not.

        * There is experimental support for cross-building R packages
          with C, C++ and/or Fortran code.

    * The R installer can now be optionally built to support a single
      architecture (only 64-bit or only 32-bit).

  PACKAGE INSTALLATION:

    * The default C++ standard has been changed to C++14 where
      available (which it is on all currently checked platforms): if
      not (as before) C++11 is used if available otherwise C++ is not
      supported.

      Packages which specify C++11 will still be installed using C++11.

      C++14 compilers may give deprecation warnings, most often for
      std::random_shuffle (deprecated in C++14 and removed in C++17).
      Either specify C++11 (see 'Writing R Extensions') or modernize
      the code and if needed specify C++14.  The latter has been
      supported since R 3.4.0 so the package's DESCRIPTION would need
      to include something like

           Depends: R (>= 3.4)

  PACKAGE INSTALLATION on Windows:

    * R CMD INSTALL and R CMD SHLIB make use of their flag --use-LTO
      when the LTO_OPT make macro is set in file etc/${R_ARCH}/Makeconf
      or in a personal/site Makevars file.  (For details see 'Writing R
      Extensions' SS4.5.)

      This provides a valuable check on code consistency.  It does work
      with GCC 8.3 as in Rtools40, but that does not detect everything
      the CRAN checks with current GCC do.

  PACKAGE INSTALLATION on macOS:

    * The default personal library directory on builds with
      --enable-aqua (including CRAN builds) now differs by CPU type,
      one of

            ~/Library/R/x86_64/x.y/library
            ~/Library/R/arm64/x.y/library

      This uses the CPU type R (and hence the packages) were built for,
      so when a x86_64 build of R is run under Rosetta emulation on an
      arm64 Mac, the first is used.

  UTILITIES:

    * R CMD check can now scan package functions for bogus return
      statements, which were possibly intended as return() calls (wish
      of PR#17180, patch by Sebastian Meyer). This check can be
      activated via the new environment variable
      _R_CHECK_BOGUS_RETURN_, true for --as-cran.

    * R CMD build omits tarballs and binaries of previous builds from
      the top-level package directory.  (PR#17828, patch by Sebastian
      Meyer.)

    * R CMD check now runs sanity checks on the use of LazyData, for
      example that a data directory is present and that
      LazyDataCompression is not specified without LazyData and has a
      documented value.  For packages with large LazyData databases
      without specifying LazyDataCompression, there is a reference to
      the code given in 'Writing R Extensions' SS1.1.6 to test the
      choice of compression (as in all the CRAN packages tested a
      non-default method was preferred).

    * R CMD build removes LazyData and LazyDataCompression fields from
      the DESCRIPTION file of packages without a data directory.

  ENCODING-RELATED CHANGES:

    * The parser now treats \Unnnnnnnn escapes larger than the upper
      limit for Unicode points (\U10FFFF) as an error as they cannot be
      represented by valid UTF-8.

      Where such escapes are used for outputting non-printable
      (including unassigned) characters, 6 hex digits are used (rather
      than 8 with leading zeros).  For clarity, braces are used, for
      example \U{0effff}.

    * The parser now looks for non-ASCII spaces on Solaris (as
      previously on most other OSes).

    * There are warnings (including from the parser) on the use of
      unpaired surrogate Unicode points such as \uD834.  (These cannot
      be converted to valid UTF-8.)

    * Functions nchar(), tolower(), toupper() and chartr() and those
      using regular expressions have more support for inputs with a
      marked Latin-1 encoding.

    * The character-classification functions used (by default) to
      replace the system iswxxxxx functions on Windows, macOS and AIX
      have been updated to Unicode 13.0.0.

      The character-width tables have been updated to include new
      assignments in Unicode 13.0.0.

    * The code for evaluating default (extended) regular expressions
      now uses the same character-classification functions as the rest
      of R (previously they differed on Windows, macOS and AIX).

    * There is a build-time option to replace the system's
      wide-character wctrans C function by tables shipped with R: use
      configure option --with-internal-towlower or (on Windows)
      -DUSE_RI18N_CASE in CFLAGS when building R.  This may be needed
      to allow tolower() and toupper() to work with Unicode characters
      beyond the Basic Multilingual Plane where not supported by system
      functions (e.g. on Solaris where it is the new default).

    * R is more careful when truncating UTF-8 and other multi-byte
      strings that are too long to be printed, passed to the system or
      libraries or placed into an internal buffer.  Truncation will no
      longer produce incomplete multibyte characters.

  DEPRECATED AND DEFUNCT:

    * Function plclust() from the package stats and
      package.dependencies(), pkgDepends(), getDepList(),
      installFoundDepends(), and vignetteDepends() from package tools
      are defunct.

    * Defunct functions checkNEWS() and readNEWS() from package tools
      and CRAN.packages() from utils have been removed.

    * R CMD config CXXCPP is defunct (it was deprecated in R 3.6.2).

    * parallel::detectCores() drops support for Irix (retired in 2013).

    * The LINPACK argument to chol.default(), chol2inv(),
      solve.default() and svd() has been defunct since R 3.1.0.  It was
      silently ignored up to R 4.0.3 but now gives an error.

    * Subsetting/indexing, such as ddd[*] or ddd$x on a DOTSXP
      (dot-dot-dot) object ddd has been disabled; it worked by accident
      only and was undocumented.

  BUG FIXES:

    * Many more C-level allocations (mainly by malloc and strdup) are
      checked for success with suitable alternative actions.

    * Bug fix for replayPlot(); this was turning off graphics engine
      display list recording if a recorded plot was replayed in the
      same session.  The impact of the bug became visible if resize the
      device after replay OR if attempted another savePlot() after
      replay (empty display list means empty screen on resize or empty
      saved plot).

    * R CMD check etc now warn when a package exports non-existing S4
      classes or methods, also in case of no "methods" presence.
      (Reported by Alex Bertram; reproducible example and patch by
      Sebastian Meyer in PR#16662.)

    * boxplot() now also accepts calls for labels such as ylab, the
      same as plot().  (Reported by Marius Hofert.)

    * The help page for xtabs() now correctly states that addNA is
      setting na.action = na.pass among others.  (Reported as PR#17770
      by Thomas Soeiro.)

    * The R CMD check <pkg> gives a longer and more comprehensible
      message when DESCRIPTION misses dependencies, e.g., in Imports:.
      (Thanks to the contributors of PR#17179.)

    * update.default() now calls the generic update() on the formula to
      work correctly for models with extended formulas.  (As reported
      and suggested by Neal Fultz in PR#17865.)

    * The horizontal position of leaves in a dendrogram is now correct
      also with center = FALSE.  (PR#14938, patch from Sebastian
      Meyer.)

    * all.equal.POSIXt() no longer warns about and subsequently ignores
      inconsistent "tzone" attributes, but describes the difference in
      its return value (PR#17277).  This check can be disabled _via_
      the new argument check.tzone = FALSE as suggested by Sebastian
      Meyer.

    * as.POSIXct() now populates the "tzone" attribute from its tz
      argument when x is a logical vector consisting entirely of NA
      values.

    * x[[2^31]] <- v now works.  (Thanks to the report and patch by
      Suharto Anggono in PR#17330.)

    * In log-scale graphics, axis() ticks and label positions are now
      computed more carefully and symmetrically in their range,
      typically providing _more_ ticks, fulfilling wishes in PR#17936.
      The change really corresponds to an improved axisTicks() (package
      grDevices), potentially influencing grid and lattice, for
      example.

    * qnorm(<very large negative>, log.p=TRUE) is now correct to at
      least five digits where it was catastrophically wrong,
      previously.

    * sum(df) and similar "Summary"- and "Math"-group member functions
      now work for data frames df with logical columns, notably also of
      zero rows.  (Reported to R-devel by Martin "b706".)

    * unsplit() had trouble with tibbles due to unsound use of rep(NA,
      len)-indexing, which should use NA_integer_ (Reported to R-devel
      by Mario Annau.)

    * pnorm(x, log.p = TRUE) underflows to -Inf slightly later.

    * show(<hidden S4 generic>) prints better and without quotes for
      non-hidden S4 generics.

    * read.table() and relatives treated an "NA" column name as missing
      when check.names = FALSE PR#18007.

    * Parsing strings containing UTF-16 surrogate pairs such as
      "\uD834\uDD1E" works better on some (uncommon) platforms.
      sprintf("%X", utf8ToInt("\uD834\uDD1E")) should now give "1D11E"
      on all platforms.

    * identical(x,y) is no longer true for differing DOTSXP objects,
      fixing PR#18032.

    * str() now works correctly for DOTSXP and related exotics, even
      when these are doomed.

      Additionally, it no longer fails for lists with a class and
      "irregular" method definitions such that e.g. lapply(*) will
      necessarily fail, as currently for different igraph objects.

    * Too long lines in environment files (e.g. Renviron) no longer
      crash R. This limit has been increased to 100,000 bytes.
      (PR#18001.)

    * There is a further workaround for FreeType giving incorrect
      italic font faces with cairo-based graphics devices on macOS.

    * add_datalist(*, force = TRUE) (from package tools) now actually
      updates an existing data/datalist file for new content.  (Thanks
      to a report and patch by Sebastian Meyer in PR#18048.)

    * cut.Date() and cut.POSIXt() could produce an empty last interval
      for breaks = "months" or breaks = "years".  (Reported as PR#18053
      by Christopher Carbone.)

    * Detection of the encoding of 'regular' macOS locales such as
      en_US (which is UTF-8) had been broken by a macOS change:
      fortunately these are now rarely used with en_US.UTF-8 being
      preferred.

    * sub() and gsub(pattern, repl, x, *) now keep attributes of x such
      as names() also when pattern is NA (PR#18079).

    * Time differences ("difftime" objects) get a replacement and a
      rep() method to keep "units" consistent.  (Thanks to a report and
      patch by Nicolas Bennett in PR#18066.)

    * The \RdOpts macro, setting defaults for \Sexpr options in an Rd
      file, had been ineffective since R 2.12.0: it now works again.
      (Thanks to a report and patch by Sebastian Meyer in PR#18073.)

    * mclapply and pvec no longer accidentally terminate parallel
      processes started before by mcparallel or related calls in
      package parallel (PR#18078).

    * grep and other functions for evaluating (extended) regular
      expressions handle in Unicode also strings not explicitly flagged
      UTF-8, but flagged native when running in UTF-8 locale.

    * Fixed a crash in fifo implementation on Windows (PR#18031).

    * Binary mode in fifo on Windows is now properly detected from
      argument open (PR#15600, PR#18031).
2021-06-13 13:10:46 +00:00
..
aamath
abs
admesh
algae
amath
analitza revbump for textproc/icu 2021-04-21 11:40:12 +00:00
antixls *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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/lapack, blas, cblas, lapacke: update to version 3.9.1 2021-05-12 14:32:51 +00:00
blitz++ math: align variable assignments 2019-11-02 16:16:18 +00:00
boolstuff *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
calc
calcoo *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
cantor *: bump PKGREVISION for poppler shlib bump 2021-06-10 11:06:19 +00:00
capc-calc
cblas math/lapack, math/cblas, math/lapacke: Remove premature cmake files from install 2021-06-10 00:18:52 +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 *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +00:00
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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
eukleides eukleides: honor environment flags 2021-05-14 13:35:47 +00:00
eukleides10
euler *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
fftpack
ffts
fftw fftw: bump for default options change 2021-06-12 07:30:47 +00:00
fftw-long split fftw package into -long and -quad precision variants 2021-05-16 10:14:09 +00:00
fftw-quad split fftw package into -long and -quad precision variants 2021-05-16 10:14:09 +00:00
fftw2 fftw2: Note in DESCR that this is egregiously old 2021-05-22 16:57:56 +00:00
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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
go-units Revbump all Go packages after go116 update 2021-06-06 12:18:40 +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 *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +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
kalker math/kalker: fix comment 2021-06-03 11:08:51 +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 math/lapack, math/cblas, math/lapacke: Remove premature cmake files from install 2021-06-10 00:18:52 +00:00
lapacke math/lapack, math/cblas, math/lapacke: Remove premature cmake files from install 2021-06-10 00:18:52 +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
libquadmath libquadmath: mark only for x86 2021-05-20 06:12:53 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
mcsim *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ocaml-num Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-zarith *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
octave octave: udpate to 6.2.0 2021-05-31 07:16:51 +00:00
odepack
openaxiom Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
openblas openblas: fix building on Darwin 2021-06-07 15:52:17 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Cluster *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Munkres *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Alien-GMP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Excel-Template *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Excel-Template-Plus *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Base-Convert *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Base36 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Base85 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-BaseCnv *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Bezier *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-BigInt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-BigInt-GMP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-BigInt-Pari *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-BigInteger *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Calc-Units *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Derivative *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-FFT *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-GMP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Int64 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Int128 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Matrix *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-MatrixReal *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Pari *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Permute-List *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Prime-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Random *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Random-ISAAC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Random-ISAAC-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Random-MT *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Random-MT-Auto *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Random-MT-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Round *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Spline *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-Utils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Math-VecStat *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Number-Compare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Number-Latin *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Number-Range *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Number-Tolerant *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Number-WithError *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Roman *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Set-Crontab *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Set-Infinite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spreadsheet-ParseExcel *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spreadsheet-Read *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spreadsheet-ReadSXC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spreadsheet-WriteExcel *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spreadsheet-XLSX *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Statistics-Basic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Statistics-CaseResampling *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Statistics-Descriptive *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Statistics-Distributions *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Statistics-TTest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Number-Delta *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pari *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pari-galdata all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
pari23 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
prng
pspp *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +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.7833 2021-06-02 23:27:10 +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 py-fftw: fix PLIST 2021-05-20 06:12:14 +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 py-Keras-Applications: mark as incompatible with Python < 3.7 2021-06-07 11:59:20 +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 ineffective SKLEARN_NO_OPENMP 2021-05-31 07:03:31 +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.2 2021-05-20 12:58:13 +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
qrupdate math/qrupdate: mark phony targets phony (want to upstream patches) 2021-05-29 16:04:11 +00:00
quadpack
R Update to 4.1.0 2021-06-13 13:10:46 +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) Add compiler.mk buildlink 2021-06-06 11:31:17 +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 (math/R-dplyr) Updated 1.0.0 to 1.0.6 2021-06-12 22:36:14 +00:00
R-e1071 Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-ellipsis (math/R-ellipsis) LICENSE= mit 2021-06-05 06:27:32 +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 (math/R-forcats) Updated 0.4.0 to 0.5.1 2021-06-06 13:45:50 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
R-generics (math/R-generics) Updated 0.0.2 to 0.1.0 2021-06-05 15:14:01 +00:00
R-genetics *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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 (math/R-mapproj) Updated 1.2.6 to 1.2.7, NEWS.md unknown 2021-06-06 07:22:40 +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 (math/R-prettyunits) Updated 1.0.2 to 1.1.1 2021-06-05 06:11:08 +00:00
R-prob Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-proxy math/R-proxy: import R-proxy-0.4.25 2021-06-06 08:07:17 +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 (math/R-reshape2) Updated 1.4.3 to 1.4.4 2021-06-06 06:38:29 +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 Update to 1.4.5 2021-06-13 12:46:04 +00:00
R-spacetime Update to 1.2.4 2021-06-13 13:04:37 +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 (math/R-tibble) Update DEPEDNDS version for R-pillar 2021-06-06 23:39:26 +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) Updated 0.6.5 to 0.7.1 2021-06-06 11:52:55 +00:00
R-urca Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-vctrs (math/R-vctrs) Updated 0.3.2 to 0.3.8 2021-05-30 13:18:59 +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 (math/R-xts) Updated 0.11.2 to 0.12.1 2021-06-06 15:12:59 +00:00
R-zeallot Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-zoo (math/R-zoo) Updated 1.8.6 to 1.8.9 2021-06-06 15:08:56 +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 *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +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.9 2021-05-30 09:33:10 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +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 *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +00:00
yices2 Reset maintainership for all (no longer) mine packages 2020-07-13 19:45:45 +00:00
yorick yorick: set LICENSE 2021-05-15 06:53:50 +00:00
z3 Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
Makefile p5-Math-Interpolate: remove 2021-06-07 14:11:55 +00:00