golang-github-spf13-afero 1.9.2-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (1.9.2-1) unstable; urgency=medium

  * New upstream version 1.9.2
  * Remove unneeded "${shlibs:Depends}"
  * Bump Standards-Version to 4.6.1 (no change)

 -- Anthony Fok <email address hidden>  Mon, 29 Aug 2022 13:27:53 -0600

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-spf13-afero_1.9.2-1.dsc 2.3 KiB f53a78a8c3374e8310a2f588fa8a172e50d576f35e2b0de45a5fbdfa08d013a8
golang-github-spf13-afero_1.9.2.orig.tar.gz 91.1 KiB b13371718205336ca1a9a2709b863fb2a896decb8669e025e76820535af261f3
golang-github-spf13-afero_1.9.2-1.debian.tar.xz 4.5 KiB 9686d8ba0359479a2be3cf85f9ea477413d318a0d0b8f433491f1f428451e8b2

Available diffs

No changes file available.

Binary packages built by this source

golang-github-spf13-afero-dev: FileSystem Abstraction System for Go

 Afero is a filesystem framework providing a simple, uniform and universal
 API interacting with any filesystem, as an abstraction layer providing
 interfaces, types and methods. Afero has an exceptionally clean interface
 and simple design without needless constructors or initialization methods.
 .
 Afero is also a library providing a base set of interoperable backend
 filesystems that make it easy to work with afero while retaining all the
 power and benefit of the os and ioutil packages.
 .
 Afero provides significant improvements over using the os package alone,
 most notably the ability to create mock and testing filesystems without
 relying on the disk.
 .
 It is suitable for use in any situation where you would consider using
 the OS package as it provides an additional abstraction that makes it
 easy to use a memory-backed filesystem during testing. It also adds
 support for the http filesystem for full interoperability.