golang-github-ryanuber-go-glob 1.0.0-2 source package in Ubuntu

Changelog

golang-github-ryanuber-go-glob (1.0.0-2) unstable; urgency=medium

  * d/control: bump standards

 -- Dawid Dziurla <email address hidden>  Sun, 04 Aug 2019 12:20:04 +0200

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

Builds

Eoan: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-ryanuber-go-glob_1.0.0-2.dsc 2.2 KiB 7f67a1d14db826855698587a35d10f12f0b299a97777392e6ec64dca464de3ae
golang-github-ryanuber-go-glob_1.0.0.orig.tar.gz 2.9 KiB 6d18c1151e3a71f31cde17b0f7d7135e76820294771350ab55458e98be846890
golang-github-ryanuber-go-glob_1.0.0-2.debian.tar.xz 2.2 KiB 59f552c2f5f730dad34cda429570ce823fc649ba013534873019115a87c937c7

Available diffs

No changes file available.

Binary packages built by this source

golang-github-ryanuber-go-glob-dev: Basic string globs in golang

 Go-glob is a single-function
 library implementing basic string glob support.
 .
 Globs are an extremely user-friendly way of supporting string matching
 without requiring knowledge of regular expressions or Go's particular
 regex engine. Most people understand that if you put a * character
 somewhere in a string, it is treated as a wildcard. Surprisingly,
 this functionality isn't found in Go's standard library, except for
 path.Match, which is intended to be used while comparing paths (not
 arbitrary strings), and contains specialized logic for this use case.
 A better solution might be a POSIX basic (non-ERE) regular expression
 engine for Go, which doesn't exist currently.