From a3abfba873cf413d9398ac469f86dfc0e54d2b3d Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Tue, 18 Nov 2014 15:56:22 +0200 Subject: [PATCH] updated for version 2.0.6 --- CHANGELOG | 5 +++++ PKG-INFO | 2 +- README.rst | 8 ++++---- install.sh | 2 +- setup.py | 4 ++-- slackbuild/slpkg.SlackBuild | 2 +- slackbuild/slpkg.info | 4 ++-- slpkg/__metadata__.py | 2 +- 8 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 74deaf94..219a6af2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Version 2.0.6 +18-11-2014 + +[Updated] - Fix setup.py file + Version 2.0.5 18-11-2014 diff --git a/PKG-INFO b/PKG-INFO index 0de0305a..4a2d7b12 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -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 diff --git a/README.rst b/README.rst index e83599b8..a625b885 100644 --- a/README.rst +++ b/README.rst @@ -11,9 +11,9 @@ Latest Release: -- Version: 2.0.5 +- Version: 2.0.6 - `Package `_ -- `Source `_ +- `Source `_ - `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 `_ : diff --git a/install.sh b/install.sh index 7cfef5eb..9e837a54 100755 --- a/install.sh +++ b/install.sh @@ -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 .. diff --git a/setup.py b/setup.py index d62ff379..33ca09e2 100755 --- a/setup.py +++ b/setup.py @@ -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) diff --git a/slackbuild/slpkg.SlackBuild b/slackbuild/slpkg.SlackBuild index a7cc7ab6..da989b78 100755 --- a/slackbuild/slpkg.SlackBuild +++ b/slackbuild/slpkg.SlackBuild @@ -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} diff --git a/slackbuild/slpkg.info b/slackbuild/slpkg.info index 43e88dee..9c63aa5a 100644 --- a/slackbuild/slpkg.info +++ b/slackbuild/slpkg.info @@ -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="" diff --git a/slpkg/__metadata__.py b/slpkg/__metadata__.py index 854d85cd..ae453de2 100644 --- a/slpkg/__metadata__.py +++ b/slpkg/__metadata__.py @@ -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"