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/wcmatch/
Date: Sun, 17 Oct 2021 09:41:28
Message-Id: 1634463659.3b07ea2b98362d6cdf82b7171ebfb4a2a01afc41.mgorny@gentoo
1 commit: 3b07ea2b98362d6cdf82b7171ebfb4a2a01afc41
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 09:40:59 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 09:40:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b07ea2b
7
8 dev-python/wcmatch: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wcmatch/Manifest | 1 -
13 dev-python/wcmatch/wcmatch-8.1.2.ebuild | 61 ---------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest
17 index df2a0153589..f72ef09386d 100644
18 --- a/dev-python/wcmatch/Manifest
19 +++ b/dev-python/wcmatch/Manifest
20 @@ -1,2 +1 @@
21 -DIST wcmatch-8.1.2.tar.gz 112726 BLAKE2B 4d91425f30e81f1ff3449b364b74f242b7393b7a4a162538e57406f9d5cc05d24277d6c0119c40266d4474c9c99919ade8d0450b1999abb39077ffc64f495719 SHA512 f96fc646db334407229ee9885b308eb2b27967d9b4e4245df33641605af678f3edfb54f53c5c8722b946029d39779fcd775299963530036c723cfa860dcfff38
22 DIST wcmatch-8.2.tar.gz 113537 BLAKE2B d1fe53f7d2394af31750c0b98451749201b1adbd8d00a734418afd8e208a9480b913059f78f62016be2fc2109813406c096f8ab60973a716b6ca275377551281 SHA512 d56d868ec0578ae59eb5f39ff17005faed13162141e3ced15c60d8de5f8e8b1a16eaf66e7c73cffdbd288b94db57843112624de8e5b588d26a5e46d4edb72168
23
24 diff --git a/dev-python/wcmatch/wcmatch-8.1.2.ebuild b/dev-python/wcmatch/wcmatch-8.1.2.ebuild
25 deleted file mode 100644
26 index fdc416d5245..00000000000
27 --- a/dev-python/wcmatch/wcmatch-8.1.2.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -DOCS_BUILDER="mkdocs"
38 -DOCS_DEPEND="
39 - ~dev-python/mkdocs_pymdownx_material_extras-1.0.7
40 - dev-python/mkdocs-material
41 - dev-python/mkdocs-git-revision-date-localized-plugin
42 - dev-python/mkdocs-minify-plugin
43 - dev-python/pyspelling
44 -"
45 -
46 -inherit distutils-r1 docs
47 -
48 -DESCRIPTION="Wildcard/glob file name matcher"
49 -HOMEPAGE="
50 - https://github.com/facelessuser/wcmatch/
51 - https://pypi.org/project/wcmatch/"
52 -SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
53 -
54 -LICENSE="MIT"
55 -SLOT="0"
56 -KEYWORDS="~amd64 ~x86"
57 -
58 -RDEPEND="
59 - >=dev-python/backrefs-4.1[${PYTHON_USEDEP}]
60 - >=dev-python/bracex-2.0[${PYTHON_USEDEP}]
61 -"
62 -
63 -BDEPEND="test? (
64 - dev-python/mock[${PYTHON_USEDEP}]
65 - dev-vcs/git
66 -)"
67 -
68 -distutils_enable_tests pytest
69 -
70 -python_prepare_all() {
71 - # this test makes a really wrong assumption that basename of $HOME
72 - # will be a username
73 - sed -i -e 's:test_tilde_user:_&:' \
74 - tests/test_glob.py || die
75 -
76 - # tests require some files in homedir
77 - > "${HOME}"/test1.txt || die
78 - > "${HOME}"/test2.txt || die
79 -
80 - # mkdocs-git-revision-date-localized-plugin needs git repo
81 - if use doc; then
82 - git init || die
83 - git config --global user.email "you@×××××××.com" || die
84 - git config --global user.name "Your Name" || die
85 - git add . || die
86 - git commit -m 'init' || die
87 - fi
88 -
89 - distutils-r1_python_prepare_all
90 -}