golang-github-bmatcuk-doublestar 4.6.1-1 source package in Ubuntu

Changelog

golang-github-bmatcuk-doublestar (4.6.1-1) unstable; urgency=medium

  * Team Upload.
  * New upstream version 4.6.1
  * Drop all patches, fixed upstream
  * Fixup permissions on nopermission directory before pruning tests
  * Bump Standards-Version to 4.6.2 (no changes needed)
  * Add "Rules-Requires-Root: no"
  * No reverse-dependencies in testing.

 -- Nilesh Patra <email address hidden>  Sun, 05 Nov 2023 04:06:44 +0530

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-bmatcuk-doublestar_4.6.1-1.dsc 1.7 KiB 0c073bae7ac6527e644aa6c54df9a09e6825588f6b5fc7d885b67f3d503367ac
golang-github-bmatcuk-doublestar_4.6.1.orig.tar.gz 25.8 KiB 764f5d042f5c9224bf9ecf3e29a5b3a513f71108a4c1ac05f3b08c8eef971a93
golang-github-bmatcuk-doublestar_4.6.1-1.debian.tar.xz 3.0 KiB b7b9428a142359a07725967ef5f7fda6db374b722cbb011be8ee030adc083af5

Available diffs

No changes file available.

Binary packages built by this source

golang-github-bmatcuk-doublestar-dev: support for double star matches in golang's path.Match and filepath.Glob

 This package contains a Golang implementation of path pattern matching
 and globbing with support for "doublestar" (aka globstar: **) patterns.
 .
 doublestar patterns match files and directories recursively. For example,
 if you had the following directory structure:
 .
 grandparent `-- parent
     |-- child1 `-- child2
 .
 You could find the children with patterns such as: **/child*,
 grandparent/**/child?, **/parent/*, or even just ** by itself (which
 will return all files and directories recursively).
 .
 Bash's globstar is doublestar's inspiration and, as such, works similarly.
 Note that the doublestar must appear as a path component by itself. A
 pattern such as /path** is invalid and will be treated the same as
 /path*, but /path*/** should achieve the desired result. Additionally,
 /path/** will match all directories and files under the path directory,
 but /path/**/ will only match directories.