File: control

package info (click to toggle)
golang-github-jacobsa-fuse 0.0~git20150806.0.9a7512a-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 584 kB
  • ctags: 919
  • sloc: asm: 11; makefile: 5
file content (59 lines) | stat: -rw-r--r-- 2,766 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Source: golang-github-jacobsa-fuse
Section: devel
Priority: extra
Maintainer: pkg-go <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Michael Stapelberg <stapelberg@debian.org>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go,
               golang-golang-x-net-dev | golang-go.net-dev (>= 0.0+git20150226.3d87fd6),
               golang-golang-x-sys-dev,
               golang-github-jacobsa-bazilfuse-dev,
               golang-github-jacobsa-oglematchers-dev,
               golang-github-jacobsa-ogletest-dev,
               golang-github-jacobsa-reqtrace-dev,
               golang-github-jacobsa-syncutil-dev,
               golang-github-jacobsa-timeutil-dev
Standards-Version: 3.9.6
Homepage: https://github.com/jacobsa/fuse
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-jacobsa-fuse.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-jacobsa-fuse.git

Package: golang-github-jacobsa-fuse-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-go,
         golang-golang-x-net-dev | golang-go.net-dev (>= 0.0+git20150226.3d87fd6),
         golang-golang-x-sys-dev,
         golang-github-jacobsa-bazilfuse-dev,
         golang-github-jacobsa-oglematchers-dev,
         golang-github-jacobsa-ogletest-dev,
         golang-github-jacobsa-reqtrace-dev,
         golang-github-jacobsa-syncutil-dev,
         golang-github-jacobsa-timeutil-dev
Built-Using: ${misc:Built-Using}
Description: writing and mounting user-space file systems from Go
 This package allows for writing and mounting user-space file systems from Go.
 It is a wrapper around bazil.org/fuse, which does the heavy lifting. It does
 not make use of the bazil.org/fuse/fs sub-package, which allows for something
 like an object-orientend representation of files and directories, and contains
 a decent amount of canned behavior.
 .
 The chief improvements and/or differences from the bazil.org packages are:
 .
  * No surprises in the form of magic/default behaviors. You must provide an
    implementation for every method in the interface. Embed a
    fuseutil.NotImplementedFileSystem struct to have default implementations
    that return ENOSYS.
 .
  * Every method, struct, and field is thoroughly documented. This may help you
    get your bearings in the world of FUSE, the Linux VFS, traditional file
    system implementations, etc., all of which tend to be very poorly
    documented.
 .
  * Support for arbitrary offsets in directory entries returned by ReadDir.
    (The bazil.org package assumes that offsets must be counts of bytes.)
 .
 The very large disadvantage over using the bazil.org packages is that many
 features have not yet been exposed.