Bug 100415 - [NEW PORT] devel/p5-Fuse: Write filesystems in Perl using FUSE
Summary: [NEW PORT] devel/p5-Fuse: Write filesystems in Perl using FUSE
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Cheng-Lung Sung
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-17 02:40 UTC by gslin
Modified: 2006-07-27 05:57 UTC (History)
1 user (show)

See Also:


Attachments
p5-Fuse-0.07.shar (2.71 KB, text/plain)
2006-07-17 02:40 UTC, gslin
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description gslin 2006-07-17 02:40:16 UTC
This lets you implement filesystems in perl, through the FUSE
(Filesystem in USErspace) kernel/lib interface.

FUSE expects you to implement callbacks for the various functions.

In the following definitions, "errno" can be 0 (for a success),
-EINVAL, -ENOENT, -EONFIRE, any integer less than 1 really.

You can import standard error constants by saying something like "use
POSIX qw(EDOTDOT ENOANO);".

Every constant you need (file types, open() flags, error values, etc)
can be imported either from POSIX or from Fcntl, often both. See their
respective documentations, for more information.

WWW:	http://search.cpan.org/dist/Fuse/

Generated with FreeBSD Port Tools 0.77
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2006-07-17 02:40:46 UTC
Responsible Changed
From-To: freebsd-ports-bugs->clsung

clsung@ wants his PRs
Comment 2 Cheng-Lung Sung freebsd_committer freebsd_triage 2006-07-27 05:56:36 UTC
State Changed
From-To: open->closed

Committed (in sysutils/ instead of devel/). Thank you.