From a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 4 Jun 2026 16:24:49 -0500 Subject: Adding metadata --- dev-python/wcmatch/Manifest | 1 - dev-python/wcmatch/metadata.xml | 44 ------------------------ dev-python/wcmatch/wcmatch-10.1.ebuild | 61 ---------------------------------- 3 files changed, 106 deletions(-) delete mode 100644 dev-python/wcmatch/Manifest delete mode 100644 dev-python/wcmatch/metadata.xml delete mode 100644 dev-python/wcmatch/wcmatch-10.1.ebuild (limited to 'dev-python/wcmatch') diff --git a/dev-python/wcmatch/Manifest b/dev-python/wcmatch/Manifest deleted file mode 100644 index 41d92fee9aa8..000000000000 --- a/dev-python/wcmatch/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST wcmatch-10.1.gh.tar.gz 120743 BLAKE2B 4cb96a5305f55527e98ec695b1dc66ac89b2609768e7abe1719d4127f14f60ca79f7c9fd8db5bf18e04c411b7db7733525303336d14cc2056851aa9538e46573 SHA512 5f0588752142d4a0bf0230bb19342db653fbd740413a841ac4edb5b5bf3b63733a901949396017ead9788d100a57ca292a69b61463707a47977020b4cdcd768b diff --git a/dev-python/wcmatch/metadata.xml b/dev-python/wcmatch/metadata.xml deleted file mode 100644 index deb9424be8ae..000000000000 --- a/dev-python/wcmatch/metadata.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - python@gentoo.org - Python - - - facelessuser/wcmatch - wcmatch - - -Wildcard Match provides an enhanced fnmatch, glob, and pathlib library in order to provide -file matching and globbing that more closely follows the features found in Bash. In some -ways these libraries are similar to Python's builtin libraries as they provide a similar -interface to match, filter, and glob the file system. But they also include a number of -features found in Bash's globbing such as backslash escaping, brace expansion, extended -glob pattern groups, etc. They also add a number of new useful functions as well, such as -globmatch which functions like fnmatch, but for paths. -Wildcard Match also adds a file search utility called wcmatch that is built on top of fnmatch and globmatch. It was -originally written for Rummage, but split out into this project to be used by other -projects that may find its approach useful. -Bash is used as a guide when making decisions on behavior for fnmatch and glob. Behavior may differ from Bash version to Bash version, -but an attempt is made to keep Wildcard Match up with the latest relevant changes. With -all of this said, there may be a few corner cases in which we've intentionally chosen to -not exactly mirror Bash. If an issue is found where Wildcard Match seems to deviate in an -illogical way, we'd love to hear about it in the issue tracker. -Features -A quick overview of Wildcard Match's -Features: - Provides an interface comparable to Python's builtin in fnamtch, glob, and pathlib. - Allows for a much more configurable experience when matching or globbing with many more features. Adds support for ** in glob. - Adds support for escaping characters with \. - Add support for POSIX style character classes inside sequences: [[:alnum:]], etc. The C locale is used for byte strings and Unicode properties for Unicode strings. - Adds support for brace expansion: a{b,{c,d}} --> ab ac ad. - Adds support for expanding ~ or ~username to the appropriate user path. - Adds support for extended match patterns: @(...), +(...), *(...), ?(...), and !(...). - Adds ability to match path names via the path centric globmatch. - Provides a pathlib variant that uses Wildcard Match's glob library instead of Python's default. - Provides an alternative file crawler called wcmatch. - And more... - - - diff --git a/dev-python/wcmatch/wcmatch-10.1.ebuild b/dev-python/wcmatch/wcmatch-10.1.ebuild deleted file mode 100644 index d76048015ff8..000000000000 --- a/dev-python/wcmatch/wcmatch-10.1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{13..14} ) -DISTUTILS_USE_PEP517=hatchling - -DOCS_BUILDER="mkdocs" -DOCS_DEPEND=" - >=dev-python/mkdocs-pymdownx-material-extras-2.0 - 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/wcmatch/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" - -RDEPEND=" - >=dev-python/bracex-2.1.1[${PYTHON_USEDEP}] -" - -BDEPEND=" - test? ( - 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 "larry@gentoo.org" || die - git config --global user.name "Larry the Cow" || die - git add . || die - git commit -m 'init' || die - fi - - distutils-r1_python_prepare_all -} -- cgit v1.3