1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Source: golang-github-spf13-afero
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper (>= 11~),
dh-golang,
golang-any,
golang-github-pkg-sftp-dev,
golang-golang-x-text-dev (>= 0.3.0~)
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-spf13-afero
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-spf13-afero.git
Homepage: https://github.com/spf13/afero
XS-Go-Import-Path: github.com/spf13/afero
Package: golang-github-spf13-afero-dev
Architecture: all
Depends: golang-github-pkg-sftp-dev,
golang-golang-x-text-dev (>= 0.3.0~),
${misc:Depends},
${shlibs:Depends}
Description: 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.
|