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 .. code-block:: bash
$ tar xvf slpkg-4.2.3.tar.gz $ tar xvf slpkg-4.2.4.tar.gz
$ cd slpkg-4.2.3 $ cd slpkg-4.2.4
$ ./install.sh $ ./install.sh
@ -96,6 +96,6 @@ If you feel satisfied with this project and want to thanks me make a donation.
Copyright Copyright
--------- ---------
- Copyright 2014.2.32 © Dimitris Zlatanidis. - Copyright 2014-2022 © Dimitris Zlatanidis.
- Slackware® is a Registered Trademark of Patrick Volkerding. - Slackware® is a Registered Trademark of Patrick Volkerding.
- Linux is a Registered Trademark of Linus Torvalds. - Linux is a Registered Trademark of Linus Torvalds.

View file

@ -75,8 +75,7 @@ Answer Yes to all questions.
.P .P
--jobs --jobs
.RS .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 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.
MAKEFLAGS is declared or the number of processors (-j) is greater than one.
.RE .RE
.P .P
--resolve-off --resolve-off

View file

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

View file

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