mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-18 10:26:29 +01:00
Update comments
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
03e49a332e
commit
51dab58cee
3 changed files with 7 additions and 8 deletions
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.1.3
|
Slpkg v3.1.4
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
|
|
||||||
|
@ -79,8 +79,8 @@ Download latest release:
|
||||||
|
|
||||||
Required root privileges
|
Required root privileges
|
||||||
|
|
||||||
$ tar xvf slpkg-3.1.3.tar.gz
|
$ tar xvf slpkg-3.1.4.tar.gz
|
||||||
$ cd slpkg-3.1.3
|
$ cd slpkg-3.1.4
|
||||||
$ ./install.sh
|
$ ./install.sh
|
||||||
|
|
||||||
Installed as Slackware package
|
Installed as Slackware package
|
||||||
|
@ -111,9 +111,9 @@ Using pip:
|
||||||
|
|
||||||
Binary packages:
|
Binary packages:
|
||||||
|
|
||||||
Slackware: `slpkg-3.1.3-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.3/slpkg-3.1.3-i486-1_dsw.txz>`_
|
Slackware: `slpkg-3.1.4-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.4/slpkg-3.1.4-i486-1_dsw.txz>`_
|
||||||
|
|
||||||
Slackware64: `slpkg-3.1.3-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.3/slpkg-3.1.3-x86_64-1_dsw.txz>`_
|
Slackware64: `slpkg-3.1.4-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.4/slpkg-3.1.4-x86_64-1_dsw.txz>`_
|
||||||
|
|
||||||
|
|
||||||
Optional dependencies
|
Optional dependencies
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -89,8 +89,7 @@ setup(
|
||||||
long_description=open("README.rst").read()
|
long_description=open("README.rst").read()
|
||||||
)
|
)
|
||||||
|
|
||||||
# Install man page and configuration files
|
# Install man page and configuration files with pip.
|
||||||
# with pip.
|
|
||||||
if "install" in sys.argv:
|
if "install" in sys.argv:
|
||||||
man_path = "/usr/man/man8/"
|
man_path = "/usr/man/man8/"
|
||||||
if not os.path.exists(man_path):
|
if not os.path.exists(man_path):
|
||||||
|
|
|
@ -77,7 +77,7 @@ class MetaData(object):
|
||||||
|
|
||||||
__all__ = "slpkg"
|
__all__ = "slpkg"
|
||||||
__author__ = "dslackw"
|
__author__ = "dslackw"
|
||||||
__version_info__ = (3, 1, 3)
|
__version_info__ = (3, 1, 4)
|
||||||
__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…
Reference in a new issue