Updated for version 4.2.4

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-10-31 18:27:12 +02:00
parent cd51d40aef
commit feca290459
4 changed files with 6 additions and 7 deletions

View file

@ -30,8 +30,8 @@ Install from the official third-party `SBo repository <https://slackbuilds.org/r
.. code-block:: bash
$ tar xvf slpkg-4.2.3.tar.gz
$ cd slpkg-4.2.3
$ tar xvf slpkg-4.2.4.tar.gz
$ cd slpkg-4.2.4
$ ./install.sh
@ -96,6 +96,6 @@ If you feel satisfied with this project and want to thanks me make a donation.
Copyright
---------
- Copyright 2014.2.32 © Dimitris Zlatanidis.
- Copyright 2014-2022 © Dimitris Zlatanidis.
- Slackware® is a Registered Trademark of Patrick Volkerding.
- Linux is a Registered Trademark of Linus Torvalds.

View file

@ -75,8 +75,7 @@ Answer Yes to all questions.
.P
--jobs
.RS
Acceleration of SlackBuild scripts. When the --jobs flag is set, slpkg automatically detects the number of processors and enters it into the MAKEFLAGS variable. Some SlackBuilds fail when
MAKEFLAGS is declared or the number of processors (-j) is greater than one.
Acceleration of SlackBuild scripts. When the --jobs flag is set, slpkg automatically detects the number of processors and enters it into the MAKEFLAGS variable. Some SlackBuilds fail when MAKEFLAGS is declared or the number of processors (-j) is greater than one.
.RE
.P
--resolve-off

View file

@ -1,6 +1,6 @@
[metadata]
name = slpkg
version = 4.2.3
version = 4.2.4
license_file = LICENSE
author = Dimitris Zlatanidis
author_email = d.zlatanidis@gmail.com

View file

@ -10,7 +10,7 @@ from slpkg.configs import Configs
@dataclass
class Version:
prog_name: str = Configs.prog_name
version_info: tuple = (4, 2, 3)
version_info: tuple = (4, 2, 4)
version: str = '{0}.{1}.{2}'.format(*version_info)
license: str = 'MIT License'
author: str = 'dslackw'