pkgsrc/graphics/py-dot/Makefile

22 lines
622 B
Makefile
Raw Normal View History

update to pydot-1.2.2 # `pydot` changelog ## 1.2.0 (2016-07-01) - Python 3 compatibility - bumped dependency to `pyparsing >= 2.1.4` - tests running on Travis CI - tests require `chardet` - detect character encoding for most test files using the package `chardet` API: - on all operating systems, search GraphViz executables in environment `$PATH`, using `subprocess.Popen`. No paths hard-coded due to security and privacy issues. - add option to pass GraphViz executable name or absolute path as `prog` to `pydot.Dot.write_*` methods. This provides an alternative to adding GraphViz to the `$PATH`. - the functions: - `pydot.graph_from_dot_data` - `pydot.graph_from_dot_file` - `dot_parser.parse_dot_data` changed to always return a `list` of graphs, instead of behaving differently for singletons. - require that the user explicitly give an encoding to the function `pydot.graph_from_dot_file`, with default encoding same as `io.open`. - decode to unicode at program boundaries, and treat binary images as bytes, for more compatibility with python 3. Use `io.open`, instead of the built-in `open`. - rm function `pydot.set_graphviz_executables` - rm attribute `pydot.Dot.progs` ## 1.1.0 (2016-05-23) - compatibility with `pyparsing >= 1.5.7` API: - `pydot.Graph.to_string`: hide `subgraph` keyword only if so requested - produce `warnings.warn` if `pydot.dot_parser` fails to import, instead of `print` ## 1.0.29 (2016-05-16) - Maintenance release that keeps the same API - pin `pyparsing == 1.5.7` - update version number in source code - update `setup.py`
2016-08-17 14:37:34 +02:00
# $NetBSD: Makefile,v 1.5 2016/08/17 12:37:34 richard Exp $
2014-01-19 21:15:43 +01:00
update to pydot-1.2.2 # `pydot` changelog ## 1.2.0 (2016-07-01) - Python 3 compatibility - bumped dependency to `pyparsing >= 2.1.4` - tests running on Travis CI - tests require `chardet` - detect character encoding for most test files using the package `chardet` API: - on all operating systems, search GraphViz executables in environment `$PATH`, using `subprocess.Popen`. No paths hard-coded due to security and privacy issues. - add option to pass GraphViz executable name or absolute path as `prog` to `pydot.Dot.write_*` methods. This provides an alternative to adding GraphViz to the `$PATH`. - the functions: - `pydot.graph_from_dot_data` - `pydot.graph_from_dot_file` - `dot_parser.parse_dot_data` changed to always return a `list` of graphs, instead of behaving differently for singletons. - require that the user explicitly give an encoding to the function `pydot.graph_from_dot_file`, with default encoding same as `io.open`. - decode to unicode at program boundaries, and treat binary images as bytes, for more compatibility with python 3. Use `io.open`, instead of the built-in `open`. - rm function `pydot.set_graphviz_executables` - rm attribute `pydot.Dot.progs` ## 1.1.0 (2016-05-23) - compatibility with `pyparsing >= 1.5.7` API: - `pydot.Graph.to_string`: hide `subgraph` keyword only if so requested - produce `warnings.warn` if `pydot.dot_parser` fails to import, instead of `print` ## 1.0.29 (2016-05-16) - Maintenance release that keeps the same API - pin `pyparsing == 1.5.7` - update version number in source code - update `setup.py`
2016-08-17 14:37:34 +02:00
DISTNAME= pydot-1.2.2
2014-01-19 21:15:43 +01:00
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
CATEGORIES= graphics python
update to pydot-1.2.2 # `pydot` changelog ## 1.2.0 (2016-07-01) - Python 3 compatibility - bumped dependency to `pyparsing >= 2.1.4` - tests running on Travis CI - tests require `chardet` - detect character encoding for most test files using the package `chardet` API: - on all operating systems, search GraphViz executables in environment `$PATH`, using `subprocess.Popen`. No paths hard-coded due to security and privacy issues. - add option to pass GraphViz executable name or absolute path as `prog` to `pydot.Dot.write_*` methods. This provides an alternative to adding GraphViz to the `$PATH`. - the functions: - `pydot.graph_from_dot_data` - `pydot.graph_from_dot_file` - `dot_parser.parse_dot_data` changed to always return a `list` of graphs, instead of behaving differently for singletons. - require that the user explicitly give an encoding to the function `pydot.graph_from_dot_file`, with default encoding same as `io.open`. - decode to unicode at program boundaries, and treat binary images as bytes, for more compatibility with python 3. Use `io.open`, instead of the built-in `open`. - rm function `pydot.set_graphviz_executables` - rm attribute `pydot.Dot.progs` ## 1.1.0 (2016-05-23) - compatibility with `pyparsing >= 1.5.7` API: - `pydot.Graph.to_string`: hide `subgraph` keyword only if so requested - produce `warnings.warn` if `pydot.dot_parser` fails to import, instead of `print` ## 1.0.29 (2016-05-16) - Maintenance release that keeps the same API - pin `pyparsing == 1.5.7` - update version number in source code - update `setup.py`
2016-08-17 14:37:34 +02:00
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pydot/}
2014-01-19 21:15:43 +01:00
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://code.google.com/p/pydot/
COMMENT= Python interface to Graphviz's Dot language
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-pyparsing-[0-9]*:../../devel/py-pyparsing
DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
post-install:
update to pydot-1.2.2 # `pydot` changelog ## 1.2.0 (2016-07-01) - Python 3 compatibility - bumped dependency to `pyparsing >= 2.1.4` - tests running on Travis CI - tests require `chardet` - detect character encoding for most test files using the package `chardet` API: - on all operating systems, search GraphViz executables in environment `$PATH`, using `subprocess.Popen`. No paths hard-coded due to security and privacy issues. - add option to pass GraphViz executable name or absolute path as `prog` to `pydot.Dot.write_*` methods. This provides an alternative to adding GraphViz to the `$PATH`. - the functions: - `pydot.graph_from_dot_data` - `pydot.graph_from_dot_file` - `dot_parser.parse_dot_data` changed to always return a `list` of graphs, instead of behaving differently for singletons. - require that the user explicitly give an encoding to the function `pydot.graph_from_dot_file`, with default encoding same as `io.open`. - decode to unicode at program boundaries, and treat binary images as bytes, for more compatibility with python 3. Use `io.open`, instead of the built-in `open`. - rm function `pydot.set_graphviz_executables` - rm attribute `pydot.Dot.progs` ## 1.1.0 (2016-05-23) - compatibility with `pyparsing >= 1.5.7` API: - `pydot.Graph.to_string`: hide `subgraph` keyword only if so requested - produce `warnings.warn` if `pydot.dot_parser` fails to import, instead of `print` ## 1.0.29 (2016-05-16) - Maintenance release that keeps the same API - pin `pyparsing == 1.5.7` - update version number in source code - update `setup.py`
2016-08-17 14:37:34 +02:00
${RM} ${DESTDIR}${PREFIX}/README.md
2014-01-19 21:15:43 +01:00
${RM} ${DESTDIR}${PREFIX}/LICENSE
update to pydot-1.2.2 # `pydot` changelog ## 1.2.0 (2016-07-01) - Python 3 compatibility - bumped dependency to `pyparsing >= 2.1.4` - tests running on Travis CI - tests require `chardet` - detect character encoding for most test files using the package `chardet` API: - on all operating systems, search GraphViz executables in environment `$PATH`, using `subprocess.Popen`. No paths hard-coded due to security and privacy issues. - add option to pass GraphViz executable name or absolute path as `prog` to `pydot.Dot.write_*` methods. This provides an alternative to adding GraphViz to the `$PATH`. - the functions: - `pydot.graph_from_dot_data` - `pydot.graph_from_dot_file` - `dot_parser.parse_dot_data` changed to always return a `list` of graphs, instead of behaving differently for singletons. - require that the user explicitly give an encoding to the function `pydot.graph_from_dot_file`, with default encoding same as `io.open`. - decode to unicode at program boundaries, and treat binary images as bytes, for more compatibility with python 3. Use `io.open`, instead of the built-in `open`. - rm function `pydot.set_graphviz_executables` - rm attribute `pydot.Dot.progs` ## 1.1.0 (2016-05-23) - compatibility with `pyparsing >= 1.5.7` API: - `pydot.Graph.to_string`: hide `subgraph` keyword only if so requested - produce `warnings.warn` if `pydot.dot_parser` fails to import, instead of `print` ## 1.0.29 (2016-05-16) - Maintenance release that keeps the same API - pin `pyparsing == 1.5.7` - update version number in source code - update `setup.py`
2016-08-17 14:37:34 +02:00
.include "../../lang/python/egg.mk"
2014-01-19 21:15:43 +01:00
.include "../../mk/bsd.pkg.mk"