golang-github-hanwen-go-fuse 2.4.2-3 source package in Ubuntu

Changelog

golang-github-hanwen-go-fuse (2.4.2-3) unstable; urgency=high

  * Team upload.
  * Fix build failures on mips for dependant packages, Closes: #1069310

 -- Reinhard Tartler <email address hidden>  Wed, 15 May 2024 06:40:12 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-hanwen-go-fuse_2.4.2-3.dsc 2.4 KiB 5f38bc094d11831fb1c197832c1c6e874afc54b1e6681504b628c2f75f8bcb68
golang-github-hanwen-go-fuse_2.4.2.orig.tar.gz 193.1 KiB baf5483fad078605dca84836b827a04950cf3560e1ff82688561ce65b73a531f
golang-github-hanwen-go-fuse_2.4.2-3.debian.tar.xz 5.9 KiB 0a1255c4a9f3901f61d9c1da4a4da4ae5fe478dac9b35b4acbc933cb43970011

Available diffs

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.