golang-github-bmatcuk-doublestar 2.0.4-2 source package in Ubuntu

Changelog

golang-github-bmatcuk-doublestar (2.0.4-2) unstable; urgency=medium

  * Team upload.
  * Update Section to golang
  * Bump debhelper-compat to 13
  * Update Standards-Version to 4.6.0 (no changes)
  * Add patch to skip one failed testcase since Go1.16 (Closes: #997549)

 -- Shengjing Zhu <email address hidden>  Mon, 25 Oct 2021 00:18:13 +0800

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
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-bmatcuk-doublestar_2.0.4-2.dsc 1.7 KiB 88b35fd360b54902c8aec8abb1cb50de4d8515e274032b3b4ae1a225ba711efd
golang-github-bmatcuk-doublestar_2.0.4.orig.tar.gz 10.9 KiB a0af73addd077c5cea527c6f431b2dcb369077301c8cf4cec3315b384a2c45ad
golang-github-bmatcuk-doublestar_2.0.4-2.debian.tar.xz 3.1 KiB c58abdfb2428ea7994da61241e492377c3cdfdd56bc18d27ea236410e59f723c

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.