update for version 1.8.8

This commit is contained in:
Dimitris Zlatanidis 2014-09-21 23:08:20 +03:00
parent dd75d9b8ab
commit 2ffdbb3ae9
5 changed files with 32 additions and 26 deletions

View file

@ -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

View file

@ -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

View file

@ -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 <https://sourceforge.net/projects/slpkg/files/slpkg/binary/>`_
- `Source <https://github.com/dslackw/slpkg/archive/v1.8.8.tar.gz>`_
- `CHANGELOG <https://github.com/dslackw/slpkg/blob/master/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 <https://sourceforge.net/projects/slpkg/files/slpkg/binary/>`_
- `Source <https://github.com/dslackw/slpkg/archive/v1.8.7.tar.gz>`_
- `CHANGELOG <https://github.com/dslackw/slpkg/blob/master/CHANGELOG>`_
`Slpkg <https://github.com/dslackw/slpkg>`_ is a terminal multitool in order to easy use `Slackware <http://www.slackware.com/>`_
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 <http://en.wikipedia.org/wiki/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 <https://pip.pypa.io/en/latest/>`_ :
@ -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
===============================================================================

View file

@ -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 ..

View file

@ -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))