updated for version 1.9.6

This commit is contained in:
Dimitris Zlatanidis 2014-10-04 16:01:36 +03:00
parent 2ef86af52d
commit a3525a2f15
8 changed files with 18 additions and 12 deletions

View file

@ -1,5 +1,10 @@
Version 1.9.6
04-10-2014
[Updated] - Bugfix install packages from slack repo.
Version 1.9.5
04-10.2014
04-10-2014
[Updated] - Added 'aaa_elflibs' in blacklist.
- Fix current version upgrade only installed packages.

View file

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

View file

@ -7,9 +7,9 @@
Latest Release:
- Version: 1.9.5
- Version: 1.9.6
- `Package <https://sourceforge.net/projects/slpkg/files/slpkg/binary/>`_
- `Source <https://github.com/dslackw/slpkg/archive/v1.9.5.tar.gz>`_
- `Source <https://github.com/dslackw/slpkg/archive/v1.9.6.tar.gz>`_
- `CHANGELOG <https://github.com/dslackw/slpkg/blob/master/CHANGELOG>`_
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/logo.png
@ -86,7 +86,7 @@ Tutorial
--------
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/screenshot-1.png
:target: https://asciinema.org/a/12667
:target: https://asciinema.org/a/12544
Installation
@ -96,8 +96,8 @@ Untar the archive and run install.sh script:
.. code-block:: bash
$ tar xvf slpkg-1.9.5.tar.gz
$ cd slpkg-1.9.5
$ tar xvf slpkg-1.9.6.tar.gz
$ cd slpkg-1.9.6
$ ./install.sh
Using `pip <https://pip.pypa.io/en/latest/>`_ :

View file

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

View file

@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=slpkg
VERSION=${VERSION:-1.9.5}
VERSION=${VERSION:-1.9.6}
BUILD=${BUILD:-1}
TAG=${TAG:-_dsw}

View file

@ -1,7 +1,7 @@
PRGNAM="slpkg"
VERSION="1.9.5"
VERSION="1.9.6"
HOMEPAGE="https://github.com/dslackw/slpkg"
DOWNLOAD="https://github.com/dslackw/slpkg/archive/v1.9.5.tar.gz"
DOWNLOAD="https://github.com/dslackw/slpkg/archive/v1.9.6.tar.gz"
MD5SUM=""
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""

View file

@ -26,7 +26,7 @@ import subprocess
__all__ = "slpkg"
__author__ = "dslackw"
__version_info__ = (1, 9, 5)
__version_info__ = (1, 9, 6)
__version__ = "{0}.{1}.{2}".format(*__version_info__)
__license__ = "GNU General Public License v3 (GPLv3)"
__email__ = "d.zlatanidis@gmail.com"

View file

@ -101,6 +101,7 @@ def install(slack_pkg, version):
ver = pkg_split[1]
arch = pkg_split[2]
build = pkg_split[3]
names.append(name)
if os.path.isfile(pkg_path + pkg[:-4]):
pkg_sum += 1
COLOR = GREEN