mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-17 06:11:35 +01:00
Update version
This commit is contained in:
parent
94fefb7727
commit
c287818a9c
3 changed files with 17 additions and 5 deletions
|
@ -1,3 +1,12 @@
|
|||
2.6.9 - 31/07/2015
|
||||
Added:
|
||||
- new-config command to manage .new configuration files
|
||||
Fixed:
|
||||
- Ignore check packages with version "blacklist" from binary repositories
|
||||
Updated:
|
||||
- slpkg.SlackBuild script
|
||||
- Read Slackware version function
|
||||
|
||||
2.6.8 - 30/07/2015
|
||||
Fixed:
|
||||
- SBo dependencies installation order
|
||||
|
|
11
README.rst
11
README.rst
|
@ -155,6 +155,8 @@ package file list.
|
|||
Print dependencies status used by packages with command '$ slpkg deps-status' or drawing image
|
||||
map dependencies with additional option '--graph=[image]'.
|
||||
|
||||
Manage .new configuration files with command 'slpkg new-config' like remove, overwrite, merge etc.
|
||||
|
||||
If you have already downloaded the script and the source code you can build the package with
|
||||
the command '$ slpkg <script.tar.gz> <sources>'.
|
||||
|
||||
|
@ -228,8 +230,8 @@ Untar the archive and run install.sh script:
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
$ tar xvf slpkg-2.6.8.tar.gz
|
||||
$ cd slpkg-2.6.8
|
||||
$ tar xvf slpkg-2.6.9.tar.gz
|
||||
$ cd slpkg-2.6.9
|
||||
$ ./install.sh
|
||||
|
||||
Using pip:
|
||||
|
@ -248,9 +250,9 @@ Using pip:
|
|||
|
||||
Bbinary packages:
|
||||
|
||||
Slackware: `slpkg-2.6.8-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.6.8/slpkg-2.6.8-i486-1_dsw.txz>`_
|
||||
Slackware: `slpkg-2.6.9-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.6.9/slpkg-2.6.9-i486-1_dsw.txz>`_
|
||||
|
||||
Slackware64: `slpkg-2.6.8-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.6.8/slpkg-2.6.8-x86_64-1_dsw.txz>`_
|
||||
Slackware64: `slpkg-2.6.9-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.6.9/slpkg-2.6.9-x86_64-1_dsw.txz>`_
|
||||
|
||||
|
||||
Upgrade
|
||||
|
@ -351,6 +353,7 @@ Command Line Tool Usage
|
|||
deps-status, --graph=[type] Print dependencies status used by
|
||||
packages or drawing dependencies
|
||||
diagram.
|
||||
new-config Manage .new configuration files.
|
||||
|
||||
Optional arguments:
|
||||
-h, --help Print this help message and exit.
|
||||
|
|
|
@ -88,7 +88,7 @@ class MetaData(object):
|
|||
|
||||
__all__ = "slpkg"
|
||||
__author__ = "dslackw"
|
||||
__version_info__ = (2, 6, 8)
|
||||
__version_info__ = (2, 6, 9)
|
||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue