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

Changelog

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

  * Team upload.
  * New upstream version 2.4.2
  * Bump Standards-Version to 4.6.2 (no changes)

 -- Maytham Alsudany <email address hidden>  Thu, 28 Dec 2023 16:50:22 +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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-hanwen-go-fuse_2.4.2-1.dsc 1.7 KiB aa66086c18b1f85046fa5d7e7edadcbc291bd83e9c888c499c4e9e133eb9e5d6
golang-github-hanwen-go-fuse_2.4.2.orig.tar.gz 193.1 KiB baf5483fad078605dca84836b827a04950cf3560e1ff82688561ce65b73a531f
golang-github-hanwen-go-fuse_2.4.2-1.debian.tar.xz 4.6 KiB ca1d6f8d51ca8d684396d437da8bda986aaf281b254dba626947231ccab920d4

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.