aboutsummaryrefslogtreecommitdiff
path: root/graphics/py-graphviz
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Drop python 2.7 support from a few portsAntoine Brodin2020-12-281-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=559531
* Change my mail address to lbartoletti@FreeBSD.orgLoïc Bartoletti2020-01-141-2/+2
| | | | | | | | Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D23169 Notes: svn path=/head/; revision=523070
* - Update to 0.10.1Martin Wilke2019-01-292-5/+6
| | | | | | | | | | | | | Changes by upstream: - https://github.com/xflr6/graphviz/blob/0.10.1/CHANGES.txt PR: 234619 Submitted by: freebsd_ports@k-worx.org Approved by: maintainer Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=491577
* - Update to 0.8.4Wen Heping2018-08-172-4/+4
| | | | | | | | PR: 230677 Submitted by: lbartoletti@tuxfamily.org(maintainer) Notes: svn path=/head/; revision=477406
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-2/+2
| | | | | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight Notes: svn path=/head/; revision=472884
* Update to upstream release 0.8.3Thomas Zander2018-05-052-5/+5
| | | | | | | | | PR: 227958 Submitted by: lbartoletti@tuxfamily.org (maintainer) MFH: 2018Q2 Notes: svn path=/head/; revision=469087
* Update to 0.8.2Sunpoet Po-Chuan Hsieh2018-01-152-4/+4
| | | | | | | | | Changes: https://github.com/xflr6/graphviz/blob/master/CHANGES.txt PR: 224979 Submitted by: lbartoletti <lbartoletti@tuxfamily.org> (maintainer) Notes: svn path=/head/; revision=459095
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* graphics/py-graphviz: update to 0.8.1Steve Wills2017-10-182-4/+4
| | | | | | | | PR: 223058 Submitted by: lbartoletti <lbartoletti@tuxfamily.org> (maintainer) Notes: svn path=/head/; revision=452355
* Add graphics/py-graphviz, simple Python interface for GraphvizDanilo G. Baio2017-09-173-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package facilitates the creation and rendering of graph descriptions in the DOT language of the Graphviz graph drawing software (repo) from Python. Create a graph object, assemble the graph by adding nodes and edges, and retrieve its DOT source code string. Save the source code to a file and render it with the Graphviz installation of your system. Use the view option/method to directly inspect the resulting (PDF, PNG, SVG, etc.) file with its default application. Graphs can also be rendered and displayed within Jupyter notebooks (a.k.a. IPython notebooks, example) as well as the Jupyter Qt Console. WWW: https://github.com/xflr6/graphviz Already existed a port named graphics/py-graphviz, it was moved in ports r408353 to graphics/py-pygraphviz because it was using an incorrect name. More info in the commit log [1]. 1 - https://svnweb.freebsd.org/ports?view=revision&revision=408353 PR: 222205 Submitted by: lbartoletti@tuxfamily.org Reviewed by: koobs Differential Revision: D12319 Notes: svn path=/head/; revision=449993
* graphics/py-graphviz: Move to py-pygraphviz, Fix 3.x buildKubilay Kocak2016-02-075-120/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are numerous graphviz related packages in PyPI, including: graphviz, graphviz-python and pygraphviz. This port, py-graphviz, is not and does not provide the same package as the 'graphviz' package on PyPI (CHEESESHOP). Further, it blocks the creation of a correctly named py-graphviz port, is a POLA violation in terms of users expecting to find and recieve the package they expect based on a standard search, and is likely to create confusion among other ports if they depend on a python graphviz package, which could result in incorrect packages/dependencies. This is why among other reasons, Python packages should be named exactly what they are called in PyPI, or inside install_requires, setup_requires or tests_requires as dependencies in other packages. This change moves py-graphviz to py-pygraphviz to correct the above incorrect naming. While I'm here: - Remove backup (http) MASTER_SITES, CHEESESHOP is highly-available and provides a Geo-aware CDN by Fastly. - Remove {BUILD,RUN}_DEPENDS in favour of the actual LIB_DEPENDS - Use PYDISTUTILS_* framework variables to customise the build instead of hack patching setup.py - Enable autoplist, fixing builds on Python 3.x [1] - Enable concurrent (Python version) installation - Hack patch setup.py to preclude docs installation, as it adds a directory to --record and breaks pkg-plist output [2] - Remove DOCSDIR override (no longer necessary) - Assign MAINTAINER'ship to python@ - Add TEST_DEPENDS and test target - pkg-descr: Match WWW URL to setup.py:homepage field - pkg-descr: Improve package description text (matching upstream) While I'm sweeping dependencies: - Fix a typo in science/gramps: s|>-|>= [2] https://wiki.freebsd.org/Python (Open task for install_data bug) Reported by: Ben Woods (via IRC) [1] Notes: svn path=/head/; revision=408353
* Upgrade to 1.3.1.Vanilla I. Shu2015-12-084-32/+58
| | | | Notes: svn path=/head/; revision=403283
* - Strip libraryDmitry Marakasov2015-03-131-0/+4
| | | | Notes: svn path=/head/; revision=381187
* Upgrade to 1.2.Vanilla I. Shu2015-01-172-4/+3
| | | | Notes: svn path=/head/; revision=377230
* Drop maintainership as I no longer use these software nor have time andRong-En Fan2015-01-161-1/+1
| | | | | | | energy to keep up. Notes: svn path=/head/; revision=377195
* - Convert ports of graphics/ to new USES=pythonMarcus von Appen2014-10-211-2/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371326
* Cleanup plistBaptiste Daroussin2014-10-201-4/+0
| | | | Notes: svn path=/head/; revision=371283
* - StageVanilla I. Shu2014-05-081-1/+0
| | | | | | | | | PR: ports/188922 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: portmgr@ Notes: svn path=/head/; revision=353325
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-4/+2
| | | | | | | graphics) Notes: svn path=/head/; revision=327733
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+1
| | | | Notes: svn path=/head/; revision=297915
* - Update to 1.1Rong-En Fan2012-01-233-3/+5
| | | | Notes: svn path=/head/; revision=289650
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276992
* - Update to 1.0Rong-En Fan2010-08-034-19/+18
| | | | Notes: svn path=/head/; revision=258697
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* - Update to 0.99.1Rong-En Fan2009-02-134-23/+42
| | | | | | | | PR: ports/131509 Submitted by: Yi-Jheng Lin <yzlin at cs.nctu.edu.tw> Notes: svn path=/head/; revision=228171
* - Fix fetchLi-Wen Hsu2009-02-011-1/+1
| | | | | | | Reported by: -fetch-original pointyhat run Notes: svn path=/head/; revision=227396
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Make Python 2.5.1 the default Python versionAlexander Botero-Lowry2007-07-301-0/+1
| | | | | | | | | | | | | - Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav Notes: svn path=/head/; revision=196700
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Update to 0.33Rong-En Fan2007-03-054-28/+24
| | | | | | | | | - Take maintainership Approved by: xride (maintainer) Notes: svn path=/head/; revision=186579
* Change my MAINTAINER email to be my @FreeBSD emailSoeren Straarup2006-09-291-1/+1
| | | | | | | Approved by: tmclaugh Notes: svn path=/head/; revision=174118
* - Fix place of install when devel/py-setuptools is installedMartin Wilke2006-09-242-9/+19
| | | | | | | | | | - Pass maintainership to submitter PR: ports/103564 Submitted by: Soeren Straarup <xride@x12.dk> Notes: svn path=/head/; revision=173731
* Update to recommended version 0.22 from new upstream which no longer ↵Volker Stolz2006-04-116-55/+45
| | | | | | | | | | | | requires SWIG. This fixes the brokeness introduced in the previous SWIG bandaid. A lawyer might want to check if the license is also less restrictive now ;) Sponsored by: simon & erwin of tb3.droso.net Notes: svn path=/head/; revision=159325
* Fall back to swig 1.1, something has broken with swig 1.3Volker Stolz2006-04-091-2/+2
| | | | Notes: svn path=/head/; revision=159213
* - Add SHA256Pav Lucistnik2005-11-261-0/+2
| | | | Notes: svn path=/head/; revision=149530
* Use -rpath for linking so that ldconfiguring graphviz-local shared libsVolker Stolz2005-11-032-2/+2
| | | | | | | is not required. Notes: svn path=/head/; revision=147089
* Fix dependency on graphviz, the graphviz libraries are installed in aTilman Keskinoz2005-11-011-2/+3
| | | | | | | non-default libdir, add BUILD_ and RUN_ dependendencies instead. Notes: svn path=/head/; revision=146914
* Use LIB_DEPENDS on graphviz isntead of obscure BUILD_DEPENDS=/path/to/.soVolker Stolz2005-10-141-3/+4
| | | | Notes: svn path=/head/; revision=145387
* - Remove files/setup.pyPav Lucistnik2005-02-265-47/+38
| | | | | | | | | | | | - Add files/Makefile - Rather than build from port's own download of graphviz, depend on the graphviz port and use its shared objects. (Fixes fetch problem) PR: ports/78069 Submitted by: Sam Lawrance <boris@brooknet.com.au> Notes: svn path=/head/; revision=129830
* SIZEify.Trevor Johnson2004-01-291-0/+3
| | | | Notes: svn path=/head/; revision=99360
* Update based graphviz's version to fix a checksum failureHye-Shik Chang2003-03-312-8/+9
| | | | | | | Spotted by: kris Notes: svn path=/head/; revision=77798
* De-pkg-comment for my ports.Hye-Shik Chang2003-02-252-1/+1
| | | | Notes: svn path=/head/; revision=76449
* devel/SWIG-devel -> devel/swig13Akinori MUSHA2002-10-301-2/+2
| | | | Notes: svn path=/head/; revision=69156
* Add missing .pyo files to each pkg-plistHye-Shik Chang2002-08-231-0/+1
| | | | Notes: svn path=/head/; revision=64882
* Updating my email address.Hye-Shik Chang2002-06-251-1/+1
| | | | | | | Approved by: cjh (mentor) Notes: svn path=/head/; revision=61912
* use USE_PYDISTUTILSYing-Chieh Liao2002-04-291-8/+3
| | | | Notes: svn path=/head/; revision=58323
* Add py-graphviz 0.1, python interface to GraphViz agraph.Pete Fritchman2002-03-196-0/+84
PR: 33159 Submitted by: Hye-Shik Chang <perky@fallin.lv> Notes: svn path=/head/; revision=56323