Skip to content
This repository was archived by the owner on Oct 27, 2022. It is now read-only.

Commit 4b282f3

Browse files
committed
python-graphviz: Autospec creation for update from version 0.10.1 to version 0.11
Sebastian Bank (40): bump version for development flake8 separate tox.ini work around pytest-dev/pytest#4306 cover non-ExecutableNotFound run() OSError branch skip OSError test with --skipexe re-run example notebook with Python 3.7.1 blacklist pytest 3.10.0, drop minversion bug workaround drop thonny workaround adapt --skipexe help text parametrize more tests, extend copy() assertions add parentheses to comparison update link to IPython console in Spider IDE add example for using g.attr(rank='same') with subgraphs drop Python 3.4 support simplify with operator.methodcaller add message to version() exception, tighten result test refactor command() helper, skip suffix computation when piping improve formatting straighten mapping_items() use a module-level constant for the default encoding improve multi-line code formatting ignore superfluous flake8 messages improve naming fix constants docstring bump version for new feature development add quiet argument to render() and pipe() methods add test for current behaviour on relative paths switch relative image path test to wanted behaviour, make if fail execute render() with dirname of filepath as cwd document render() cwd changes add quiet arg to view() short-cut method switch backend to module import, one module per import flake8 test view() returns None double whitespace move out unknown platform tests fix missing source fixture include test png in source distribution release 0.11
1 parent 9c25ae9 commit 4b282f3

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ build.log.round*
1111
commitmsg
1212
results/
1313
rpms/
14+
for-review.txt

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := python-graphviz
2-
URL = https://files.pythonhosted.org/packages/9a/4a/2d8dd8c0cc7f1711c6f76b8af31a206918f139f2f04f34de3109accc2cea/graphviz-0.10.1.zip
2+
URL = https://files.pythonhosted.org/packages/11/9f/6b832f8819067e2608c35f73f34f17f1a34316cfacb7d67782f8bb70fd2d/graphviz-0.11.zip
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = python-graphviz
3-
url = https://files.pythonhosted.org/packages/9a/4a/2d8dd8c0cc7f1711c6f76b8af31a206918f139f2f04f34de3109accc2cea/graphviz-0.10.1.zip
3+
url = https://files.pythonhosted.org/packages/11/9f/6b832f8819067e2608c35f73f34f17f1a34316cfacb7d67782f8bb70fd2d/graphviz-0.11.zip
44
archives =
55
giturl = https://github.com/xflr6/graphviz.git
66

python-graphviz.spec

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Generated by: autospec.py
44
#
55
Name : python-graphviz
6-
Version : 0.10.1
7-
Release : 6
8-
URL : https://files.pythonhosted.org/packages/9a/4a/2d8dd8c0cc7f1711c6f76b8af31a206918f139f2f04f34de3109accc2cea/graphviz-0.10.1.zip
9-
Source0 : https://files.pythonhosted.org/packages/9a/4a/2d8dd8c0cc7f1711c6f76b8af31a206918f139f2f04f34de3109accc2cea/graphviz-0.10.1.zip
6+
Version : 0.11
7+
Release : 7
8+
URL : https://files.pythonhosted.org/packages/11/9f/6b832f8819067e2608c35f73f34f17f1a34316cfacb7d67782f8bb70fd2d/graphviz-0.11.zip
9+
Source0 : https://files.pythonhosted.org/packages/11/9f/6b832f8819067e2608c35f73f34f17f1a34316cfacb7d67782f8bb70fd2d/graphviz-0.11.zip
1010
Summary : Simple Python interface for Graphviz
1111
Group : Development/Tools
1212
License : MIT
@@ -71,14 +71,22 @@ python3 components for the python-graphviz package.
7171

7272

7373
%prep
74-
%setup -q -n graphviz-0.10.1
74+
%setup -q -n graphviz-0.11
7575

7676
%build
7777
export http_proxy=http://127.0.0.1:9/
7878
export https_proxy=http://127.0.0.1:9/
7979
export no_proxy=localhost,127.0.0.1,0.0.0.0
8080
export LANG=C
81-
export SOURCE_DATE_EPOCH=1546554216
81+
export SOURCE_DATE_EPOCH=1560317450
82+
export GCC_IGNORE_WERROR=1
83+
export AR=gcc-ar
84+
export RANLIB=gcc-ranlib
85+
export NM=gcc-nm
86+
export CFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
87+
export FCFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
88+
export FFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
89+
export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=4 "
8290
export MAKEFLAGS=%{?_smp_mflags}
8391
python3 setup.py build
8492

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6
1+
7

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c8a87b54fa8b984292bbfb38f53a3d646afedc85/graphviz-0.10.1.zip
1+
6402ae3eb86bb59969800995e8f1a9f5b87e8347/graphviz-0.11.zip

0 commit comments

Comments
 (0)