diff --git a/PKGBUILD b/PKGBUILD index 05b1b2a..d1668d3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Kwpolska pkgname=pkgbuilder -pkgver=2.1.2.18 +pkgver=2.1.2.19 pkgrel=1 pkgdesc="A basic Python AUR helper/library." arch=('any') @@ -9,7 +9,7 @@ license=('BSD') depends=('python' 'pyalpm>=0.5.1-1' 'python-pyparsing' 'pacman>=4.0.0-1') options=(!emptydirs) source=("http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.gz") -md5sums=('aac84c0da3cd41f2b52e6e55a9476f6f') +md5sums=('fd06eef1cb6484340a2790280b8a5e84') package() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/README.rst b/README.rst index 4ea60f4..d117893 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ README for PKGBUILDer ===================== :Info: This is the README file for PKGBUILDer. :Author: Kwpolska -:Date: 2011-12-05 -:Version: 2.1.2.18 +:Date: 2011-12-09 +:Version: 2.1.2.19 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/dist/pkgbuilder-2.1.2.19.tar.gz b/dist/pkgbuilder-2.1.2.19.tar.gz new file mode 100644 index 0000000..3815e4f Binary files /dev/null and b/dist/pkgbuilder-2.1.2.19.tar.gz differ diff --git a/docs/LICENSE.rst b/docs/LICENSE.rst index f8da98b..90f5e05 100644 --- a/docs/LICENSE.rst +++ b/docs/LICENSE.rst @@ -3,8 +3,8 @@ Appendix B. License for PKGBUILDer ================================== :Info: This is an appendix to the PKGBUILDer documentation. :Author: Kwpolska -:Date: 2011-12-05 -:Version: 2.1.2.18 +:Date: 2011-12-09 +:Version: 2.1.2.19 Copyright (C) 2011, Kwpolska All rights reserved. diff --git a/docs/README.rst b/docs/README.rst index 4ea60f4..d117893 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -3,8 +3,8 @@ README for PKGBUILDer ===================== :Info: This is the README file for PKGBUILDer. :Author: Kwpolska -:Date: 2011-12-05 -:Version: 2.1.2.18 +:Date: 2011-12-09 +:Version: 2.1.2.19 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/docs/classes.rst b/docs/classes.rst index 4c0aec1..8c34dec 100644 --- a/docs/classes.rst +++ b/docs/classes.rst @@ -4,8 +4,8 @@ Classes in PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. -:Date: 2011-12-05 -:Version: 2.1.2.18 +:Date: 2011-12-09 +:Version: 2.1.2.19 .. index:: classes .. module:: PKGBUILDer diff --git a/docs/conf.py b/docs/conf.py index e1d5b01..6f1499d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '2.1.2' # The full version, including alpha/beta/rc tags. -release = '2.1.2.18' +release = '2.1.2.19' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/messagecodes.rst b/docs/messagecodes.rst index 6b112c2..de9495e 100644 --- a/docs/messagecodes.rst +++ b/docs/messagecodes.rst @@ -3,8 +3,8 @@ Appendix A. PKGBUILDer message numbers list =========================================== :Info: This is an appendix to the PKGBUILDer documentation. :Author: Kwpolska -:Date: 2011-12-05 -:Version: 2.1.2.18 +:Date: 2011-12-09 +:Version: 2.1.2.19 In order to help debugging, messages are numbered. Each message number has four digits: the first one is the diff --git a/docs/pkgbuilder.8.gz b/docs/pkgbuilder.8.gz index d9bf208..c5fb6fe 100644 Binary files a/docs/pkgbuilder.8.gz and b/docs/pkgbuilder.8.gz differ diff --git a/docs/pkgbuilder.rst b/docs/pkgbuilder.rst index c5ca60b..1deb83f 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -4,8 +4,8 @@ PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. -:Date: 2011-12-05 -:Version: 2.1.2.18 +:Date: 2011-12-09 +:Version: 2.1.2.19 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/pkgbuilder.py b/pkgbuilder.py index 68f1cf6..71bf0d1 100755 --- a/pkgbuilder.py +++ b/pkgbuilder.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -# PKGBUILDer v2.1.2.18 +# PKGBUILDer v2.1.2.19 # A Python AUR helper/library. # Copyright (C) 2011, Kwpolska # All rights reserved. @@ -52,7 +52,7 @@ import functools import logging -VERSION = '2.1.2.18' +VERSION = '2.1.2.19' ### PBDS PB global data storage ### class PBDS: @@ -500,7 +500,7 @@ def depcheck(self, depends): 2.1.2.16 Returns: no -2, no explainations 2.0 Returns: no -1""" if depends == []: - return {} + return ({}, {}) else: parseddeps = {} explainations = {} diff --git a/scripts/pkgbuilder b/scripts/pkgbuilder index 32065fa..10fa2d9 100755 --- a/scripts/pkgbuilder +++ b/scripts/pkgbuilder @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is a part of PKGBUILDer. -# File version: 2.1.2.18 +# File version: 2.1.2.19 # # Copyright (C) 2011, Kwpolska # All rights reserved. diff --git a/setup.py b/setup.py index bf26c78..1d6c67b 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup(name='pkgbuilder', - version='2.1.2.18', + version='2.1.2.19', description='An AUR helper (and library) in python3', author='Kwpolska', author_email='kwpolska@kwpolska.tk',