golang-github-spf13-afero 1.0.0-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (1.0.0-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 1.0.0
  * Update to Standards-Version 4.1.1
    - Use Priority: optional

 -- Dr. Tobias Quathamer <email address hidden>  Fri, 24 Nov 2017 22:38:05 +0100

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_1.0.0-1.dsc 2.2 KiB 406bdd75775431ce624151d4ef84a580a080df3df7b743d6d08fe9880c40ad6f
golang-github-spf13-afero_1.0.0.orig.tar.xz 36.6 KiB 1af7703c072102ced59ab3fdf50616c2ee8f05d3dd1c97053c0b2a875d934d33
golang-github-spf13-afero_1.0.0-1.debian.tar.xz 3.0 KiB 03d634e493f0edd08df76b9bd8b11f867bd0d35962ff5a1083672b3655636769

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.