pkgsrc/math
wiz 2ffb6fd671 Update py-networkx to 1.10, based on PR 50383 by Derouiche.
API changes

    [#1501] connected_components, weakly_connected_components, and strongly_connected_components return now a generator of sets of nodes. Previously the generator was of lists of nodes. This PR also refactored the connected_components and weakly_connected_components implementations making them faster, especially for large graphs.
    [#1547] The func_iter functions in Di/Multi/Graphs classes are slated for removal in NetworkX 2.0 release. func will behave like func_iter and return an iterator instead of list. These functions are deprecated in NetworkX 1.10 release.

New functionalities

    [#823] A enumerate_all_cliques function is added in the clique package (networkx.algorithms.clique) for enumerating all cliques (including nonmaximal ones) of undirected graphs.
    [#1105] A coloring package (networkx.algorithms.coloring) is created for graph coloring algorithms. Initially, a greedy_color function is provided for coloring graphs using various greedy heuristics.
    [#1193] A new generator edge_dfs, added to networkx.algorithms.traversal, implements a depth-first traversal of the edges in a graph. This complements functionality provided by a depth-first traversal of the nodes in a graph. For multigraphs, it allows the user to know precisely which edges were followed in a traversal. All NetworkX graph types are supported. A traversal can also reverse edge orientations or ignore them.
    [#1194] A find_cycle function is added to the networkx.algorithms.cycles package to find a cycle in a graph. Edge orientations can be optionally reversed or ignored.
    [#1210] Add a random generator for the duplication-divergence model.
    [#1241] A new networkx.algorithms.dominance package is added for dominance/dominator algorithms on directed graphs. It contains a immediate_dominators function for computing immediate dominators/dominator trees and a dominance_frontiers function for computing dominance frontiers.
    [#1269] The GML reader/parser and writer/generator are rewritten to remove the dependence on pyparsing and enable handling of arbitrary graph data.
    [#1280] The network simplex method in the networkx.algorithms.flow package is rewritten to improve its performance and support multi- and disconnected networks. For some cases, the new implementation is two or three orders of magnitude faster than the old implementation.
    [#1286] Added the Margulis–Gabber–Galil graph to networkx.generators.
    [#1306] Added the chordal p-cycle graph, a mildly explicit algebraic construction of a family of 3-regular expander graphs. Also, moves both the existing expander graph generator function (for the Margulis-Gabber-Galil expander) and the new chordal cycle graph function to a new module, networkx.generators.expanders.
    [#1314] Allow overwriting of base class dict with dict-like: OrderedGraph, ThinGraph, LogGraph, etc.
    [#1321] Added to_pandas_dataframe and from_pandas_dataframe.
    [#1322] Added the Hopcroft–Karp algorithm for finding a maximum cardinality matching in bipartite graphs.
    [#1336] Expanded data keyword in G.edges and added default keyword.
    [#1338] Added support for finding optimum branchings and arborescences.
    [#1340] Added a from_pandas_dataframe function that accepts Pandas DataFrames and returns a new graph object. At a minimum, the DataFrame must have two columns, which define the nodes that make up an edge. However, the function can also process an arbitrary number of additional columns as edge attributes, such as ‘weight’.
    [#1354] Expanded layout functions to add flexibility for drawing subsets of nodes with distinct layouts and for centering each layout around given coordinates.
    [#1356] Added ordered variants of default graph class.
    [#1360] Added harmonic centrality to network.algorithms.centrality.
    [#1390] The generators.bipartite have been moved to algorithms.bipartite.generators. The functions are not imported in the main namespace, so to use it, the bipartite package has to be imported.
    [#1391] Added Kanevsky’s algorithm for finding all minimum-size separating node sets in an undirected graph. It is implemented as a generator of node cut sets.
    [#1399] Added power function for simple graphs
    [#1405] Added fast approximation for node connectivity based on White and Newman’s approximation algorithm for finding node independent paths between two nodes.
    [#1413] Added transitive closure and antichains function for directed acyclic graphs in algorithms.dag. The antichains function was contributed by Peter Jipsen and Franco Saliola and originally developed for the SAGE project.
    [#1425] Added generator function for the complete multipartite graph.
    [#1427] Added nonisomorphic trees generator.
    [#1436] Added a generator function for circulant graphs to the networkx.generators.classic module.
    [#1437] Added function for computing quotient graphs; also created a new module, networkx.algorithms.minors.
    [#1438] Added longest_path and longest_path_length for DAG.
    [#1439] Added node and edge contraction functions to networkx.algorithms.minors.
    [#1445] Added a new modularity matrix module to networkx.linalg, and associated spectrum functions to the networkx.linalg.spectrum module.
    [#1447] Added function to generate all simple paths starting with the shortest ones based on Yen’s algorithm for finding k shortest paths at algorithms.simple_paths.
    [#1455] Added the directed modularity matrix to the networkx.linalg.modularity_matrix module.
    [#1474] Adds triadic_census function; also creates a new module, networkx.algorithms.triads.
    [#1476] Adds functions for testing if a graph has weighted or negatively weighted edges. Also adds a function for testing if a graph is empty. These are is_weighted, is_negatively_weighted, and is_empty.
    [#1481] Added Johnson’s algorithm; one more algorithm for shortest paths. It solves all pairs shortest path problem. This is johnson at algorithms.shortest_paths
    [#1414] Added Moody and White algorithm for identifying k_components in a graph, which is based on Kanevsky’s algorithm for finding all minimum-size node cut-sets (implemented in all_node_cuts #1391).
    [#1415] Added fast approximation for k_components to the networkx.approximation package. This is based on White and Newman approximation algorithm for finding node independent paths between two nodes (see #1405).

Removed functionalities

    [#1236] The legacy ford_fulkerson maximum flow function is removed. Use edmonds_karp instead.

Miscellaneous changes

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