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