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

Changelog

golang-github-hanwen-go-fuse (2.4.2-2) unstable; urgency=medium

  * Team Upload.
  * Backport upstream patch to fix FTBFS on i386 (Closes: #1061659)

 -- Nilesh Patra <email address hidden>  Fri, 09 Feb 2024 23:30:50 +0530

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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-hanwen-go-fuse_2.4.2-2.dsc 1.7 KiB 76e5c22ef9ebc0a93b787d02885bcf63992d39d74124cde962a1c150b710a5a5
golang-github-hanwen-go-fuse_2.4.2.orig.tar.gz 193.1 KiB baf5483fad078605dca84836b827a04950cf3560e1ff82688561ce65b73a531f
golang-github-hanwen-go-fuse_2.4.2-2.debian.tar.xz 5.5 KiB b43ce3cf7e0dc3ab6edccfb40bc6626d9e52c5ec1db4243e046c70f4d406904f

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.