diff --git a/ChangeLog.txt b/ChangeLog.txt index c00df27a..3927a612 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 diff --git a/README.rst b/README.rst index f48d4513..488b9ee7 100644 --- a/README.rst +++ b/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 '. @@ -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 `_ +Slackware: `slpkg-2.6.9-i486-1_dsw.txz `_ -Slackware64: `slpkg-2.6.8-x86_64-1_dsw.txz `_ +Slackware64: `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. diff --git a/slpkg/__metadata__.py b/slpkg/__metadata__.py index 6e03216a..b74fb0fd 100644 --- a/slpkg/__metadata__.py +++ b/slpkg/__metadata__.py @@ -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"