Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 482078 - sys-fs/fuseiso - typo in help message
Summary: sys-fs/fuseiso - typo in help message
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: All Linux
: Normal trivial (vote)
Assignee: zhaoxiaoqiang007
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-22 12:12 UTC by zhaoxiaoqiang007
Modified: 2013-08-23 11:22 UTC (History)
1 user (show)

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


Attachments
fuseiso-20070708-fix-typo-and-new-ebuild.tar.gz (fuseiso-20070708-fix-typo-and-new-ebuild.tar.gz,934 bytes, application/x-gzip-compressed-tar)
2013-08-22 12:12 UTC, zhaoxiaoqiang007
Details

Note You need to log in before you can comment on or make changes to this bug.
Description zhaoxiaoqiang007 2013-08-22 12:12:25 UTC
Created attachment 356682 [details]
fuseiso-20070708-fix-typo-and-new-ebuild.tar.gz

fuseiso help message give us:

Version: 20070708
Usage: fuseiso [-n] [-p] [-c <iocharset>] [-h] <isofs_image_file> <mount_point> [<FUSE library options>]
Where options are:
    -n                 -- do NOT maintain file $HOME/.mtab.fuseiso
    -p                 -- maintain mount point; 
                          create it if it does not exists and delete it on exit
    -c <iocharset>     -- specify iocharset for Joliet filesystem
    -h                 -- print this screen

Common FUSE library options are:
    -f                 -- run in foreground, do not daemonize
    -d                 -- run in foreground and print debug information
    -s                 -- run single-threaded

Please consult with FUSE ducumentation for more information


In the last sentence "ducumentation" should be "documentation"!

I have fix it in the attachment, which also has some ebuild updates.
Comment 1 Sergey Popov gentoo-dev 2013-08-23 10:21:40 UTC
Next time, please attach diff to previous ebuild and patch as separate files
Comment 2 Sergey Popov gentoo-dev 2013-08-23 10:30:41 UTC
Now about your changes to ebuild:

KEYWORDS should be unstable when you post new revision/version, use ekeyword ~all for that

src_install can be omitted in this case in EAPI >4 if you define DOCS variable like

DOCS=( AUTHORS ChangeLog NEWS README )

(look at default src_install, described in Gentoo Development Guide)

empty IUSE can be omitted in EAPI=5

I have also added epatch_user to src_prepare(just small improvent for users, who want to apply extra patches but do not want to copy ebuild to local overlay)

Other things seems to be OK

+  23 Aug 2013; Sergey Popov <pinkbyte@gentoo.org> +fuseiso-20070708-r1.ebuild,
+  +files/fuseiso-20070708-fix-typo.patch:
+  Revision bump: EAPI 5, epatch_user, fix typo in help message, wrt bug
+  #482078. Thanks to <zhaoxiaoqiang007 AT gmail.com> for discovering this issue
+  and for provided patch
Comment 3 zhaoxiaoqiang007 2013-08-23 11:22:02 UTC
thanks for your advice :-)