From 884046e4c8328d78fd6f6f4ec24ddc01887f501d Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Thu, 27 Sep 2018 19:27:35 +1000 Subject: [PATCH] tools: Add isoinfo for iso image files. --- README.md | 3 ++- eris/tools.toml | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a6b73b..e512c0c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ then to run: ### Tools -Extensions(93) | Tools(60) +Extensions(94) | Tools(61) ----------:| ----- .* | [contents](http://pygments.org/) • metadata • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log) .py | [python_syntax](https://en.wikipedia.org/wiki/Python_syntax_and_semantics) • [python_unittests](https://docs.python.org/3/library/unittest.html) • [pydoc](https://docs.python.org/3/library/pydoc.html) • [mypy](package) • [python_coverage](http://nedbatchelder.com/code/coverage/) • [pycodestyle](https://pypi.python.org/pypi/pycodestyle) • [pydocstyle](http://pydocstyle.readthedocs.org/) • [pyflakes](https://launchpad.net/pyflakes) • [pylint](http://www.pylint.org/) • [python_gut](https://github.com/ahamilton/eris/blob/master/gut.py) • [python_modulefinder](https://docs.python.org/3/library/modulefinder.html) • [dis](https://docs.python.org/3/library/dis.html) • [python_mccabe](https://github.com/flintwork/mccabe) • [bandit](https://wiki.openstack.org/wiki/Security/Projects/Bandit) @@ -55,3 +55,4 @@ Extensions(93) | Tools(60) .rpm | [rpm](http://rpm.org/) .png .jpg .gif .bmp .tif .tiff .tga | [mediainfo](https://mediaarea.net/MediaInfo) • [pil](http://python-pillow.github.io/) .mkv .mka .mks .ogg .ogm .avi .wav .mpeg .mpg .vob .mp4 .mpgv .mpv .m1v .m2v .mp2 .mp3 .asf .wma .wmv .qt .mov .rm .rmvb .ra .ifo .ac3 .dts .aac .flac .aiff .aifc .au .iff .flv .srt .ssa .ass .sami | [mediainfo](https://mediaarea.net/MediaInfo) +.iso | [isoinfo](https://manpages.debian.org/jessie/genisoimage/isoinfo.1.en.html) diff --git a/eris/tools.toml b/eris/tools.toml index 6555718..e166308 100644 --- a/eris/tools.toml +++ b/eris/tools.toml @@ -41,6 +41,7 @@ tools_for_extensions = [ "qt", "mov", "rm", "rmvb", "ra", "ifo", "ac3", "dts", "aac", "flac", "aiff", "aifc", "au", "iff", "flv", "srt", "ssa", "ass", "sami"], ["mediainfo"]], + [["iso"], ["isoinfo"]], ] [git_blame] @@ -242,3 +243,9 @@ tools_for_extensions = [ url = "mediainfo" command = "mediainfo" success_status = "normal" + +[isoinfo] + dependencies = ["genisoimage"] + url = "https://manpages.debian.org/jessie/genisoimage/isoinfo.1.en.html" + command = "isoinfo -l -i" + success_status = "normal"