mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-python/tappy: 2.6.2 version bump w/ python3_9
Last version w/ py2 support. Tests passed. Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST tap.py-2.4.tar.gz 145440 BLAKE2B 1c6effe086c50cb8b11355db0439207330446a245c42420a948e1c3ff8caf917d9a76ea00f231199a5bd79e7396bcd2a904b764ffa1db611c57947274095a0b9 SHA512 7c843c40f0029bb122fdafec0f5416164b77fac69142c2308a6d815f2f409cddb33c5a08547409e278f06036e21cb2a53cbd3263c23f59c6618c12c201b8209c
|
||||
DIST tap.py-2.6.2.tar.gz 148974 BLAKE2B 5e33c7af37c2533b4fd5b45684cc93793027b50c09fde34a4a8ff80c58510a50f5f21295852c14bef506c783cae6293bae521c5fdd696752c221cc49c7d2713e SHA512 2cd0b1b69f155970cf2367766cca96bc8391e074edc754531f0511c3dd027a0a8e95bb8481b627b2610ec9b5f685ebff95f07f5f97eb31c321d96590286be803
|
||||
DIST tap.py-3.0.tar.gz 141764 BLAKE2B 0d65d9c0691deef31475cf6db172e41340e112cacda240d32a55338665632613f09c98d0c7dcfbf28be997079f789054d71f1059fb74228507041163df9710a1 SHA512 58b0928dd28ba525d9bb5edfab5606cb67af15e75a5f03d2648280d30377e2aa23b314ed41dba3b09b7dfa1aefead53674df43b6087e552b9aa937472838e7db
|
||||
|
||||
37
dev-python/tappy/files/tappy-2.6.2-yaml.patch
Normal file
37
dev-python/tappy/files/tappy-2.6.2-yaml.patch
Normal file
@@ -0,0 +1,37 @@
|
||||
From 116aa55f5d1ae1f82604ae377e07a751f61bb651 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Layman <matthewlayman@gmail.com>
|
||||
Date: Sat, 14 Dec 2019 21:20:22 -0500
|
||||
Subject: [PATCH] Use PyYAML safe loader and remove deprecation warning. (#103)
|
||||
|
||||
Fixes #102
|
||||
---
|
||||
setup.py | 2 +-
|
||||
tap/line.py | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 2d001da..4c59879 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -63,7 +63,7 @@ def run(self):
|
||||
zip_safe=False,
|
||||
platforms="any",
|
||||
install_requires=[],
|
||||
- extras_require={"yaml": ["more-itertools", "PyYAML"]},
|
||||
+ extras_require={"yaml": ["more-itertools", "PyYAML>=5.1"]},
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
diff --git a/tap/line.py b/tap/line.py
|
||||
index 0d44ff8..fc8f8e2 100644
|
||||
--- a/tap/line.py
|
||||
+++ b/tap/line.py
|
||||
@@ -96,7 +96,7 @@ def yaml_block(self):
|
||||
"""
|
||||
if LOAD_YAML and self._yaml_block is not None:
|
||||
try:
|
||||
- yaml_dict = yaml.load(self._yaml_block)
|
||||
+ yaml_dict = yaml.load(self._yaml_block, Loader=yaml.SafeLoader)
|
||||
return yaml_dict
|
||||
except yaml.error.YAMLError:
|
||||
print("Error parsing yaml block. Check formatting.")
|
||||
40
dev-python/tappy/tappy-2.6.2.ebuild
Normal file
40
dev-python/tappy/tappy-2.6.2.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} )
|
||||
inherit distutils-r1
|
||||
|
||||
MY_PN=tap.py
|
||||
DESCRIPTION="Test Anything Protocol (TAP) tools"
|
||||
HOMEPAGE="https://github.com/python-tap/tappy https://pypi.org/project/tap.py/"
|
||||
SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
|
||||
S=${WORKDIR}/${MY_PN}-${PV}
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
|
||||
IUSE="yaml"
|
||||
|
||||
RDEPEND="
|
||||
yaml? (
|
||||
dev-python/more-itertools[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
)"
|
||||
BDEPEND="
|
||||
dev-python/Babel[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/more-itertools[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
' -2)
|
||||
)"
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-yaml.patch
|
||||
)
|
||||
Reference in New Issue
Block a user