public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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: Sat, 22 May 2021 07:58:24 +0000 (UTC)	[thread overview]
Message-ID: <1621670284.07befc1671f4d931ebf9077e6667ec4b66b881a8.mgorny@gentoo> (raw)

commit:     07befc1671f4d931ebf9077e6667ec4b66b881a8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 22 07:23:59 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 22 07:58:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07befc16

dev-python/wcmatch: Bump to 8.2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/wcmatch/Manifest           |  1 +
 dev-python/wcmatch/wcmatch-8.2.ebuild | 57 +++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest
index bbf3b163860..df2a0153589 100644
--- a/dev-python/wcmatch/Manifest
+++ b/dev-python/wcmatch/Manifest
@@ -1 +1,2 @@
 DIST wcmatch-8.1.2.tar.gz 112726 BLAKE2B 4d91425f30e81f1ff3449b364b74f242b7393b7a4a162538e57406f9d5cc05d24277d6c0119c40266d4474c9c99919ade8d0450b1999abb39077ffc64f495719 SHA512 f96fc646db334407229ee9885b308eb2b27967d9b4e4245df33641605af678f3edfb54f53c5c8722b946029d39779fcd775299963530036c723cfa860dcfff38
+DIST wcmatch-8.2.tar.gz 113537 BLAKE2B d1fe53f7d2394af31750c0b98451749201b1adbd8d00a734418afd8e208a9480b913059f78f62016be2fc2109813406c096f8ab60973a716b6ca275377551281 SHA512 d56d868ec0578ae59eb5f39ff17005faed13162141e3ced15c60d8de5f8e8b1a16eaf66e7c73cffdbd288b94db57843112624de8e5b588d26a5e46d4edb72168

diff --git a/dev-python/wcmatch/wcmatch-8.2.ebuild b/dev-python/wcmatch/wcmatch-8.2.ebuild
new file mode 100644
index 00000000000..9ec783dd32b
--- /dev/null
+++ b/dev-python/wcmatch/wcmatch-8.2.ebuild
@@ -0,0 +1,57 @@
+# 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() {
+	# 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
+}


             reply	other threads:[~2021-05-22  7:58 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-22  7:58 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-24 13:11 [gentoo-commits] repo/gentoo:master commit in: dev-python/wcmatch/ 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-03-10 10:38 Michał Górny
2021-02-10  8:52 Michał Górny
2021-02-08 22:36 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=1621670284.07befc1671f4d931ebf9077e6667ec4b66b881a8.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