2022-06-19 21:54:49 +02:00
|
|
|
.. contents:: Table of Contents:
|
2022-05-24 16:30:54 +02:00
|
|
|
|
|
|
|
|
2022-06-19 21:54:49 +02:00
|
|
|
About
|
|
|
|
-----
|
|
|
|
|
2022-06-20 22:14:46 +02:00
|
|
|
Slpkg is a software package manager that installs, updates and removes packages on `Slackware <http://www.slackware.com/>`_-based systems.
|
2022-06-19 21:54:49 +02:00
|
|
|
It automatically calculates dependencies and figures out what things need to happen to install packages.
|
|
|
|
Slpkg makes it easier to manage groups of machines without the need for manual updates.
|
|
|
|
|
|
|
|
Slpkg works in accordance with the standards of the `SlackBuilds.org <https://www.slackbuilds.org>`_ organization to build packages.
|
|
|
|
It also uses the Slackware Linux instructions for installing, upgrading or removing packages.
|
|
|
|
|
|
|
|
.. image:: https://gitlab.com/dslackw/images/raw/master/slpkg/slpkg_package.png
|
|
|
|
:target: https://gitlab.com/dslackw/slpkg
|
|
|
|
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
------------
|
2022-05-24 16:30:54 +02:00
|
|
|
|
2022-06-19 21:54:49 +02:00
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
SQLAlchemy>=1.4.36
|
2022-05-24 16:30:54 +02:00
|
|
|
|
2022-05-24 16:54:32 +02:00
|
|
|
Install
|
|
|
|
-------
|
|
|
|
|
2022-06-19 21:54:49 +02:00
|
|
|
Install from the official third-party `SBo repository <https://slackbuilds.org/repository/15.0/system/slpkg/>`_ or directly from source:
|
2022-05-24 16:54:32 +02:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2022-06-17 16:39:33 +02:00
|
|
|
$ tar xvf slpkg-4.1.0.tar.gz
|
|
|
|
$ cd slpkg-4.1.0
|
2022-05-24 16:54:32 +02:00
|
|
|
$ ./install.sh
|
|
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ slpkg --help
|
|
|
|
|
2022-06-20 23:52:24 +02:00
|
|
|
USAGE: slpkg [OPTIONS] <packages>
|
2022-06-19 21:54:49 +02:00
|
|
|
|
2022-06-21 08:35:35 +02:00
|
|
|
DESCRIPTION:
|
|
|
|
Packaging tool that interacts with the SBo repository.
|
|
|
|
|
|
|
|
COMMANDS:
|
|
|
|
update Update the package lists.
|
|
|
|
build <packages> Build only the packages.
|
|
|
|
install <packages> Build and install the packages.
|
|
|
|
remove <packages> Remove installed packages.
|
|
|
|
search <packages> Search packages by name.
|
|
|
|
clean-logs Purge logs of dependencies.
|
2022-06-19 21:54:49 +02:00
|
|
|
|
2022-06-20 23:52:24 +02:00
|
|
|
OPTIONS:
|
2022-06-21 08:35:35 +02:00
|
|
|
--yes Answer Yes to all questions.
|
|
|
|
--jobs Set it for multicore systems.
|
|
|
|
--resolve-off Turns off dependency resolving.
|
|
|
|
--reinstall Use this option if you want to upgrade.
|
|
|
|
|
|
|
|
-h, --help Show this message and exit.
|
|
|
|
-v, --version Print version and exit.
|
2022-06-20 23:52:24 +02:00
|
|
|
|
|
|
|
If you need more information try to use slpkg manpage.
|
2022-06-19 21:54:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
Configuration files
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
/etc/slpkg/slpkg.json
|
|
|
|
General configuration of slpkg
|
|
|
|
|
|
|
|
/etc/slpkg/blacklist.json
|
|
|
|
Blacklist of packages
|
|
|
|
|
|
|
|
Donate
|
|
|
|
------
|
|
|
|
|
|
|
|
If you feel satisfied with this project and want to thanks me make a donation.
|
|
|
|
|
|
|
|
.. image:: https://gitlab.com/dslackw/images/raw/master/donate/paypaldonate.png
|
|
|
|
:target: https://www.paypal.me/dslackw
|
|
|
|
|
2022-05-24 16:54:32 +02:00
|
|
|
|
2022-05-24 16:30:54 +02:00
|
|
|
Copyright
|
|
|
|
---------
|
|
|
|
|
2022-06-17 16:39:33 +02:00
|
|
|
- Copyright 2014-2022 © Dimitris Zlatanidis.
|
|
|
|
- Slackware® is a Registered Trademark of Patrick Volkerding.
|
2022-06-20 18:45:10 +02:00
|
|
|
- Linux is a Registered Trademark of Linus Torvalds.
|