mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-13 20:01:48 +01:00
Updated for version 4.8.9
This commit is contained in:
parent
22af4bd352
commit
43fd2f94f0
3 changed files with 5 additions and 5 deletions
|
@ -60,8 +60,8 @@ $ slpkg tracking --pkg-version Flask awscli pychess
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
```
|
```
|
||||||
$ tar xvf slpkg-4.8.8.tar.gz
|
$ tar xvf slpkg-4.8.9.tar.gz
|
||||||
$ cd slpkg-4.8.8
|
$ cd slpkg-4.8.9
|
||||||
$ ./install.sh
|
$ ./install.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ The majority of trials have been made in Slackware x86_64 'stable' environment.
|
||||||
### Command Line Tool Usage
|
### Command Line Tool Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
slpkg - version 4.8.8
|
slpkg - version 4.8.9
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
slpkg [COMMAND] [OPTIONS] [FILELIST|PACKAGES...]
|
slpkg [COMMAND] [OPTIONS] [FILELIST|PACKAGES...]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = slpkg
|
name = slpkg
|
||||||
version = 4.8.8
|
version = 4.8.9
|
||||||
license_file = LICENSE
|
license_file = LICENSE
|
||||||
author = Dimitris Zlatanidis
|
author = Dimitris Zlatanidis
|
||||||
author_email = dslackw@gmail.com
|
author_email = dslackw@gmail.com
|
||||||
|
|
|
@ -5,7 +5,7 @@ class Version:
|
||||||
""" Print the version. """
|
""" Print the version. """
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.version_info: tuple = (4, 8, 8)
|
self.version_info: tuple = (4, 8, 9)
|
||||||
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
|
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
|
||||||
self.license: str = 'MIT License'
|
self.license: str = 'MIT License'
|
||||||
self.author: str = 'Dimitris Zlatanidis (dslackw)'
|
self.author: str = 'Dimitris Zlatanidis (dslackw)'
|
||||||
|
|
Loading…
Reference in a new issue