mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-10 20:48:40 +01:00
Updated for version 3.3.0
This commit is contained in:
parent
608a78d7f3
commit
2aaaac8497
3 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
3.3.0 - 01/10/2017
|
||||||
|
Fixed: TypeError: stat() argument 1 must be encoded string without null bytes,
|
||||||
|
not str #100
|
||||||
|
|
||||||
3.2.9 - 24/09/2017
|
3.2.9 - 24/09/2017
|
||||||
Fixed:
|
Fixed:
|
||||||
- Strange dependency problem #97
|
- Strange dependency problem #97
|
||||||
|
|
10
README.rst
10
README.rst
|
@ -20,7 +20,7 @@
|
||||||
:target: https://github.com/dslackw/slpkg/issues
|
:target: https://github.com/dslackw/slpkg/issues
|
||||||
|
|
||||||
|
|
||||||
Slpkg v3.2.9
|
Slpkg v3.3.0
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
|
|
||||||
|
@ -79,8 +79,8 @@ Download latest release:
|
||||||
|
|
||||||
Required root privileges
|
Required root privileges
|
||||||
|
|
||||||
$ tar xvf slpkg-3.2.9.tar.gz
|
$ tar xvf slpkg-3.3.0.tar.gz
|
||||||
$ cd slpkg-3.2.9
|
$ cd slpkg-3.3.0
|
||||||
$ ./install.sh
|
$ ./install.sh
|
||||||
|
|
||||||
If you want to build slpkg for use with Python 3.x (needs the
|
If you want to build slpkg for use with Python 3.x (needs the
|
||||||
|
@ -116,9 +116,9 @@ Using pip:
|
||||||
|
|
||||||
Binary packages:
|
Binary packages:
|
||||||
|
|
||||||
Slackware: `slpkg-3.2.9-i586-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.2.9/slpkg-3.2.9-i586-1_dsw.txz>`_
|
Slackware: `slpkg-3.3.0-i586-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.3.0/slpkg-3.3.0-i586-1_dsw.txz>`_
|
||||||
|
|
||||||
Slackware64: `slpkg-3.2.9-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.2.9/slpkg-3.2.9-x86_64-1_dsw.txz>`_
|
Slackware64: `slpkg-3.3.0-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.3.0/slpkg-3.3.0-x86_64-1_dsw.txz>`_
|
||||||
|
|
||||||
|
|
||||||
Optional dependencies
|
Optional dependencies
|
||||||
|
|
|
@ -78,7 +78,7 @@ class MetaData(object):
|
||||||
|
|
||||||
__all__ = "slpkg"
|
__all__ = "slpkg"
|
||||||
__author__ = "dslackw"
|
__author__ = "dslackw"
|
||||||
__version_info__ = (3, 2, 9)
|
__version_info__ = (3, 3, 0)
|
||||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||||
__email__ = "d.zlatanidis@gmail.com"
|
__email__ = "d.zlatanidis@gmail.com"
|
||||||
|
|
Loading…
Add table
Reference in a new issue