golang-github-gorilla-mux 1.7.4-1 source package in Ubuntu

Changelog

golang-github-gorilla-mux (1.7.4-1) unstable; urgency=medium

  * Team upload.
  [ Debian Janitor ]
  * Wrap long lines in changelog entries: 1.1-3.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Fix day-of-week for changelog entry 0.0~git20130701-1.

  [ Reinhard Tartler ]
  * New upstream version 1.7.4

 -- Reinhard Tartler <email address hidden>  Sat, 11 Jul 2020 09:58:58 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-mux_1.7.4-1.dsc 2.4 KiB f817fe2ea94ff7f24f3573e65ce5e6e3f7d5f69a0fa85760cf25594fec5957cb
golang-github-gorilla-mux_1.7.4.orig.tar.gz 44.4 KiB 56ea3c39b8c19360357970a4dcd717485f36ac7da9c6b5a107bd4b80848c4aee
golang-github-gorilla-mux_1.7.4-1.debian.tar.xz 4.3 KiB 74da7af24a6ae445181d254009a0cfe9b3de1d24cabd737eab70d159be5f2bb8

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gorilla-mux-dev: powerful URL router and dispatcher for golang

 Package gorilla/mux implements a request router and dispatcher.
 .
 The name mux stands for "HTTP request multiplexer". Like the standard
 http.ServeMux, mux.Router matches incoming requests against a list of
 registered routes and calls a handler for the route that matches the URL
 or other conditions. The main features are:
 .
  * Requests can be matched based on URL host, path, path prefix, schemes,
    header and query values, HTTP methods or using custom matchers.
  * URL hosts and paths can have variables with an optional regular expression.
  * Registered URLs can be built, or "reversed", which helps maintaining
    references to resources.
  * Routes can be used as subrouters: nested routes are only tested if the
    parent route matches. This is useful to define groups of routes that share
    common conditions like a host, a path prefix or other repeated attributes.
    As a bonus, this optimizes request matching.
  * It implements the http.Handler interface so it is compatible with the
    standard http.ServeMux.