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 Version 1.8.7
19-09-2014 19-09-2014

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.1 Metadata-Version: 1.1
Name: slpkg Name: slpkg
Version: 1.8.7 Version: 1.8.8
Author: dslackw Author: dslackw
Author-email: d zlatanidis at gmail com Author-email: d zlatanidis at gmail com
Maintainer: dslackw Maintainer: dslackw

View file

@ -4,26 +4,26 @@
:target: https://pypi.python.org/pypi/slpkg :target: https://pypi.python.org/pypi/slpkg
.. image:: https://pypip.in/license/slpkg/badge.png .. image:: https://pypip.in/license/slpkg/badge.png
:target: https://pypi.python.org/pypi/slpkg :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 .. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/logo.png
:target: https://github.com/dslackw/slpkg :target: https://github.com/dslackw/slpkg
.. contents:: Table of Contents: .. 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/>`_ `Slpkg <https://github.com/dslackw/slpkg>`_ is a terminal multitool in order to easy use `Slackware <http://www.slackware.com/>`_
packages. packages.
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/open-source-logo.png .. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/open-source-logo.png
:target: https://github.com/dslackw/slpkg :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 It's use is for installing, upgrading, removing and monitoring packages in Slackware
linux distribution stable release. linux distribution stable release.
Species are adapted to two repositories: Species are adapted to two repositories:
@ -98,8 +98,8 @@ Untar the archive and run install.sh script:
.. code-block:: bash .. code-block:: bash
$ tar xvf slpkg-1.8.7.tar.gz $ tar xvf slpkg-1.8.8.tar.gz
$ cd slpkg-1.8.7 $ cd slpkg-1.8.8
$ ./install.sh $ ./install.sh
Using `pip <https://pip.pypa.io/en/latest/>`_ : Using `pip <https://pip.pypa.io/en/latest/>`_ :

View file

@ -21,7 +21,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=slpkg PRGNAM=slpkg
VERSION=${VERSION:-1.8.7} VERSION=${VERSION:-1.8.8}
TAG=${TAG:-_dsw} TAG=${TAG:-_dsw}
cd .. cd ..

View file

@ -33,9 +33,9 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
setup( setup(
name='slpkg', name="slpkg",
packages=['slpkg', 'slpkg/sbo', 'slpkg/pkg', 'slpkg/slack'], packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack"],
scripts=['bin/slpkg'], scripts=["bin/slpkg"],
version=__version__, version=__version__,
description="Python tool to manage Slackware packages", description="Python tool to manage Slackware packages",
keywords=["slackware", "slpkg", "upgrade", "install", "remove", keywords=["slackware", "slpkg", "upgrade", "install", "remove",
@ -61,11 +61,11 @@ setup(
long_description=open("README.rst").read() long_description=open("README.rst").read()
) )
if 'install' in sys.argv: if "install" in sys.argv:
man_path = "/usr/man/man8/" man_path = "/usr/man/man8/"
os.system("mkdir -p {}".format(man_path)) os.system("mkdir -p {}".format(man_path))
if os.path.exists(man_path): if os.path.exists(man_path):
print("Installing man pages") print("Installing man pages")
man_page = "man/slpkg.8" man_page = "man/slpkg.8"
shutil.copy2(man_page, man_path) shutil.copy2(man_page, man_path)
os.chmod(man_path, int('444', 8)) os.chmod(man_path, int("444", 8))