diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-05 20:20:07 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-05 20:37:02 +0100 |
commit | b6a6ba79829873cdb3213421b694f5f52f31e816 (patch) | |
tree | 1ac0924ccddd5842d67cf65bd1ec837c953c0c6b /dev-python/pydot | |
parent | dev-python/pycups: Remove py2 (diff) | |
download | gentoo-b6a6ba79829873cdb3213421b694f5f52f31e816.tar.gz gentoo-b6a6ba79829873cdb3213421b694f5f52f31e816.tar.bz2 gentoo-b6a6ba79829873cdb3213421b694f5f52f31e816.zip |
dev-python/pydot: Remove old (py2)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pydot')
-rw-r--r-- | dev-python/pydot/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pydot/files/pydot-1.0.23-setup.patch | 21 | ||||
-rw-r--r-- | dev-python/pydot/files/pydot-1.0.28-pyparsing2fix.patch | 14 | ||||
-rw-r--r-- | dev-python/pydot/pydot-1.0.28-r2.ebuild | 27 | ||||
-rw-r--r-- | dev-python/pydot/pydot-1.2.3.ebuild | 30 |
5 files changed, 0 insertions, 94 deletions
diff --git a/dev-python/pydot/Manifest b/dev-python/pydot/Manifest index e9cea972d70a..9ff10b2684c3 100644 --- a/dev-python/pydot/Manifest +++ b/dev-python/pydot/Manifest @@ -1,3 +1 @@ -DIST pydot-1.0.28.tar.gz 19711 BLAKE2B 73fa2a614de998d4b53065a350768dbf1c0a4aef60edd9d0515ebfc9c685aba09dc42f89849c1eb609e469a4036062d3f0b83b364d89557f73414143c2c78d59 SHA512 54b4d7bfb01bbcae9a4832d1c3321d4f453a93f062ee55b35e3d59bee3f8989f4a544afb56c3d16b22bca8e6ef24b6286ac2688c9045b16906ef625999b35055 -DIST pydot-1.2.3.tar.gz 262660 BLAKE2B b5acfc365f7864c2b1fb419e5d4624ebeabef2e969dcf545668062ad46b33de5b5ee65271ac6b0fe0abb48df83f6c24bf3598798eb8879a998c06d91b6a5ac00 SHA512 0527279174bd9d5703131ab6c16365d66e392e27597b5d2d536d43f783a59139913a6dbfa1cc022993f842843f5d79e4e0b2a1435ce3427ebc534ef7b1ef2e9b DIST pydot-1.4.1.tar.gz 264987 BLAKE2B 61db2b6dbeab582981bf96054686c927d8d4548ac19a6c197ab1725f92c87e973c2dcd84d4c6c04cb2ca76b8f40814cfee1d5a53e4952065a538fc271e75d2a0 SHA512 b5f16b59908586df61cd415cb1a3e242fb69c39674a82b171862beff1f3727f47cba39bdd806901cb56bc8a6888783a53d112b1b70044e124ea992789d77f938 diff --git a/dev-python/pydot/files/pydot-1.0.23-setup.patch b/dev-python/pydot/files/pydot-1.0.23-setup.patch deleted file mode 100644 index c87cc32b30d1..000000000000 --- a/dev-python/pydot/files/pydot-1.0.23-setup.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- setup.py -+++ setup.py -@@ -1,9 +1,9 @@ - #!/usr/bin/env python - - try: -- from distutils.core import setup --except ImportError, excp: - from setuptools import setup -+except ImportError, excp: -+ from distutils.core import setup - - import pydot - import os -@@ -31,5 +31,4 @@ - 'Topic :: Software Development :: Libraries :: Python Modules'], - long_description = "\n".join(pydot.__doc__.split('\n')), - py_modules = ['pydot', 'dot_parser'], -- install_requires = ['pyparsing', 'setuptools'], -- data_files = [('.', ['LICENSE', 'README'])] ) -+ install_requires = ['pyparsing', 'setuptools'] ) diff --git a/dev-python/pydot/files/pydot-1.0.28-pyparsing2fix.patch b/dev-python/pydot/files/pydot-1.0.28-pyparsing2fix.patch deleted file mode 100644 index 12a01091223c..000000000000 --- a/dev-python/pydot/files/pydot-1.0.28-pyparsing2fix.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -up pydot-1.0.28/dot_parser.py.pyparsing2fix pydot-1.0.28/dot_parser.py ---- pydot-1.0.28/dot_parser.py.pyparsing2fix 2013-12-09 08:59:24.660145534 -0500 -+++ pydot-1.0.28/dot_parser.py 2013-12-09 09:00:10.021222397 -0500 -@@ -25,8 +25,9 @@ from pyparsing import __version__ as pyp - from pyparsing import ( nestedExpr, Literal, CaselessLiteral, Word, Upcase, OneOrMore, ZeroOrMore, - Forward, NotAny, delimitedList, oneOf, Group, Optional, Combine, alphas, nums, - restOfLine, cStyleComment, nums, alphanums, printables, empty, quotedString, -- ParseException, ParseResults, CharsNotIn, _noncomma, dblQuotedString, QuotedString, ParserElement ) -+ ParseException, ParseResults, CharsNotIn, dblQuotedString, QuotedString, ParserElement ) - -+_noncomma = "".join( [ c for c in printables if c != "," ] ) - - class P_AttrList: - diff --git a/dev-python/pydot/pydot-1.0.28-r2.ebuild b/dev-python/pydot/pydot-1.0.28-r2.ebuild deleted file mode 100644 index 5c92facbb112..000000000000 --- a/dev-python/pydot/pydot-1.0.28-r2.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="Python interface to Graphviz's Dot language" -HOMEPAGE="https://pypi.org/project/pydot/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" -IUSE="" - -RDEPEND=" - dev-python/pyparsing[${PYTHON_USEDEP}] - media-gfx/graphviz" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.23-setup.patch - "${FILESDIR}"/${P}-pyparsing2fix.patch ) diff --git a/dev-python/pydot/pydot-1.2.3.ebuild b/dev-python/pydot/pydot-1.2.3.ebuild deleted file mode 100644 index 1fd6811bffa6..000000000000 --- a/dev-python/pydot/pydot-1.2.3.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="Python interface to Graphviz's Dot language" -HOMEPAGE="https://github.com/erocarrera/pydot https://pypi.org/project/pydot/" -# pypi releases don't include tests -SRC_URI="https://github.com/erocarrera/pydot/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/pyparsing[${PYTHON_USEDEP}] - media-gfx/graphviz" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/chardet[${PYTHON_USEDEP}] )" - -python_test() { - cd test || die - "${PYTHON}" pydot_unittest.py || die "Test failed with ${EPYTHON}" -} |