golang-github-spf13-afero 0.0~git20151211.0.9d44c30-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (0.0~git20151211.0.9d44c30-1) unstable; urgency=medium

  * New upstream snapshot

 -- Anthony Fok <email address hidden>  Tue, 15 Dec 2015 16:18:26 -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~git20151211.0.9d44c30-1.dsc 2.3 KiB a58f2ee768ebce84d34e54604ce77509b3651cff1c97e80e04a00c48befd911b
golang-github-spf13-afero_0.0~git20151211.0.9d44c30.orig.tar.xz 21.6 KiB 64a18cba4caea05ecebb3968e72ccf15e87743d1c6830912b8db35fdb2ec1afc
golang-github-spf13-afero_0.0~git20151211.0.9d44c30-1.debian.tar.xz 2.0 KiB abd64d0c91aea1674e4bf396eb759afa1aba99ae38454facd1a9d85f95349843

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.