golang-github-spf13-afero 0.0~git20170901.0.ee1bd8e-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (0.0~git20170901.0.ee1bd8e-1) unstable; urgency=medium

  * Team upload.
  * New upstream snapshot.
  * debian/control: Update Standards-Version (no changes).

 -- Martín Ferrari <email address hidden>  Wed, 06 Sep 2017 13:14:21 +0000

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

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-spf13-afero_0.0~git20170901.0.ee1bd8e-1.dsc 2.3 KiB eceb6a9a344c7af1b553b8f30d7ca2e8e217d498732604c5432e9eb8d0490580
golang-github-spf13-afero_0.0~git20170901.0.ee1bd8e.orig.tar.gz 41.6 KiB c6e9a5269411263244f322592cdb9e95dc167a0fb61c2b49eb9bd976f120792f
golang-github-spf13-afero_0.0~git20170901.0.ee1bd8e-1.debian.tar.xz 3.0 KiB d33b594c347e503d4dfc2b8ce4c89448181f3dd54e3db065e0c024ec3e2ce82f

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.