golang-github-spf13-afero 0.0~git20151215.0.36b075c-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (0.0~git20151215.0.36b075c-1) unstable; urgency=medium

  * New upstream snapshot

 -- Anthony Fok <email address hidden>  Thu, 17 Dec 2015 17:09:33 -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~git20151215.0.36b075c-1.dsc 2.3 KiB 28a45fe2e07003361c643c7113998debc003a3a062937ee30761d40d133db89c
golang-github-spf13-afero_0.0~git20151215.0.36b075c.orig.tar.xz 22.8 KiB 70ede65e6a369ed531d97bae769a0c411275bef7770e3d6c7d3a1091957cd598
golang-github-spf13-afero_0.0~git20151215.0.36b075c-1.debian.tar.xz 2.0 KiB 36d4c48b757fe725edf2b391c07e245b0bfb6601ff1f4686e3e010f426bf9afc

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.