Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-magic/
Date: Wed, 22 Jun 2022 18:18:20
Message-Id: 1655921880.ef7a90a149b88a0fa5c95f7751d2e7b5d68a7f4e.arthurzam@gentoo
1 commit: ef7a90a149b88a0fa5c95f7751d2e7b5d68a7f4e
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 22 18:18:00 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 22 18:18:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7a90a1
7
8 dev-python/python-magic: drop 0.4.25
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/python-magic/Manifest | 1 -
13 dev-python/python-magic/python-magic-0.4.25.ebuild | 37 ----------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/python-magic/Manifest b/dev-python/python-magic/Manifest
17 index 9a0d172a3fbc..f23f2f3591d5 100644
18 --- a/dev-python/python-magic/Manifest
19 +++ b/dev-python/python-magic/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST python-magic-0.4.25.gh.tar.gz 864121 BLAKE2B ec79112aba9f79a6dd6a3840a1286432806c0cd035d301668fd8177ce36b270ddf1c928f70d51cfacb88cca4d5fb31706cff946b16ed230e8850bca9ebda8c0b SHA512 eb138f7f2d1320f831516fdf21bf7dd404acf070be6093b7ed8697325f60998d886405c5ff348c7e4ad69ecd2ee0ab899afe455db90eda502acdf8b86337f79c
22 DIST python-magic-0.4.26.gh.tar.gz 863618 BLAKE2B 62d85758402d77376e685eb0f8964fd5d9e2a62775c3566d7f2a76284b287b6b17f9f759dbc08404087fc8a524609cefa65ab8e74020c4bd4f49e8ae3a2d604f SHA512 a9f2f8ef9f1aef9e9455b656fabf8e6cf7b1a9df4af2012c7a9426e0740cd6e8952e6957e01710809ab018d008fd531a74e9f66640af1299b61c35ede590b749
23 DIST python-magic-0.4.27.gh.tar.gz 863649 BLAKE2B 4ba22d0f8bd5e70eb37e3b46eba1b885d49682bf45d703ad7966bcc67614427ebe597e3100575f863b7e54421c6de6fc875af24a9d5b49742fe07b361b65f198 SHA512 a476730a5caa9a2a784187f57743d5cec4b1829a6a76d4d1fb4e0112caf5487888961df293bc38074ef1a5d313b0fc4aed4cc99b980f5336e8a907c44a33e84e
24
25 diff --git a/dev-python/python-magic/python-magic-0.4.25.ebuild b/dev-python/python-magic/python-magic-0.4.25.ebuild
26 deleted file mode 100644
27 index c3106b5256b2..000000000000
28 --- a/dev-python/python-magic/python-magic-0.4.25.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{8..11} pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Access the libmagic file type identification library"
42 -HOMEPAGE="
43 - https://github.com/ahupp/python-magic/
44 - https://pypi.org/project/python-magic/
45 -"
46 -SRC_URI="
47 - https://github.com/ahupp/python-magic/archive/${PV}.tar.gz
48 - -> ${P}.gh.tar.gz
49 -"
50 -
51 -LICENSE="BSD-2 MIT"
52 -SLOT="0"
53 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux"
54 -IUSE="test"
55 -RESTRICT="!test? ( test )"
56 -
57 -RDEPEND="
58 - sys-apps/file[-python]
59 -"
60 -BDEPEND="
61 - test? ( sys-apps/file )
62 -"
63 -
64 -python_test() {
65 - local -x LC_ALL=en_US.UTF-8
66 - "${EPYTHON}" test/test.py -v || die "Tests fail with ${EPYTHON}"
67 -}