golang-github-armon-go-radix 1.0.0+git20221118.54df44f-1 source package in Ubuntu

Changelog

golang-github-armon-go-radix (1.0.0+git20221118.54df44f-1) unstable; urgency=medium

  * Set debian/watch to track git HEAD
  * New upstream version 1.0.0+git20221118.54df44f
  * Reorder fields in debian/control and debian/copyright
  * Change Section from devel to golang
  * Bump Standards-Version to 4.6.2 (no change)
  * Bump debhelper build-dependency to debhelper-compat (= 13)"
  * Use dh-sequence-golang instead of dh-golang and --with=golang
  * Invoke dh with --builddirectory=_build
  * Add "Rules-Requires-Root: no" to debian/control
  * Drop -dev package’s unused dependency on ${shlibs:Depends}
  * Add myself to the list of Uploaders

 -- Anthony Fok <email address hidden>  Fri, 23 Feb 2024 17:26:23 -0700

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-armon-go-radix_1.0.0+git20221118.54df44f-1.dsc 2.4 KiB cd2ef65a91f5d4c8f22c010fae9da103e1d1408bb2b68bd73425fc8bf152e47f
golang-github-armon-go-radix_1.0.0+git20221118.54df44f.orig.tar.xz 6.1 KiB 73157a9952dda9fc3a66675d9c333c1fba663123c2278f0da160a0a1a50e9544
golang-github-armon-go-radix_1.0.0+git20221118.54df44f-1.debian.tar.xz 3.0 KiB 54a6f746012b9dc7f9bbd2e156958dfd12dd9c63ae66881207a9d207cc945cbd

No changes file available.

Binary packages built by this source

golang-github-armon-go-radix-dev: Golang implementation of Radix trees

 Provides the radix package that implements a radix tree. The package only
 provides a single Tree implementation, optimized for sparse nodes.
 .
 As a radix tree, it provides the following:
 .
  - O(k) operations. In many cases, this can be faster than a hash table since
    the hash function is an O(k) operation, and hash tables have very poor cache
    locality.
  - Minimum / Maximum value lookups
  - Ordered iteration
 .
 For an immutable variant, see go-immutable-radix.
 .
 This package contains the source.