golang-github-spf13-afero 0.0~git20151126.0.12fcb8c-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (0.0~git20151126.0.12fcb8c-1) unstable; urgency=medium

  * New upstream version 0.0~git20151126.0.12fcb8c

 -- Anthony Fok <email address hidden>  Sat, 28 Nov 2015 21:51:20 -0700

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

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-spf13-afero_0.0~git20151126.0.12fcb8c-1.dsc 2.2 KiB d2a7cfc307e7e828183cb50120fd1024e8a60b220af2cb7ab2bb3b6dc4a15e42
golang-github-spf13-afero_0.0~git20151126.0.12fcb8c.orig.tar.xz 13.7 KiB ab1eac64d8d12baa5f9c540efc2d11d37305700713a78ff7b602624714c5f75d
golang-github-spf13-afero_0.0~git20151126.0.12fcb8c-1.debian.tar.xz 1.9 KiB fe4d3d5c5aafd1ef9440be2fdb2a4b165acd5c2e837d2bbd13a626e7e2357950

No changes file available.

Binary packages built by this source

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

 Package Afero provides types and methods for interacting with the filesystem
 as an abstraction layer for the Go Programming Language.
 .
 It provides a few implementations that are largely interoperable. One that
 uses the operating system filesystem, one that uses memory to store files
 (cross platform) and an interface that should be implemented if you want
 to provide your own filesystem.
 .
 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 file system during testing. It also adds
 support for the http filesystem for full interoperability.
 .
 Afero has an exceptionally clean interface and simple design without
 needless constructors or initialization methods.