File: control

package info (click to toggle)
golang-github-spf13-afero 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 444 kB
  • sloc: makefile: 4
file content (44 lines) | stat: -rw-r--r-- 2,045 bytes parent folder | download
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
40
41
42
43
44
Source: golang-github-spf13-afero
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-pkg-sftp-dev (>= 1.10.1),
               golang-golang-x-crypto-dev (>= 1:0.0~git20190820.60c769a),
               golang-golang-x-text-dev (>= 0.3.3)
Standards-Version: 4.5.1
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
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/spf13/afero

Package: golang-github-spf13-afero-dev
Architecture: all
Depends: golang-github-pkg-sftp-dev (>= 1.10.1),
         golang-golang-x-crypto-dev (>= 1:0.0~git20190820.60c769a),
         golang-golang-x-text-dev (>= 0.3.3),
         ${misc:Depends},
         ${shlibs:Depends}
Description: FileSystem Abstraction System for Go
 Afero is a filesystem framework providing a simple, uniform and universal
 API interacting with any filesystem, as an abstraction layer providing
 interfaces, types and methods. Afero has an exceptionally clean interface
 and simple design without needless constructors or initialization methods.
 .
 Afero is also a library providing a base set of interoperable backend
 filesystems that make it easy to work with afero while retaining all the
 power and benefit of the os and ioutil packages.
 .
 Afero provides significant improvements over using the os package alone,
 most notably the ability to create mock and testing filesystems without
 relying on the disk.
 .
 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 filesystem during testing.  It also adds
 support for the http filesystem for full interoperability.