Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-stream/
Date: Sun, 17 Oct 2021 08:58:17
Message-Id: 1634461085.50f094fa429b9d313db07f03bd3d6eb19b76dd42.mgorny@gentoo
1 commit: 50f094fa429b9d313db07f03bd3d6eb19b76dd42
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 08:56:52 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 08:58:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50f094fa
7
8 dev-python/jaraco-stream: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jaraco-stream/Manifest | 1 -
13 .../jaraco-stream/jaraco-stream-3.0.0-r1.ebuild | 48 ----------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/jaraco-stream/Manifest b/dev-python/jaraco-stream/Manifest
17 index b5f7c5c5e68..0e0c030222e 100644
18 --- a/dev-python/jaraco-stream/Manifest
19 +++ b/dev-python/jaraco-stream/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST jaraco.stream-3.0.0.tar.gz 11838 BLAKE2B 9d26ff8f78a3f090d79ccc8cbc41819a8290ebdb7770f56a57938ad9311ca1fd168d633fec78ee102c2c08156c9e0ae6f521dd5cafcb9df22928ba9f3f832734 SHA512 f2ce7e65d9a3bcd81985f45d03f7cd56b2f2939f13a423b8b65714f19eb249493d89cad774460dd08c1345124d3d10f85ce6875b5f7049705f993c0a3146e5d9
22 DIST jaraco.stream-3.0.2.tar.gz 12784 BLAKE2B c9a9a1f940cd29cde67b624b0b7ac2dd426888f71d29f4bc4920eab5a7ba15713e5d5e57504e9f4f69f25d08a8cb2e2a1024c91c89b8c3aa8bb16023d84f33c6 SHA512 fce486caa9f27f3cfe7775858892d2865fe1c1656a8d369ef9321057716f25d7a737abf2a28fe7827efbeba2daa3b7992ec4fd18807751bf1fee6f48b238ab01
23 DIST jaraco.stream-3.0.3.tar.gz 8877 BLAKE2B 85289efe8e04e93cbceb0053f5025cad3d073deeb113806e25ca06fb88a9b082de6805305de85d1f17b77f61d2d0f4683b2b21f670102b03112b8f7a3fdafd91 SHA512 fe50c21b26e734c9c2d0b7cf8a1c8cc8bab80417adf073a4ae213ba4067aa33e2f6c8886aac996971d2f98aacd295d9999aa3ac7dba24dd952cc27d15bef22e2
24
25 diff --git a/dev-python/jaraco-stream/jaraco-stream-3.0.0-r1.ebuild b/dev-python/jaraco-stream/jaraco-stream-3.0.0-r1.ebuild
26 deleted file mode 100644
27 index 173d7a6205e..00000000000
28 --- a/dev-python/jaraco-stream/jaraco-stream-3.0.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( pypy3 python3_{7,8,9} )
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN="${PN/-/.}"
41 -DESCRIPTION="Routines for handling streaming data"
42 -HOMEPAGE="https://github.com/jaraco/jaraco.stream"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -BDEPEND="
52 - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
53 - test? (
54 - >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
55 - dev-python/more-itertools[${PYTHON_USEDEP}]
56 - )
57 -"
58 -
59 -distutils_enable_sphinx docs \
60 - ">=dev-python/jaraco-packaging-3.2" \
61 - ">=dev-python/rst-linker-1.9"
62 -
63 -S="${WORKDIR}/${MY_PN}-${PV}"
64 -
65 -python_test() {
66 - # Skip one test which requires network access
67 - # Override pytest options to skip flake8
68 - PYTHONPATH=. pytest -vv --ignore=jaraco/stream/test_gzip.py \
69 - --override-ini="addopts=--doctest-modules" \
70 - || die "tests failed with ${EPYTHON}"
71 -}
72 -
73 -# https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages#File_collisions_between_pkgutil-style_packages
74 -python_install() {
75 - rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die
76 - # note: eclass may default to --skip-build in the future
77 - distutils-r1_python_install --skip-build
78 -}