golang-github-spf13-afero 0.0~git20150908.0.6ced24d-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (0.0~git20150908.0.6ced24d-1) unstable; urgency=medium

  * Initial release (Closes: #799643)

 -- Anthony Fok <email address hidden>  Mon, 21 Sep 2015 01:44:35 -0600

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~git20150908.0.6ced24d-1.dsc 2.2 KiB ee9f275d7f96ecb674d169e3d1c8c89eee642cf05332c1cd72b68f0f2d5f2a75
golang-github-spf13-afero_0.0~git20150908.0.6ced24d.orig.tar.xz 11.7 KiB 48ad764cd051b33a5a88a57d07926b9817562f468853c2ffd7a35e0dbcb977b4
golang-github-spf13-afero_0.0~git20150908.0.6ced24d-1.debian.tar.xz 1.8 KiB 4960c4fcc49ec5c1891fec37ccccc8883e559cbe58048b64dd9c984ce0b5e3b6

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.