updated for version 2.0.6

This commit is contained in:
Dimitris Zlatanidis 2014-11-18 15:56:22 +02:00
parent 311f1a0a36
commit a3abfba873
8 changed files with 17 additions and 12 deletions

View file

@ -1,3 +1,8 @@
Version 2.0.6
18-11-2014
[Updated] - Fix setup.py file
Version 2.0.5
18-11-2014

View file

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

View file

@ -11,9 +11,9 @@
Latest Release:
- Version: 2.0.5
- Version: 2.0.6
- `Package <https://sourceforge.net/projects/slpkg/files/slpkg/binary/>`_
- `Source <https://github.com/dslackw/slpkg/archive/v2.0.5.tar.gz>`_
- `Source <https://github.com/dslackw/slpkg/archive/v2.0.6.tar.gz>`_
- `CHANGELOG <https://github.com/dslackw/slpkg/blob/master/CHANGELOG>`_
.. image:: https://raw.githubusercontent.com/dslackw/images/master/slpkg/logo.png
@ -102,8 +102,8 @@ Untar the archive and run install.sh script:
.. code-block:: bash
$ tar xvf slpkg-2.0.5.tar.gz
$ cd slpkg-2.0.5
$ tar xvf slpkg-2.0.6.tar.gz
$ cd slpkg-2.0.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:-2.0.5}
VERSION=${VERSION:-2.0.6}
TAG=${TAG:-_dsw}
cd ..

View file

@ -86,10 +86,10 @@ if "install" in sys.argv:
if not os.path.exists(conf_path):
os.system("mkdir -p {0}".format(conf_path))
# slpkg.conf file
if not os.isfile(conf_path + conf_file):
if not os.path.isfile(conf_path + conf_file):
print("Installing slpkg configuration file")
shutil.copy2(conf_file, conf_path)
# blacklist file
if not os.isfile(conf_path + black_file):
if not os.path.isfile(conf_path + black_file):
print("Installing blacklist configuration file")
shutil.copy2(black_file, conf_path)

View file

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

View file

@ -1,7 +1,7 @@
PRGNAM="slpkg"
VERSION="2.0.5"
VERSION="2.0.6"
HOMEPAGE="https://github.com/dslackw/slpkg"
DOWNLOAD="https://github.com/dslackw/slpkg/archive/v2.0.5.tar.gz"
DOWNLOAD="https://github.com/dslackw/slpkg/archive/v2.0.6.tar.gz"
MD5SUM=""
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""

View file

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