From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wcmatch/
Date: Mon, 8 Feb 2021 22:36:45 +0000 (UTC) [thread overview]
Message-ID: <1612823151.83663d622626e49f567654483d79bdc104d39b82.mgorny@gentoo> (raw)
commit: 83663d622626e49f567654483d79bdc104d39b82
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 8 22:25:51 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 8 22:25:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83663d62
dev-python/wcmatch: Bump to 8.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/wcmatch/Manifest | 1 +
dev-python/wcmatch/wcmatch-8.1.ebuild | 61 +++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest
index cc7b8279a3a..1260f165fe9 100644
--- a/dev-python/wcmatch/Manifest
+++ b/dev-python/wcmatch/Manifest
@@ -2,3 +2,4 @@ DIST wcmatch-7.1.tar.gz 105744 BLAKE2B 0add1c68025c92ac57d6ea64d82bddb20bace60de
DIST wcmatch-7.2.tar.gz 105087 BLAKE2B a28bd9d02468f3ca83d606ee7f7d5c9b6b8883cf6e0c04b711765aefafce189f7f524a490c6831a739b579be66af5f4b1c7b6373da22e170211e611677c5788f SHA512 6fdc0a3cb6d66b323c509a5ee34c1e8df9a46a93fd1fc0921dfdbc17ac604934fdad3df5e8f253aa6a880bea2e81bb26ec097b9503c920433c5827ea91b327d8
DIST wcmatch-8.0.1.tar.gz 105948 BLAKE2B efa23d89f01b91dfb06885a9dcce94622c76e889fa7a0d8ed839cba1eafac4bd3bd1f9a8ccd95d0c7f3a6d990346de2df2bed05a1ac092b07076c548e61b77f0 SHA512 ae99df5ea8f2d1c9e0e120ba23c36dd7b0b13832e5ee599cf08dee2c93f624bab550d937743a3063fac8cce6ce18f56582380521aa3860f220abdcbfe9461dec
DIST wcmatch-8.0.tar.gz 105910 BLAKE2B 228295a28511ac8c534feed31459dc3e75316febc377473de6d30075886cf33262d6f97931c134b5aaef9109216a4b50383e884e9f3f370849e8a1ac5af5999a SHA512 94bd02e02d544746b678704bd77c1252bd569f1030316e2617f340ee81266dcba398a1a6a15d9460203e681a4825a853cbebee3681d8d338a17ef9ae8d9a03ce
+DIST wcmatch-8.1.tar.gz 111866 BLAKE2B c896c67437e28faa0accc47f2faacedfcd9baf8f3c795f4c4429eb91bc22c0e71668db58979ee81356d5ead73e244ac2d13053ef421b8e212efd3a3feadc4eae SHA512 fdb06c46d6ea83f02f2a4ac8743431d1b7821188a6ad9f845c583707091cbfd1231d1970ba3cea92e993583ed91ee314f04240dcb9285f6bb5624bd4dbae8743
diff --git a/dev-python/wcmatch/wcmatch-8.1.ebuild b/dev-python/wcmatch/wcmatch-8.1.ebuild
new file mode 100644
index 00000000000..fdc416d5245
--- /dev/null
+++ b/dev-python/wcmatch/wcmatch-8.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="
+ ~dev-python/mkdocs_pymdownx_material_extras-1.0.7
+ dev-python/mkdocs-material
+ dev-python/mkdocs-git-revision-date-localized-plugin
+ dev-python/mkdocs-minify-plugin
+ dev-python/pyspelling
+"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Wildcard/glob file name matcher"
+HOMEPAGE="
+ https://github.com/facelessuser/wcmatch/
+ https://pypi.org/project/wcmatch/"
+SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/backrefs-4.1[${PYTHON_USEDEP}]
+ >=dev-python/bracex-2.0[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? (
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-vcs/git
+)"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ # this test makes a really wrong assumption that basename of $HOME
+ # will be a username
+ sed -i -e 's:test_tilde_user:_&:' \
+ tests/test_glob.py || die
+
+ # tests require some files in homedir
+ > "${HOME}"/test1.txt || die
+ > "${HOME}"/test2.txt || die
+
+ # mkdocs-git-revision-date-localized-plugin needs git repo
+ if use doc; then
+ git init || die
+ git config --global user.email "you@example.com" || die
+ git config --global user.name "Your Name" || die
+ git add . || die
+ git commit -m 'init' || die
+ fi
+
+ distutils-r1_python_prepare_all
+}
next reply other threads:[~2021-02-08 22:36 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-08 22:36 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-12 6:33 [gentoo-commits] repo/gentoo:master commit in: dev-python/wcmatch/ Sam James
2024-09-27 6:32 Michał Górny
2024-08-24 13:11 Michał Górny
2024-08-24 9:24 Arthur Zamarin
2024-08-04 2:48 Michał Górny
2024-06-21 19:04 Michał Górny
2024-06-01 8:09 Michał Górny
2024-06-01 7:30 Arthur Zamarin
2024-05-16 3:50 Michał Górny
2024-03-07 17:12 Michał Górny
2024-03-07 17:09 Michał Górny
2024-02-21 4:45 Michał Górny
2023-10-06 18:12 Michał Górny
2023-10-06 17:05 Arthur Zamarin
2023-08-31 13:22 Michał Górny
2023-04-14 19:43 Sam James
2023-04-14 4:04 Sam James
2023-04-09 20:40 Andrew Ammerlaan
2023-02-25 5:47 Arthur Zamarin
2023-01-14 10:00 Arthur Zamarin
2022-10-24 10:24 Michał Górny
2022-10-24 7:19 Joonas Niilola
2022-09-22 10:55 Andrew Ammerlaan
2022-07-02 16:11 Michał Górny
2022-07-02 16:05 Jakov Smolić
2022-05-31 6:18 Michał Górny
2022-05-17 12:20 Andrew Ammerlaan
2022-01-10 12:28 Michał Górny
2022-01-10 11:25 Arthur Zamarin
2021-11-03 6:43 Michał Górny
2021-10-17 9:41 Michał Górny
2021-09-23 15:35 Marek Szuba
2021-07-15 7:38 Agostino Sarubbo
2021-05-22 20:55 Andrew Ammerlaan
2021-05-22 7:58 Michał Górny
2021-05-22 7:58 Michał Górny
2021-03-10 10:38 Michał Górny
2021-02-10 8:52 Michał Górny
2021-01-22 9:55 Michał Górny
2021-01-21 9:12 Michał Górny
2021-01-02 23:18 Michał Górny
2021-01-02 23:18 Michał Górny
2020-12-08 5:53 Joonas Niilola
2020-12-08 5:53 Joonas Niilola
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1612823151.83663d622626e49f567654483d79bdc104d39b82.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox