diff options
author | John Helmert III <jchelmert3@posteo.net> | 2020-07-26 01:33:03 -0500 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-07-29 07:03:01 +0200 |
commit | 397831b44453de33f0abfc93dd5ed0198049cbc8 (patch) | |
tree | 3d65f49f7a2e85bfd8b365b612b8f32bc0f6a72a /dev-python/pyyaml | |
parent | dev-python/twine: sparc stable (bug #733850) (diff) | |
download | gentoo-397831b44453de33f0abfc93dd5ed0198049cbc8.tar.gz gentoo-397831b44453de33f0abfc93dd5ed0198049cbc8.tar.bz2 gentoo-397831b44453de33f0abfc93dd5ed0198049cbc8.zip |
dev-python/pyyaml: Cleanup <5.3 (security)
Bug: https://bugs.gentoo.org/659348
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: John Helmert III <jchelmert3@posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/16825
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyyaml')
-rw-r--r-- | dev-python/pyyaml/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyyaml/pyyaml-3.13.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/pyyaml/Manifest b/dev-python/pyyaml/Manifest index 88af6db8c83a..5d4a0c2d427b 100644 --- a/dev-python/pyyaml/Manifest +++ b/dev-python/pyyaml/Manifest @@ -1,3 +1,2 @@ -DIST PyYAML-3.13.tar.gz 270607 BLAKE2B f365f63587b911234497426c9796f98b85f5de052abd88ea434137a4eb8a4c1e08f9ee1982a30df1934dadb615145f4af8fcff577d3d4e52058e7a8843aa8604 SHA512 93642286d0317e2fe970632c36d38ce6030f7cabcf971f28e3a1054f07390fcee5baaf7f167e7c9690dbd7b2adc61f5b7d75a218ace0abca34ff8815486cfdd7 DIST PyYAML-5.3.tar.gz 268214 BLAKE2B 2017ec6d64744323c7e6f3bdcea77b249943ba93844de363ba5d2b14cf70cc5c06e8427d12515e1e60f8432a87a115df1033d959fc42851f61818d0bdc8cd7a2 SHA512 9124bf4d58ebe925f430fd6ed749e5a3311a54d536a035d39794c485843ddb80692fd7f7bac05797507128b933297ff730d967f49e7237c7c567086a83ee9e1f DIST pyyaml-5.3.1.gh.tar.gz 168044 BLAKE2B 2acc62ecc7448925eb340c2555001c8a74bd883d720b992d6deaea890b4eac435e4ae02eb129db3a6778c0be21a231fa9d96ee8ae59a4a39bc49961e5fb0d6ab SHA512 27d97e8493c7660c7c0c471e20a8aa46c85431e4559a98bcbdafc2bd89a67fd04c6f2090e54ff6b206c868b33635ef8be68070a4c25d17a25c97fd5ad3549556 diff --git a/dev-python/pyyaml/pyyaml-3.13.ebuild b/dev-python/pyyaml/pyyaml-3.13.ebuild deleted file mode 100644 index 3207b9eadaab..000000000000 --- a/dev-python/pyyaml/pyyaml-3.13.ebuild +++ /dev/null @@ -1,41 +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,7} pypy3 ) - -inherit distutils-r1 - -MY_P="PyYAML-${PV}" - -DESCRIPTION="YAML parser and emitter for Python" -HOMEPAGE="https://pyyaml.org/wiki/PyYAML https://pypi.org/project/PyYAML/" -SRC_URI="https://pyyaml.org/download/${PN}/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="examples libyaml" - -RDEPEND="libyaml? ( dev-libs/libyaml )" -DEPEND="${RDEPEND} - libyaml? ( $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]' python2_7 'python3*') )" - -S="${WORKDIR}/${MY_P}" - -python_configure_all() { - mydistutilsargs=( $(use_with libyaml) ) -} - -python_test() { - esetup.py test -} - -python_install_all() { - distutils-r1_python_install_all - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF} - fi -} |