tools: Added rpm for rpm package archives.
This commit is contained in:
parent
3609b31b29
commit
64383227b0
2 changed files with 9 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ then to run:
|
||||||
|
|
||||||
### Tools
|
### Tools
|
||||||
|
|
||||||
Extensions(88) | Tools(56)
|
Extensions(89) | Tools(57)
|
||||||
---------- | -----
|
---------- | -----
|
||||||
.* | [contents](http://pygments.org/) • metadata • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log)
|
.* | [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](http://www.mypy-lang.org/) • [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/vigil/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)
|
.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](http://www.mypy-lang.org/) • [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/vigil/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)
|
||||||
|
|
@ -43,6 +43,7 @@ Extensions(88) | Tools(56)
|
||||||
.7z | [7z](https://en.wikipedia.org/wiki/7z)
|
.7z | [7z](https://en.wikipedia.org/wiki/7z)
|
||||||
.xz | [unxz](http://tukaani.org/xz/)
|
.xz | [unxz](http://tukaani.org/xz/)
|
||||||
.deb | [dpkg_contents](https://wiki.debian.org/Teams/Dpkg) • [dpkg_info](https://wiki.debian.org/Teams/Dpkg)
|
.deb | [dpkg_contents](https://wiki.debian.org/Teams/Dpkg) • [dpkg_info](https://wiki.debian.org/Teams/Dpkg)
|
||||||
|
.rpm | [rpm](http://rpm.org/)
|
||||||
.a | [ar](https://en.wikipedia.org/wiki/Ar_(Unix)) • [nm](https://linux.die.net/man/1/nm)
|
.a | [ar](https://en.wikipedia.org/wiki/Ar_(Unix)) • [nm](https://linux.die.net/man/1/nm)
|
||||||
.so | [nm](https://linux.die.net/man/1/nm)
|
.so | [nm](https://linux.die.net/man/1/nm)
|
||||||
.png .jpg .gif .bmp .ppm .tiff .tga | [identify](http://www.imagemagick.org/script/identify.php) • [pil](http://python-pillow.github.io/) • [pil_half](http://python-pillow.github.io/)
|
.png .jpg .gif .bmp .ppm .tiff .tga | [identify](http://www.imagemagick.org/script/identify.php) • [pil](http://python-pillow.github.io/) • [pil_half](http://python-pillow.github.io/)
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ tools_for_extensions = [
|
||||||
[["7z"], ["7z"]],
|
[["7z"], ["7z"]],
|
||||||
[["xz"], ["unxz"]],
|
[["xz"], ["unxz"]],
|
||||||
[["deb"], ["dpkg_contents", "dpkg_info"]],
|
[["deb"], ["dpkg_contents", "dpkg_info"]],
|
||||||
|
[["rpm"], ["rpm"]],
|
||||||
[["a"], ["ar", "nm"]],
|
[["a"], ["ar", "nm"]],
|
||||||
[["so"], ["nm"]],
|
[["so"], ["nm"]],
|
||||||
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
|
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
|
||||||
|
|
@ -120,6 +121,12 @@ tools_for_extensions = [
|
||||||
command = "dpkg -I"
|
command = "dpkg -I"
|
||||||
success_status = "normal"
|
success_status = "normal"
|
||||||
|
|
||||||
|
[rpm]
|
||||||
|
dependencies = ["rpm"]
|
||||||
|
url = "rpm"
|
||||||
|
command = "rpm --query --list"
|
||||||
|
success_status = "normal"
|
||||||
|
|
||||||
[ar]
|
[ar]
|
||||||
dependencies = ["binutils"]
|
dependencies = ["binutils"]
|
||||||
url = "https://en.wikipedia.org/wiki/Ar_(Unix)"
|
url = "https://en.wikipedia.org/wiki/Ar_(Unix)"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue