summaryrefslogtreecommitdiff
path: root/graphics/py-matplotlib
AgeCommit message (Collapse)AuthorFilesLines
2014-02-06Add missning dependency on py-pyparsing.obache1-1/+3
Noticed by Kamel Derouiche via PR 48577. Bump PKGREVISION.
2014-01-23Removed unused patchwiz1-32/+0
2014-01-21avoid a hidden dependency on py-gtk2 which makes that an additionaldrochner2-1/+25
file gets installed
2014-01-20Update to 1.3.1:wiz3-57/+268
2013-05-18 Added support for arbitrary rasterization resolutions to the SVG backend. Previously the resolution was hard coded to 72 dpi. Now the backend class takes a image_dpi argument for its constructor, adjusts the image bounding box accordingly and forwards a magnification factor to the image renderer. The code and results now resemble those of the PDF backend. - MW 2013-05-08 Changed behavior of hist when given stacked=True and normed=True. Histograms are now stacked first, then the sum is normalized. Previously, each histogram was normalized, then they were stacked. 2013-04-25 Changed all instances of: from matplotlib import MatplotlibDeprecationWarning as mplDeprecation to: from cbook import mplDeprecation and removed the import into the matplotlib namespace in __init__.py Thomas Caswell 2013-04-15 Added 'axes.xmargin' and 'axes.ymargin' to rpParams to set default margins on auto-scaleing. - TAC 2013-04-16 Added patheffect support for Line2D objects. -JJL
2014-01-16Convert to use versioned_dependencies.mk.wiz1-4/+4
2013-07-24update to 1.2.1drochner4-13/+58
changes: cleanup, bugfixes
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron1-2/+2
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz1-2/+2
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-04-06'Please use ${ECHO} instead of "echo".'rodent1-8/+8
'Please use ${ECHO_N} instead of "echo -n".'
2013-02-16Recursive bump for png-1.6.wiz1-1/+2
2012-12-17update to 1.2drochner3-13/+204
changes: feature extensions, new plot types etc.
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-07-02Update to 1.1.1:prlw14-23/+22
- When path clipping changes a LINETO to a MOVETO, it also changes any CLOSEPOLY command to a LINETO to the initial point. This fixes a problem with pdf and svg where the CLOSEPOLY would then draw a line to the latest MOVETO position instead of the intended initial position. - JKS - The radius labels in polar plots no longer use a fixed padding, but use a different alignment depending on the quadrant they are in. This fixes numerical problems when (rmax - rmin) gets too small. - MGD
2012-05-05Replace python interpreter in a few files. Bump PKGREVISION.wiz1-1/+10
2012-04-17update to 1.1.0drochner5-118/+960
many improvements, some cleanup, most notably: -new graphics types and backends -layout and legend improvements -better 3d support -Numerix support removed
2012-04-07Workaround hangs with Python 2.5 by not using pipes for both stdin andjoerg2-4/+19
stdout.
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-1/+2
2011-09-08Fix compilation with clang by removing const-violating accessor.joerg2-1/+16
2011-02-17Update to py-matplotlib 1.0.1markd5-115/+445
Various bugfixes.
2011-02-06Fix build with png 1.5markd2-3/+69
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz3-2/+17
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-06-10Make pkglint more happy.wiz1-4/+4
2010-05-17update to 0.99.2.1drochner4-55/+89
changes: -new frameworks: mplot3d, axes grid, axis spine placement -bugfixes
2009-09-23Remove "PYTHON_VERSIONS_ACCEPTED= 26 25 24" which is unnecessarytron1-2/+1
after Python 2.3 has been removed from "pkgsrc". Approved by Thomas Klausner.
2009-08-05Update py-matplotlib* to 0.98.4markd4-295/+44
various bug fixes and new features.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-27/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2009-03-20Include pyversion.mk include the protected part of the buildlink3.mkjoerg1-3/+3
files, not over and over again.
2009-01-05Fix patch-aa to setup.py: incdirs and libdirs are lists of strings, notepg2-5/+5
just strings.
2008-12-19Update to matplotlib-0.98.0markd6-391/+592
3 years worth of updates.
2008-11-11Fix compilation.joerg2-1/+29
2008-06-12Add DESTDIR support.joerg1-1/+3
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg1-3/+1
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2008-04-18PYTHON_VERSIONS_ACCEPTED must be set before including pyversion.mk.joerg1-3/+3
2008-04-12Convert to use PLIST_VARS instead of manually passing "@comment "jlam2-10/+9
through PLIST_SUBST to the plist module.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-06-08Needs Python 2.3+joerg1-2/+2
2006-05-27py-numarray dependency support only Python 2.2 and newer.joerg1-4/+4
2006-05-11Uses C++.joerg1-1/+2
2006-04-30subprocess is only installed on Python <= 2.3. Conditionalize PLISTjoerg2-8/+17
accordingly. Bump revision.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-12Include subprocess package files in PLIST. Bump revision.joerg2-3/+8
2006-04-06update to 0.87.2drochner6-1995/+206
too many feature additions and fixes to list here pkgsrc changes: removed all X11 frontend support, leaving just the ability to create image files frontends will be added as separate pkgs
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-18Add missing file to PLIST, bump PKGREVISION.wiz2-3/+5
Add missing pkg-config to USE_TOOLS.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-1/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-12-29Update py-matplotlib to version 0.83markd4-14/+135
Added Mark Athen's 'scale' patch, so that on a scaled axis a circle looks like circle. See help(axis). New cursor and span selector widgets You can use use matplotlib event handling to register a callback after figure draw using 'draw_event' which calls the callback with a DrawEvent instance Use 'f' to toggle full screen mode in the GTK backends. Steve Chaplin has made numerous updates to the GTK and SVG backends. Reorganized config files Updated agg_test.py to demonstrate curved paths and fills. Upgraded pyparsing and applied Paul McGuire's suggestions for speeding things up. This more than doubles the speed of mathtext in my simple tests. Bugs fixed / small features What's new in matplotlib 0.82 Subplot configuration GUI neutral widgets Exposes line cap and join style via new rc params and Line2D properties All Axes properties are now exposed via kwargs Small bugfixes and features What's new in matplotlib 0.81 TeX support Masked arrays Much faster image loading for MxNx4 or MxNx3 UInt8 images. New image interpolation options set deprecated New scalar formatter Bug fixes