diff --git a/CHANGELOG b/CHANGELOG
index 3b89e8cb..cf78afd3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+Version 1.8.8
+22-08-2014
+
+[Updated] - Alignment viewing packages
+ - Fix build time
+
Version 1.8.7
19-09-2014
diff --git a/PKG-INFO b/PKG-INFO
index e93e4f53..348663d4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: slpkg
-Version: 1.8.7
+Version: 1.8.8
Author: dslackw
Author-email: d zlatanidis at gmail com
Maintainer: dslackw
diff --git a/README.rst b/README.rst
index 0800dd74..89ea1c85 100644
--- a/README.rst
+++ b/README.rst
@@ -4,26 +4,26 @@
:target: https://pypi.python.org/pypi/slpkg
.. image:: https://pypip.in/license/slpkg/badge.png
:target: https://pypi.python.org/pypi/slpkg
+
+Latest Release:
+
+- Version: 1.8.8
+- `Package `_
+- `Source `_
+- `CHANGELOG `_
+
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/logo.png
:target: https://github.com/dslackw/slpkg
.. contents:: Table of Contents:
-
-Latest Release:
-
-- Version: 1.8.7
-- `Package `_
-- `Source `_
-- `CHANGELOG `_
-
`Slpkg `_ is a terminal multitool in order to easy use `Slackware `_
packages.
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/open-source-logo.png
:target: https://github.com/dslackw/slpkg
-Slpkg is Open Source and written in Python language.
+Slpkg is `Open Source `_ and written in Python language.
It's use is for installing, upgrading, removing and monitoring packages in Slackware
linux distribution stable release.
Species are adapted to two repositories:
@@ -98,8 +98,8 @@ Untar the archive and run install.sh script:
.. code-block:: bash
- $ tar xvf slpkg-1.8.7.tar.gz
- $ cd slpkg-1.8.7
+ $ tar xvf slpkg-1.8.8.tar.gz
+ $ cd slpkg-1.8.8
$ ./install.sh
Using `pip `_ :
@@ -195,12 +195,12 @@ download and install:
Reading package lists.............................. Done
+==============================================================================
- | Package Version Arch Build Repos Size
+ | Package Version Arch Build Repos Size
+==============================================================================
Installing:
- mozilla-firefox 24.1.0esr x86_64 1 Slack 23524 K
- mozilla-nss 3.15.2 x86_64 2 Slack 1592 K
- mozilla-thunderbird 24.1.0 x86_64 1 Slack 24208 K
+ mozilla-firefox 24.1.0esr x86_64 1 Slack 23524 K
+ mozilla-nss 3.15.2 x86_64 2 Slack 1592 K
+ mozilla-thunderbird 24.1.0 x86_64 1 Slack 24208 K
Installing summary
===============================================================================
@@ -274,12 +274,12 @@ Check if your distribution is up to date from `Slackware official mirrors
These packages need upgrading:
+==============================================================================
- | Package Version Arch Build Repos Size
+ | Package Version Arch Build Repos Size
+==============================================================================
Upgrading:
- dhcpcd 6.0.5 x86_64 3 Slack 92 K
- samba 4.1.11 x86_64 1 Slack 9928 K
- xscreensaver 5.29 x86_64 1 Slack 3896 K
+ dhcpcd 6.0.5 x86_64 3 Slack 92 K
+ samba 4.1.11 x86_64 1 Slack 9928 K
+ xscreensaver 5.29 x86_64 1 Slack 3896 K
Installing summary
===============================================================================
diff --git a/install.sh b/install.sh
index a975faf7..3f96d4e0 100755
--- a/install.sh
+++ b/install.sh
@@ -21,7 +21,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=slpkg
-VERSION=${VERSION:-1.8.7}
+VERSION=${VERSION:-1.8.8}
TAG=${TAG:-_dsw}
cd ..
diff --git a/setup.py b/setup.py
index d2a560cb..10f1e31c 100644
--- a/setup.py
+++ b/setup.py
@@ -33,9 +33,9 @@ except ImportError:
from distutils.core import setup
setup(
- name='slpkg',
- packages=['slpkg', 'slpkg/sbo', 'slpkg/pkg', 'slpkg/slack'],
- scripts=['bin/slpkg'],
+ name="slpkg",
+ packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack"],
+ scripts=["bin/slpkg"],
version=__version__,
description="Python tool to manage Slackware packages",
keywords=["slackware", "slpkg", "upgrade", "install", "remove",
@@ -61,11 +61,11 @@ setup(
long_description=open("README.rst").read()
)
-if 'install' in sys.argv:
+if "install" in sys.argv:
man_path = "/usr/man/man8/"
os.system("mkdir -p {}".format(man_path))
if os.path.exists(man_path):
print("Installing man pages")
man_page = "man/slpkg.8"
shutil.copy2(man_page, man_path)
- os.chmod(man_path, int('444', 8))
+ os.chmod(man_path, int("444", 8))