mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Update version
This commit is contained in:
parent
42c7ac2031
commit
8724c20d48
3 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2.8.6 - 11/09/2015
|
||||||
|
Added:
|
||||||
|
- Read doinst.sh file in "--network" option
|
||||||
|
- Editor via configuration file
|
||||||
|
Updated:
|
||||||
|
- Rename script view.py in network.py
|
||||||
|
|
||||||
2.8.5 - 08/09/2015
|
2.8.5 - 08/09/2015
|
||||||
Fixed:
|
Fixed:
|
||||||
- Remove packages with option "--checklist" and "--check-deps"
|
- Remove packages with option "--checklist" and "--check-deps"
|
||||||
|
|
11
README.rst
11
README.rst
|
@ -20,7 +20,7 @@
|
||||||
:target: https://github.com/dslackw/slpkg/issues
|
:target: https://github.com/dslackw/slpkg/issues
|
||||||
|
|
||||||
|
|
||||||
Slpkg v2.8.5
|
Slpkg v2.8.6
|
||||||
============
|
============
|
||||||
|
|
||||||
|
|
|
|
||||||
|
@ -81,8 +81,8 @@ Download latest release:
|
||||||
|
|
||||||
Required root privileges
|
Required root privileges
|
||||||
|
|
||||||
$ tar xvf slpkg-2.8.5.tar.gz
|
$ tar xvf slpkg-2.8.6.tar.gz
|
||||||
$ cd slpkg-2.8.5
|
$ cd slpkg-2.8.6
|
||||||
$ ./install.sh
|
$ ./install.sh
|
||||||
|
|
||||||
Installed as Slackware package
|
Installed as Slackware package
|
||||||
|
@ -113,9 +113,9 @@ Using pip:
|
||||||
|
|
||||||
Binary packages:
|
Binary packages:
|
||||||
|
|
||||||
Slackware: `slpkg-2.8.5-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.8.5/slpkg-2.8.5-i486-1_dsw.txz>`_
|
Slackware: `slpkg-2.8.6-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.8.6/slpkg-2.8.6-i486-1_dsw.txz>`_
|
||||||
|
|
||||||
Slackware64: `slpkg-2.8.5-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.8.5/slpkg-2.8.5-x86_64-1_dsw.txz>`_
|
Slackware64: `slpkg-2.8.6-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.8.6/slpkg-2.8.6-x86_64-1_dsw.txz>`_
|
||||||
|
|
||||||
|
|
||||||
Optional dependencies
|
Optional dependencies
|
||||||
|
@ -1064,6 +1064,7 @@ Read fies, download, build or install:
|
||||||
| README View the README file
|
| README View the README file
|
||||||
| SlackBuild View the SlackBuild file
|
| SlackBuild View the SlackBuild file
|
||||||
| Info View the Info file
|
| Info View the Info file
|
||||||
|
| Doinst.sh View the doinst.sh file
|
||||||
| Download Download this package
|
| Download Download this package
|
||||||
| Build Download and build this package
|
| Build Download and build this package
|
||||||
| Install Download/Build/Install
|
| Install Download/Build/Install
|
||||||
|
|
|
@ -87,7 +87,7 @@ class MetaData(object):
|
||||||
|
|
||||||
__all__ = "slpkg"
|
__all__ = "slpkg"
|
||||||
__author__ = "dslackw"
|
__author__ = "dslackw"
|
||||||
__version_info__ = (2, 8, 5)
|
__version_info__ = (2, 8, 6)
|
||||||
__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