Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (39f888e14ba6c082a679c955a5046179d10dd94c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (39f888e14ba6c082a679c955a5046179d10dd94c)
  • Date: Sat, 29 Aug 2009 21:10:07 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

.mailmap | 1
ChangeLog | 1
disk/unionfs-fuse/BUILD | 1
disk/unionfs-fuse/DEPENDS | 7 ++++
disk/unionfs-fuse/DETAILS | 34
++++++++++++++++++++++++
disk/unionfs-fuse/HISTORY | 3 ++
disk/unionfs-fuse/unionfs-fuse-0.23.tar.bz2.sig |binary
7 files changed, 47 insertions(+)

New commits:
commit 39f888e14ba6c082a679c955a5046179d10dd94c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

unionfs-fuse: Added a FUSE userland Union FileSystem

commit c6f30d8fd315ac6721c67985b63cc7cc4bee166c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

.mailmap: Added Martin Spitzbarth's root AT zaphod.local mapping

diff --git a/.mailmap b/.mailmap
index 1568334..60cdbe1 100644
--- a/.mailmap
+++ b/.mailmap
@@ -54,6 +54,7 @@ Lubomir Blaha <lblaha AT sourcemage.org> Lubomir Blaha
<tritol AT trilogic.cz>
Mark Bainter <mbainter AT sourcemage.org> Mark Bainter
<mbainter-smgl AT lostinagoodbook.org>
Mark Bainter <mbainter AT sourcemage.org> Mark Bainter
<mbainter-smgl AT trampledstones.com>
Mark Bainter <mbainter AT sourcemage.org> Mark Bainter <mbainter@baldur.(none)>
+Martin Spitzbarth <m.spitzbarth AT gmx.de> root <root AT zaphod.local>
Matthew Donovan <mdonovan AT sourcemage.org> Matthew Donovan
<kitche AT reddphoenix.com>
Pieter Lenaerts <e-type AT sourcemage.org> Pieter Lenaerts
<pieter@agoraeus.(none)>
Pieter Lenaerts <e-type AT sourcemage.org> Pieter Lenaerts
<pieter@jekyll.(none)>
diff --git a/ChangeLog b/ChangeLog
index e45848e..3b77346 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2009-08-29 Eric Sandall <sandalle AT sourcemage.org>
* x11-libs/libfakekey: Added a X11 virtual keyboard library
* security/fingerprint: Added a Qt GUI based on libfprint
+ * disk/unionfs-fuse: Added a FUSE userland Union FileSystem

2009-08-29 Quentin Rameau <quinq AT sourcemage.org>
* libs/libcap-ng: new spell, library intended to make programming
diff --git a/disk/unionfs-fuse/BUILD b/disk/unionfs-fuse/BUILD
new file mode 100755
index 0000000..e013b8d
--- /dev/null
+++ b/disk/unionfs-fuse/BUILD
@@ -0,0 +1 @@
+cmake_build
diff --git a/disk/unionfs-fuse/DEPENDS b/disk/unionfs-fuse/DEPENDS
new file mode 100755
index 0000000..24a5b0e
--- /dev/null
+++ b/disk/unionfs-fuse/DEPENDS
@@ -0,0 +1,7 @@
+depends cmake &&
+depends fuse &&
+
+optional_depends attr \
+ "-DWITH_XATTR=ON" \
+ "" \
+ "to enable support for extended attributes"
diff --git a/disk/unionfs-fuse/DETAILS b/disk/unionfs-fuse/DETAILS
new file mode 100755
index 0000000..24885ea
--- /dev/null
+++ b/disk/unionfs-fuse/DETAILS
@@ -0,0 +1,34 @@
+ SPELL=unionfs-fuse
+ VERSION=0.23
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+ SOURCE_URL[0]=http://podgorny.cz/$SPELL/releases/$SOURCE
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ LICENSE[0]=BSD
+ WEB_SITE=http://podgorny.cz/moin/UnionFsFuse
+ ENTERED=20090829
+ SHORT="FUSE userland Union FileSystem"
+cat << EOF
+A Stackable Unification File System (UnionFS) in userland via FUSE
+
+A stackable unification file system, which can appear to merge the contents
of
+several directories (branches), while keeping their physical content
separate.
+Unionfs is useful for unified source tree management, merged contents of
split
+CD-ROM, merged separate software package directories, data grids, and more.
+Unionfs allows any mix of read-only and read-write branches, as well as
+insertion and deletion of branches anywhere in the fan-out.
+
+Why choose this:
+ * The filesystem has to be mounted after the roots are mounted when using
the
+ standard module. With unionfs-fuse, you can mount the roots later and
their
+ contents will appear seamlesly
+ * You get caching which speeds things up a lot for free
+ * You get nice stats (optional)
+ * Advanced features like copy-on-write and more
+
+Why NOT choose this:
+ * Compared to kernel-space solution we need lots of useless context
switches
+ which makes kernel-only solution clear speed-winner (well, actually I've
+ made some tests and the hard-drives seem to be the bottleneck so the
speed
+ is fine, too)
+EOF
diff --git a/disk/unionfs-fuse/HISTORY b/disk/unionfs-fuse/HISTORY
new file mode 100644
index 0000000..c5d5735
--- /dev/null
+++ b/disk/unionfs-fuse/HISTORY
@@ -0,0 +1,3 @@
+2009-08-29 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS, DEPENDS, BUILD: Created
+
diff --git a/disk/unionfs-fuse/unionfs-fuse-0.23.tar.bz2.sig
b/disk/unionfs-fuse/unionfs-fuse-0.23.tar.bz2.sig
new file mode 100644
index 0000000..5601b05
Binary files /dev/null and b/disk/unionfs-fuse/unionfs-fuse-0.23.tar.bz2.sig
differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (39f888e14ba6c082a679c955a5046179d10dd94c), Eric Sandall, 08/29/2009

Archive powered by MHonArc 2.6.24.

Top of Page