golang-github-hanwen-go-fuse 2.1.0+git20220112.f57e95b-1 source package in Ubuntu

Changelog

golang-github-hanwen-go-fuse (2.1.0+git20220112.f57e95b-1) unstable; urgency=medium

  * Team upload.
  * New upstream snapshot.
  * Standards-Version: 4.6.0.
  * Added myself to Uploaders.

 -- Dmitry Smirnov <email address hidden>  Wed, 04 May 2022 21:34:51 +1000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-hanwen-go-fuse_2.1.0+git20220112.f57e95b-1.dsc 2.4 KiB 338032b262a1bf44163aa5539234501ab87e53b9d7f4fd25f09c3cfde72aeef4
golang-github-hanwen-go-fuse_2.1.0+git20220112.f57e95b.orig.tar.xz 156.2 KiB af3a2f843261318eb7f0ed139cc79972ae3a1d7cac48111e430815e15adb006c
golang-github-hanwen-go-fuse_2.1.0+git20220112.f57e95b-1.debian.tar.xz 4.6 KiB 23de0eb19ad76292c93ea17efc58e199017146532d5abac89cd2546bce31af4c

No changes file available.

Binary packages built by this source

golang-github-hanwen-go-fuse-dev: Native Go bindings for the FUSE kernel module

 This package offers native Go bindings for FUSE, and has several features:
 .
  * High speed: as fast as libfuse using the gc compiler for single
    threaded loads.
 .
  * Supports in-process mounting of different FileSystems onto
    subdirectories of the FUSE mount.
 .
  * Supports 3 interfaces for writing filesystems:
    - PathFileSystem: define filesystems in terms path names.
    - NodeFileSystem: define filesystems in terms of inodes.
    - RawFileSystem: define filesystems in terms of FUSE's raw
      wire protocol.
 .
  * Both NodeFileSystem and PathFileSystem support manipulation of true
    hardlinks.
 .
 The package also includes two fleshed out examples, zipfs and unionfs.