Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 190000 - app-arch/archivemount (new ebuild)
Summary: app-arch/archivemount (new ebuild)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement with 2 votes (vote)
Assignee: MT
URL:
Whiteboard: sunrise suggested
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2007-08-24 06:06 UTC by jieryn
Modified: 2013-11-12 09:00 UTC (History)
5 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
emerge --info (einfo,8.25 KB, text/plain)
2007-08-24 06:06 UTC, jieryn
Details
metadata.xml (metadata.xml,449 bytes, application/xml)
2007-08-24 06:07 UTC, jieryn
Details
archivemount-0.5.3.ebuild (archivemount-0.5.3.ebuild,464 bytes, text/plain)
2007-08-24 06:08 UTC, jieryn
Details
app-arch/archivemount/{archivemount-0.5.3.ebuild,metadata.xml} (archivemount-0.5.3.diff,1.51 KB, patch)
2007-08-24 06:11 UTC, jieryn
Details | Diff
archivemount-0.6.0.ebuild (archivemount-0.6.0.ebuild,723 bytes, text/plain)
2009-03-11 10:20 UTC, Ryoichiro Suzuki
Details
app-arch/archivemmount (archivemount-0.6.0.ebuild,743 bytes, text/plain)
2009-10-23 12:55 UTC, MT
Details
metadata.xml (metadata.xml,599 bytes, text/plain)
2009-10-23 12:57 UTC, MT
Details
app-arch/archivemmount (archivemount-0.6.0.ebuild,729 bytes, text/plain)
2009-10-23 14:52 UTC, MT
Details
app-arch/archivemount-0.6.1.ebuild (archivemount-0.6.1.ebuild,729 bytes, text/plain)
2010-10-29 16:42 UTC, MT
Details

Note You need to log in before you can comment on or make changes to this bug.
Description jieryn 2007-08-24 06:06:10 UTC
archivemount is an exploiter of app-arch/libarchive and sys-fs/fuse which lets a user seamlessly mount archive files as regular file systems. It is quite a handy little tool, please consider it for inclusion into the main Gentoo Portage tree. Thanks!

Reproducible: Always
Comment 1 jieryn 2007-08-24 06:06:39 UTC
Created attachment 129033 [details]
emerge --info
Comment 2 jieryn 2007-08-24 06:07:34 UTC
Created attachment 129035 [details]
metadata.xml
Comment 3 jieryn 2007-08-24 06:08:15 UTC
Created attachment 129037 [details]
archivemount-0.5.3.ebuild
Comment 4 jieryn 2007-08-24 06:08:45 UTC
Tested on my ~amd64 and ~x86 boxes, working well.
Comment 5 jieryn 2007-08-24 06:11:27 UTC
Created attachment 129039 [details, diff]
app-arch/archivemount/{archivemount-0.5.3.ebuild,metadata.xml}

Or, optionally, as a patch to the Portage tree. Sorry, I'm not sure which is easier for you..
Comment 6 Ryoichiro Suzuki 2009-03-11 10:20:30 UTC
Created attachment 184666 [details]
archivemount-0.6.0.ebuild

new version released.
Comment 7 Jeremy Olexa (darkside) (RETIRED) archtester gentoo-dev Security 2009-04-13 16:15:45 UTC
(this is an automated message based on filtering criteria that matched this bug)
'EBUILD' is in the KEYWORDS which should mean that there is a ebuild attached 
to this bug.
This bug is assigned to maintainer-wanted which means that it is not in the 
main tree.
Heuristics show that no Gentoo developer has commented on your ebuild.

Hello, The Gentoo Team would like to firstly thank you for your ebuild 
submission. We also apologize for not being able to accommodate you in a timely
manner. There are simply too many new packages.

Allow me to use this opportunity to introduce you to Gentoo Sunrise. The 
sunrise overlay[1] is a overlay for Gentoo which we allow trusted users to 
commit to and all users can have ebuilds reviewed by Gentoo devs for entry 
into the overlay. So, the sunrise team is suggesting that you look into this 
and submit your ebuild to the overlay where even *you* can commit to. =)

Because this is a mass message, we are also asking you to be patient with us. 
We anticipate a large number of requests in a short time. 

Thanks,
On behalf of the Gentoo Sunrise Team,
Jeremy.

[1]: http://www.gentoo.org/proj/en/sunrise/
[2]: http://overlays.gentoo.org/proj/sunrise/wiki/SunriseFaq
Comment 8 Hugo Mildenberger 2009-04-14 11:46:20 UTC
(In reply to comment #6)
Tested version 0.6.0 on amd64, works well
Comment 9 MT 2009-10-23 12:55:35 UTC
Created attachment 207990 [details]
app-arch/archivemmount

an improved ebuild for app-arch/archivemount-0.6.0; here the changelog:

- added EAPI2 support;
- fixed ebuild phase 'src_install' using 'make' instead of the dobin call (so the ebuild can installs the man pages too);


hope to be useful.
Mauro Toffanin
Comment 10 MT 2009-10-23 12:57:04 UTC
Created attachment 207991 [details]
metadata.xml
Comment 11 Diego Elio Pettenò (RETIRED) gentoo-dev 2009-10-23 13:20:15 UTC
Why the autoconf dependency?
Comment 12 MT 2009-10-23 14:52:10 UTC
Created attachment 208001 [details]
app-arch/archivemmount

fixed autoconf useless dependency and keywords; thank you Diego for reporting.
Comment 13 MT 2010-10-29 16:42:16 UTC
Created attachment 252501 [details]
app-arch/archivemount-0.6.1.ebuild
Comment 14 Hugo Mildenberger 2010-12-01 20:52:52 UTC
The man page is missing. Please consider to add "doman archivemount.1" to src_install(). Besides that, valgrind spotted an off-by-one error in line 270 of archivemount.c. This probem may become manifest if the condition last != root is met in line 276. 

 269    init_node( tempnode );
 270    if( ( tempnode->name = malloc(
 271            strlen( last->name ) + namlen + 1 ) ) == NULL ) {
 272            log( "Out of memory" );
 273     return -ENOMEM;
 274    }
 275    if( last != root ) {
 276     sprintf( tempnode->name, "%s/%s", last->name, nam );
 277    } else {
 278     sprintf( tempnode->name, "/%s", nam );
 279    }
Comment 15 MT 2010-12-02 08:29:06 UTC
(In reply to comment #14)
> The man page is missing. Please consider to add "doman archivemount.1" to
> src_install().

I think you have picked up the wrong ebuild as here the man pages are installed correctly:

$ qlist archivemount
/usr/bin/archivemount
/usr/share/man/man1/archivemount.1.bz2
/usr/share/doc/archivemount-0.6.1/CHANGELOG.bz2
/usr/share/doc/archivemount-0.6.1/README.bz2

(In reply to comment #14)
> Besides that, valgrind spotted an off-by-one error in line 270
> of archivemount.c. This probem may become manifest if the condition last !=
> root is met in line 276.

for bugs of the software you need to report them upstream; thank you for feedbacks.
Comment 16 Hugo Mildenberger 2010-12-02 09:48:24 UTC
(In reply to comment #15)
> I think you have picked up the wrong ebuild as here the man pages are installed correctly:

True, I was still using version 0.6.0, downloaded some time ago.
Comment 17 dE 2013-01-11 10:18:38 UTC
This package cdepends on pkgconfig.
Comment 18 Piotr Szymaniak 2013-04-30 16:30:04 UTC
So what's with the IN_PROGRESS here?
Comment 19 Tim Harder gentoo-dev 2013-11-12 09:00:19 UTC
Added 0.8.3 to the tree.