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

Changelog

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

  [ Martín Ferrari ]
  * Team upload.
  * Automated cme updates.
  * Stop using pristine-tar.

  [ Dr. Tobias Quathamer ]
  * Use debhelper v11
  * New upstream version 1.0.2

 -- Dr. Tobias Quathamer <email address hidden>  Mon, 05 Feb 2018 12:44:43 +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.2-1.dsc 2.2 KiB 8661fe1aa7c491f69302cc2f7a931beb7285553a13f4e7a34b0cb4aa28e750e1
golang-github-spf13-afero_1.0.2.orig.tar.xz 36.3 KiB 5269df74aa03fc686cfd19253272514bdbe01f90e06d974fdc5ac9e2792c021e
golang-github-spf13-afero_1.0.2-1.debian.tar.xz 3.1 KiB 2e2175390ab7c5533075df913cfb1bfbf6fbfdca467d1fb10c5a183003882e57

Available diffs

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.