golang-github-spf13-afero 0.0~git20160113.0.2ec8b79-1 source package in Ubuntu

Changelog

golang-github-spf13-afero (0.0~git20160113.0.2ec8b79-1) unstable; urgency=medium

  * New upstream snapshot: New SftpFs backend; various fixes and enhancements
  * Allow the use of gccgo on architectures without golang-go
  * Add (Build-)Depends on golang-github-pkg-sftp-dev
  * Update debian/copyright

 -- Anthony Fok <email address hidden>  Fri, 15 Jan 2016 04:16:21 -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~git20160113.0.2ec8b79-1.dsc 2.4 KiB 13da52cf7299ac9b6b2eb15b1cf4f4e8c583b1c0f09395f7285985516a2de398
golang-github-spf13-afero_0.0~git20160113.0.2ec8b79.orig.tar.xz 32.3 KiB 43bad7d39a1d93ba02aabd9d90a019763681e61d84075c1b94646ed241825809
golang-github-spf13-afero_0.0~git20160113.0.2ec8b79-1.debian.tar.xz 2.3 KiB 6ac577ad5c50aea82a46d04db35905cfadbfa1c8562ff4a293ab31d84c5d5fa4

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.