diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2019-04-09 22:07:32 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2019-04-10 00:07:13 -0500 |
commit | 19c5deeed2c17a633e547e959371ae886d2833e8 (patch) | |
tree | 44d94db005e8e4acd42fdb098d5a681d7aa7bb4d /dev-python/pygraphviz/files | |
parent | dev-python/doctest-ignore-unicode: add py37 support (diff) | |
download | gentoo-19c5deeed2c17a633e547e959371ae886d2833e8.tar.gz gentoo-19c5deeed2c17a633e547e959371ae886d2833e8.tar.bz2 gentoo-19c5deeed2c17a633e547e959371ae886d2833e8.zip |
dev-python/pygraphviz: 1.5 bump
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'dev-python/pygraphviz/files')
-rw-r--r-- | dev-python/pygraphviz/files/pygraphviz-1.5-docs.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/pygraphviz/files/pygraphviz-1.5-docs.patch b/dev-python/pygraphviz/files/pygraphviz-1.5-docs.patch new file mode 100644 index 000000000000..aed5c9075b88 --- /dev/null +++ b/dev-python/pygraphviz/files/pygraphviz-1.5-docs.patch @@ -0,0 +1,29 @@ + setup.py | 8 -------- + 1 file changed, 8 deletions(-) + +diff --git a/setup.py b/setup.py +index fc0a96f..98b7f58 100644 +--- a/setup.py ++++ b/setup.py +@@ -36,13 +36,6 @@ release.write_versionfile() + sys.path.pop(0) + + packages = ["pygraphviz", "pygraphviz.tests"] +-docdirbase = 'share/doc/pygraphviz-%s' % release.version +-data = [ +- (docdirbase, glob("*.txt")), +- (os.path.join(docdirbase, 'examples'), glob("examples/*.py")), +- (os.path.join(docdirbase, 'examples'), glob("examples/*.dat")), +- (os.path.join(docdirbase, 'examples'), glob("examples/*.dat.gz")), +-] + package_data = {'': ['*.txt'], } + + if __name__ == "__main__": +@@ -75,7 +68,6 @@ if __name__ == "__main__": + download_url=release.download_url, + classifiers=release.classifiers, + packages=packages, +- data_files=data, + ext_modules=extension, + cmdclass={ + 'install': AddExtensionInstallCommand, |