summaryrefslogtreecommitdiff
path: root/dev-python/wcmatch
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-python/wcmatch
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-python/wcmatch')
-rw-r--r--dev-python/wcmatch/Manifest1
-rw-r--r--dev-python/wcmatch/metadata.xml41
-rw-r--r--dev-python/wcmatch/wcmatch-10.1.ebuild61
3 files changed, 0 insertions, 103 deletions
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 c7e287c37036..000000000000
--- a/dev-python/wcmatch/metadata.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription lang="en">
-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}} --&gt; 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...
- </longdescription>
- <stabilize-allarches />
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
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
-}