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

Changelog

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

  * New upstream release

 -- Thorsten Alteholz <email address hidden>  Sun, 08 Dec 2019 21:36:54 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-bmatcuk-doublestar_1.2.1-1.dsc 2.4 KiB 01331621deb559a0b1bd5a0aba93a717e1b70abd38ba73836618f30ac3f87833
golang-github-bmatcuk-doublestar_1.2.1.orig.tar.gz 9.5 KiB 604cd1d6d8e3a7fba09695428f26e033a6e1d66649a8efae4c5796308d3d1a5b
golang-github-bmatcuk-doublestar_1.2.1-1.debian.tar.xz 2.3 KiB 6e9a9385c622ee1b51a8b9c5a67b97c5aa80ab741055e4adee30ebf94cdaab48

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.