mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-17 06:11:35 +01:00
Update optional dependencies
This commit is contained in:
parent
f593050d1c
commit
023095a51d
3 changed files with 8 additions and 2 deletions
|
@ -207,6 +207,7 @@ Notable mention must give the command '$ slpkg --removepkg <packages>' which can
|
||||||
with all dependencies together after editing configuration file '/etc/slpkg/slpkg.conf'
|
with all dependencies together after editing configuration file '/etc/slpkg/slpkg.conf'
|
||||||
(default is disable). Also you can check if packages used as dependency with additional option
|
(default is disable). Also you can check if packages used as dependency with additional option
|
||||||
"--check-deps". Option "--tag" allow to remove packages with by TAG.
|
"--check-deps". Option "--tag" allow to remove packages with by TAG.
|
||||||
|
Optional you can use dialog utility with additional option "--checklist" (require python2-pythondialog).
|
||||||
|
|
||||||
The last command is useful to print the entire contents of a package installed on the system with the
|
The last command is useful to print the entire contents of a package installed on the system with the
|
||||||
command '$ slpkg -d <packages>'.
|
command '$ slpkg -d <packages>'.
|
||||||
|
@ -262,6 +263,8 @@ Slackware64: `slpkg-2.7.5-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/rel
|
||||||
Optional dependencies
|
Optional dependencies
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
`python2-pythondialog <http://pythondialog.sourceforge.net/>`_ for dialog box interface
|
||||||
|
|
||||||
`pygraphviz <http://pygraphviz.github.io/>`_ for drawing dependencies diagram
|
`pygraphviz <http://pygraphviz.github.io/>`_ for drawing dependencies diagram
|
||||||
|
|
||||||
`graph-easy <http://bloodgate.com/perl/graph/manual/index.html>`_ for drawing ascii dependencies diagram
|
`graph-easy <http://bloodgate.com/perl/graph/manual/index.html>`_ for drawing ascii dependencies diagram
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -38,8 +38,8 @@ INSTALLATION_REQUIREMENTS = []
|
||||||
DOCS_REQUIREMENTS = []
|
DOCS_REQUIREMENTS = []
|
||||||
TESTS_REQUIREMENTS = []
|
TESTS_REQUIREMENTS = []
|
||||||
OPTIONAL_REQUIREMENTS = [
|
OPTIONAL_REQUIREMENTS = [
|
||||||
"pygraphviz >= 1.3rc2",
|
"python2-pythondialog >= 3.3.0",
|
||||||
"python2-pythondialog >= 3.3.0"
|
"pygraphviz >= 1.3rc2"
|
||||||
]
|
]
|
||||||
# Non-Python/non-PyPI optional dependencies:
|
# Non-Python/non-PyPI optional dependencies:
|
||||||
# ascii diagram: graph-easy (available from SBo repository)
|
# ascii diagram: graph-easy (available from SBo repository)
|
||||||
|
|
|
@ -3,3 +3,6 @@ and removes packages on Slackware based systems. It automatically
|
||||||
computes dependencies and figures out what things should occur
|
computes dependencies and figures out what things should occur
|
||||||
to install packages. Slpkg makes it easier to maintain groups
|
to install packages. Slpkg makes it easier to maintain groups
|
||||||
of machines without having to manually update.
|
of machines without having to manually update.
|
||||||
|
|
||||||
|
Optional dependencies: python2-pythondialog, pygraphviz, graph-easy
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue