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

Changelog

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

  * Team upload.

  [ Paul Tagliamonte ]
  * Use a secure transport for the Vcs-Git and Vcs-Browser URL

  [ Roger Shimizu ]
  * debian/patches:
    - Add patch to fix FTBFS on i386 platform (Closes: #860703).
  * debian/control:
    - Use cgit URL for Vcs-Browser.

 -- Roger Shimizu <email address hidden>  Wed, 03 May 2017 00:28:03 +0900

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

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-jacobsa-fuse_0.0~git20150806.0.9a7512a-2.dsc 2.5 KiB dd049d8ab13dbbd5dc24e5314f15b36f0fca68fe00fe5ebcd181b8782f045470
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-2.debian.tar.xz 2.8 KiB 4cbd7f0b0798b80963025ec33d34651be35ddd36aa78d4ef3d1be4f63fd30161

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.