diff --git a/PKGBUILD b/PKGBUILD index 0cc7d83..7772d72 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Kwpolska pkgname=pkgbuilder -pkgver=2.1.2.12 +pkgver=2.1.2.13 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=('7d9a0c7cc9010cb21d691b4799554d20') +md5sums=('171434d2f351f855f9011bfe75632a1a') package() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/README.rst b/README.rst index 1928ec8..949af4d 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-11-11 -:Version: 2.1.2.12 +:Date: 2011-11-12 +:Version: 2.1.2.13 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/dist/pkgbuilder-2.1.2.13.tar.gz b/dist/pkgbuilder-2.1.2.13.tar.gz new file mode 100644 index 0000000..5242620 Binary files /dev/null and b/dist/pkgbuilder-2.1.2.13.tar.gz differ diff --git a/docs/LICENSE.rst b/docs/LICENSE.rst index b4366ad..95136b6 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-11-11 -:Version: 2.1.2.12 +:Date: 2011-11-12 +:Version: 2.1.2.13 Copyright (C) 2011, Kwpolska All rights reserved. diff --git a/docs/README.rst b/docs/README.rst index 1928ec8..949af4d 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-11-11 -:Version: 2.1.2.12 +:Date: 2011-11-12 +:Version: 2.1.2.13 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/docs/classes.rst b/docs/classes.rst index 813bc96..298287b 100644 --- a/docs/classes.rst +++ b/docs/classes.rst @@ -4,8 +4,8 @@ Classes in PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. -:Date: 2011-11-11 -:Version: 2.1.2.12 +:Date: 2011-11-12 +:Version: 2.1.2.13 .. index:: classes .. module:: PKGBUILDer diff --git a/docs/conf.py b/docs/conf.py index 0e8ac3e..7f44b62 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.1' +version = '2.1.2' # The full version, including alpha/beta/rc tags. -release = '2.1.2.12' +release = '2.1.2.13' # 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 e64eca8..8595af4 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-11-11 -:Version: 2.1.2.12 +:Date: 2011-11-12 +:Version: 2.1.2.13 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 1a07962..848a565 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 a3dfd29..8c256fd 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -4,8 +4,8 @@ PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. -:Date: 2011-11-11 -:Version: 2.1.2.12 +:Date: 2011-11-12 +:Version: 2.1.2.13 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/pkgbuilder.py b/pkgbuilder.py index 55be901..f63f09d 100755 --- a/pkgbuilder.py +++ b/pkgbuilder.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -# PKGBUILDer v2.1.2.12 +# PKGBUILDer v2.1.2.13 # A Python AUR helper/library. # Copyright (C) 2011, Kwpolska # All rights reserved. @@ -52,7 +52,7 @@ import functools import logging -VERSION = '2.1.2.12' +VERSION = '2.1.2.13' ### PBDS PB global data storage ### class PBDS: @@ -193,10 +193,12 @@ def __init__(self, msg): :Arguments: a message.""" self.msg = msg - L.exception(text) + L.exception(self.msg) def __str__(self): - """You want to see error messages, don't you?""" + """You want to see error messages, don't you? + +:Returns: the error message.""" return self.msg ### AUR AUR RPC calls ### diff --git a/scripts/pkgbuilder b/scripts/pkgbuilder index 1ef14f4..dd9b374 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.12 +# File version: 2.1.2.13 # # Copyright (C) 2011, Kwpolska # All rights reserved. diff --git a/setup.py b/setup.py index 9c39344..6c198d3 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup(name='pkgbuilder', - version='2.1.2.12', + version='2.1.2.13', description='An AUR helper (and library) in python3', author='Kwpolska', author_email='kwpolska@kwpolska.tk',