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/pyelftools/
Date: Sun, 11 Sep 2022 05:29:15
Message-Id: 1662874147.b4ec5140958fcffd7576be3a6cccca2d7984e011.mgorny@gentoo
1 commit: b4ec5140958fcffd7576be3a6cccca2d7984e011
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 11 05:28:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 11 05:29:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ec5140
7
8 dev-python/pyelftools: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyelftools/Manifest | 1 -
13 dev-python/pyelftools/pyelftools-0.28.ebuild | 34 ----------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/pyelftools/Manifest b/dev-python/pyelftools/Manifest
17 index fb4ef060c6b5..693998d18175 100644
18 --- a/dev-python/pyelftools/Manifest
19 +++ b/dev-python/pyelftools/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyelftools-0.28.gh.tar.gz 5086001 BLAKE2B 87dad42d87b9d3de2382e21d6f7115fb24e420e262735d4bd73c4e3a325d10b69c6eab5d73ff999811633d6a024c22c15ad65be637339f0c609378d54926f747 SHA512 005163a53fe12baad0998d60d531e3ce4201236b7b042e3c28d7e68f9c40586f94a2576be6918be991a3bf464f2ca55700c0475a6e8c7b05b4342a6f5bbf3354
22 DIST pyelftools-0.29.gh.tar.gz 14176561 BLAKE2B 441260492f8cd512445249700a79f1d823ef96f6213ab9183e17160b76efe51493c28d2ae8ecea79acf45e78987b4c24940441e9bc0a3deaeda0ee4fb72b58c3 SHA512 0eba3b029a734abe9f8df92cd58bc967f10bf9f61c3a419bdbc5e637200844dddd947bcb485e8ebbe2eeaa7f7e91efc6500316af51aace1db051a658cf61153e
23
24 diff --git a/dev-python/pyelftools/pyelftools-0.28.ebuild b/dev-python/pyelftools/pyelftools-0.28.ebuild
25 deleted file mode 100644
26 index cc04c1577d01..000000000000
27 --- a/dev-python/pyelftools/pyelftools-0.28.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-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} )
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="pure-Python library for analyzing ELF files and DWARF debugging information"
40 -HOMEPAGE="https://pypi.org/project/pyelftools/
41 - https://github.com/eliben/pyelftools"
42 -# PyPI tarball lacks some test files
43 -SRC_URI="
44 - https://github.com/eliben/pyelftools/archive/v${PV}.tar.gz
45 - -> ${P}.gh.tar.gz"
46 -
47 -LICENSE="public-domain"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
50 -IUSE="examples"
51 -
52 -python_test() {
53 - # readelf_tests often fails due to host `readelf` changing output format
54 - local t
55 - for t in all_unittests examples_test ; do
56 - "${EPYTHON}" ./test/run_${t}.py || die "Tests fail with ${EPYTHON}"
57 - done
58 -}
59 -
60 -python_install_all() {
61 - use examples && dodoc -r examples
62 - distutils-r1_python_install_all
63 -}