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/build/
Date: Tue, 29 Nov 2022 08:41:39
Message-Id: 1669710941.30e201eff3e95304287f1222053ef41eb1af8771.mgorny@gentoo
1 commit: 30e201eff3e95304287f1222053ef41eb1af8771
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 08:35:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 08:35:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e201ef
7
8 dev-python/build: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/build/Manifest | 1 -
13 dev-python/build/build-0.8.0.ebuild | 68 -------------------------------------
14 2 files changed, 69 deletions(-)
15
16 diff --git a/dev-python/build/Manifest b/dev-python/build/Manifest
17 index 9e80605bad23..8d0766c082f0 100644
18 --- a/dev-python/build/Manifest
19 +++ b/dev-python/build/Manifest
20 @@ -1,2 +1 @@
21 -DIST build-0.8.0.gh.tar.gz 40020 BLAKE2B 17422c8fe23d4103c78bd9d98702646f0863abfea4ff5df425942eb71aa905d8171567976228681afa90f453131ccce4701128b4f73b61acf4158ea2758c5c9e SHA512 62eaabef36fae592b06c41623f8f36750a029263a65c8fa21ad58b24ef30d4fa8eef7588237a68efb9a9784676f35605a8c9a6b2ed1bc6844c32924f9b5ec377
22 DIST build-0.9.0.gh.tar.gz 41012 BLAKE2B 764338ffab3b6ede66542195271b1b07d1cff71685ae88bcef8042ce0a93a3a95a80a8a2273ac6a1534d8416410c8af77fdd3fe52fdacb47b8a56a9857ba60a2 SHA512 d6ef229c8f3b348cc939af6bd9a0a521a25c3a5702a95da8ee36d7a1ad3f3e22e10b5c96495ff08a1328ab73f03feebc64e89ce165862cb295eff4360c79d642
23
24 diff --git a/dev-python/build/build-0.8.0.ebuild b/dev-python/build/build-0.8.0.ebuild
25 deleted file mode 100644
26 index 0aadcca52b3a..000000000000
27 --- a/dev-python/build/build-0.8.0.ebuild
28 +++ /dev/null
29 @@ -1,68 +0,0 @@
30 -# Copyright 2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 -
38 -inherit distutils-r1 multiprocessing
39 -
40 -DESCRIPTION="A simple, correct PEP517 package builder"
41 -HOMEPAGE="
42 - https://pypi.org/project/build/
43 - https://github.com/pypa/build/
44 -"
45 -SRC_URI="
46 - https://github.com/pypa/build/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
47 -"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
52 -
53 -RDEPEND="
54 - >=dev-python/packaging-19.0[${PYTHON_USEDEP}]
55 - >=dev-python/pep517-0.9.1[${PYTHON_USEDEP}]
56 - $(python_gen_cond_dep '
57 - >=dev-python/tomli-1.0.0[${PYTHON_USEDEP}]
58 - ' 3.8 3.9 3.10)
59 -"
60 -BDEPEND="
61 - test? (
62 - >=dev-python/filelock-3[${PYTHON_USEDEP}]
63 - >=dev-python/pytest-mock-2[${PYTHON_USEDEP}]
64 - >=dev-python/pytest-rerunfailures-9.1[${PYTHON_USEDEP}]
65 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
66 - >=dev-python/setuptools-56.0.0[${PYTHON_USEDEP}]
67 - >=dev-python/wheel-0.36.0[${PYTHON_USEDEP}]
68 - )
69 -"
70 -
71 -distutils_enable_tests pytest
72 -
73 -python_test() {
74 - local EPYTEST_DESELECT=(
75 - # broken by the presence of flit_core
76 - tests/test_util.py::test_wheel_metadata_isolation
77 - # broken by the presence of virtualenv (it changes the error
78 - # messages, sic!)
79 - tests/test_env.py::test_isolated_env_log
80 - tests/test_main.py::test_output_env_subprocess_error
81 - 'tests/test_main.py::test_output[via-sdist-isolation]'
82 - 'tests/test_main.py::test_output[wheel-direct-isolation]'
83 - # Internet
84 - tests/test_main.py::test_build_package
85 - tests/test_main.py::test_build_package_via_sdist
86 - tests/test_self_packaging.py::test_build_sdist
87 - tests/test_self_packaging.py::test_build_wheel
88 - 'tests/test_util.py::test_wheel_metadata[True]'
89 - tests/test_util.py::test_with_get_requires
90 - # we don't really have to test that fallback
91 - # (requires dev-python/toml that we'd like to lastrite eventually)
92 - tests/test_projectbuilder.py::test_toml_instead_of_tomli
93 - )
94 -
95 - epytest -p no:flaky -n "$(makeopts_jobs)" \
96 - -W"ignore:path is deprecated.:DeprecationWarning"
97 -}