Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 220451

Summary: ebuild for mhddfs
Product: Gentoo Linux Reporter: Babikhin Kirill <mrakobes86>
Component: Current packagesAssignee: Steve Dibb (RETIRED) <beandog>
Status: RESOLVED FIXED    
Severity: normal CC: denilsonsa, laurento.frittella, maciek.joziewicz
Priority: High Keywords: EBUILD
Version: 1.0   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: mhddfs is a file system for unifying several mount points into one.
mhddfs is a file system for unifying several mount points into one.
fresh ebuild
changelog, heh...
fresh ebuild again
...and again
sometimes it's come back
bla-bla-bla.....
ho-ho-ho? Happy new year!!!
fixed for DEPEND=">=sys-fs/fuse-2.7.0"
update :)
mhddfs-0.1.26.ebuild

Description Babikhin Kirill 2008-05-05 20:08:10 UTC
file system for unifying several mount points into one.
 This FUSE-based file system allows mount points (or directories) to be
 combined, simulating a single big volume which can merge several hard
 drives or remote file systems. It is like unionfs, but can choose the
 drive with the most free space to create new files on, and can move
 data transparently between drives.
Comment 1 Babikhin Kirill 2008-05-05 20:12:56 UTC
Created attachment 151981 [details]
mhddfs is a file system for unifying several mount points into one.
Comment 2 Babikhin Kirill 2008-05-05 20:29:42 UTC
Created attachment 151987 [details]
mhddfs is a file system for unifying several mount points into one.
Comment 3 Ingmar Vanhassel (RETIRED) gentoo-dev 2008-05-05 20:30:25 UTC
*** Bug 220447 has been marked as a duplicate of this bug. ***
Comment 4 Babikhin Kirill 2008-06-22 19:41:51 UTC
Created attachment 158037 [details]
fresh ebuild
Comment 5 Babikhin Kirill 2008-07-13 11:23:21 UTC
Created attachment 160253 [details]
changelog, heh...
Comment 6 Babikhin Kirill 2008-07-13 11:25:14 UTC
Created attachment 160255 [details]
fresh ebuild again
Comment 7 Babikhin Kirill 2008-11-19 18:38:14 UTC
Created attachment 172405 [details]
...and again
Comment 8 Babikhin Kirill 2008-11-19 18:42:19 UTC
Created attachment 172406 [details]
sometimes  it's come back
Comment 9 Babikhin Kirill 2009-01-02 10:30:29 UTC
Created attachment 177081 [details]
bla-bla-bla.....
Comment 10 Babikhin Kirill 2009-01-02 10:32:57 UTC
Created attachment 177083 [details]
ho-ho-ho? Happy new year!!!
Comment 11 Alexandr Zeinalov 2009-01-14 13:00:53 UTC
fuse 2.6.0 does not have .utimens in struct fuse_operations (src/main.c:786)

possible DEPEND=">=sys-fs/fuse-2.7.0" required
Comment 12 Babikhin Kirill 2009-01-16 20:26:35 UTC
Comment on attachment 177081 [details]
bla-bla-bla.....

><HTML><HEAD/><BODY><PRE># Copyright 1999-2007 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: /var/cvsroot/gentoo-x86/sys-fs/mhddfs-0.1.16.ebuild,v 1.0 2008/11/19 23:35:38 mrakobes Exp $
>
>inherit eutils
>
>MY_P=${PN}_${PV}
>
>DESCRIPTION="Multi hardsdrive filesystem"
>HOMEPAGE="http://mhddfs.uvw.ru/"
>SRC_URI="http://mhddfs.uvw.ru/downloads/${MY_P}.tar.gz"
>
>RESTRICT="mirror"
>
>LICENSE="GPL-3 or later"
>SLOT="0"
>KEYWORDS="~x86 ~amd64"
>IUSE="suid"
>
>DEPEND=">=sys-fs/fuse-2.7.0"
>
>src_install(){
>    dobin ${PN}
>    doman ${PN}.1
>    dodoc ChangeLog README README.ru.UTF-8
>    use suid &amp;&amp; fperms u+s /usr/bin/${PN}
>}
>
>pkg_postinst() {
>    if use suid; then
>    ewarn
>    ewarn "You have chosen to install ${PN} with the binary setuid root. This"
>    ewarn "means that if there any undetected vulnerabilities in the binary,"
>    ewarn "then local users may be able to gain root access on your machine."
>    ewarn
>    fi
>}</PRE></BODY></HTML>
Comment 13 Babikhin Kirill 2009-01-16 20:31:51 UTC
Created attachment 178723 [details]
fixed for DEPEND=">=sys-fs/fuse-2.7.0"
Comment 14 Babikhin Kirill 2009-03-16 16:36:54 UTC
Created attachment 185199 [details]
update :)

update :)
Comment 15 Babikhin Kirill 2009-04-26 15:51:25 UTC
Comment on attachment 185199 [details]
update :)

><HTML><HEAD/><BODY><PRE># Copyright 1999-2007 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: /var/cvsroot/gentoo-x86/sys-fs/mhddfs-0.1.19.ebuild,v 1.0 2008/11/19 23:35:38 mrakobes Exp $
>
>inherit eutils
>
>MY_P=${PN}_${PV}
>
>DESCRIPTION="Multi hardsdrive filesystem"
>HOMEPAGE="http://mhddfs.uvw.ru/"
>SRC_URI="http://mhddfs.uvw.ru/downloads/${MY_P}.tar.gz"
>
>RESTRICT="mirror"
>
>LICENSE="GPL-3 or later"
>SLOT="0"
>KEYWORDS="~x86 ~amd64"
>IUSE="suid"
>
>DEPEND="&gt;=sys-fs/fuse-2.7.0"
>
>src_install(){
>    dobin ${PN}
>    doman ${PN}.1
>    dodoc ChangeLog README README.ru.UTF-8
>    use suid &amp;&amp; fperms u+s /usr/bin/${PN}
>}
>
>pkg_postinst() {
>    if use suid; then
>    ewarn
>    ewarn "You have chosen to install ${PN} with the binary setuid root. This"
>    ewarn "means that if there any undetected vulnerabilities in the binary,"
>    ewarn "then local users may be able to gain root access on your machine."
>    ewarn
>    fi
>}</PRE></BODY></HTML>
Comment 16 David Voge 2009-12-11 10:46:31 UTC
Created attachment 212682 [details]
mhddfs-0.1.26.ebuild
Comment 17 Steve Dibb (RETIRED) gentoo-dev 2010-04-24 03:22:44 UTC
Added v1.3.0 to CVS.

Thanks for the ebuild. :)  And patience...