golang-github-jacobsa-fuse 0.0~git20150806.0.9a7512a-4 source package in Ubuntu

Changelog

golang-github-jacobsa-fuse (0.0~git20150806.0.9a7512a-4) unstable; urgency=medium

  [ Martín Ferrari ]
  * debian/rules: Replaced DH_GOPKG with XS-Go-Import-Path.

 -- Michael Stapelberg <email address hidden>  Sat, 10 Feb 2018 11:22:15 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-jacobsa-fuse_0.0~git20150806.0.9a7512a-4.dsc 2.6 KiB ff0c31382242822112fc5418d8fd965b59342f00f328148c4674c061961628a4
golang-github-jacobsa-fuse_0.0~git20150806.0.9a7512a.orig.tar.bz2 61.9 KiB a047b8bee8d957a0388d39ec5f65e2498e420ca7d54819985aa1996525fa04b9
golang-github-jacobsa-fuse_0.0~git20150806.0.9a7512a-4.debian.tar.xz 3.0 KiB b034f699be8ac0942d2ce4c76a87ad83f8bba291285d2d259035dd836f2dafbd

No changes file available.

Binary packages built by this source

golang-github-jacobsa-fuse-dev: 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.