diff --git a/PKGBUILD b/PKGBUILD index 82a1689..0cc7d83 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Kwpolska pkgname=pkgbuilder -pkgver=2.1.2.11 +pkgver=2.1.2.12 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=('d5483149536c7638417da04cd5a96c62') +md5sums=('7d9a0c7cc9010cb21d691b4799554d20') package() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/README.rst b/README.rst index 3c4dbba..1928ec8 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ README for PKGBUILDer :Info: This is the README file for PKGBUILDer. :Author: Kwpolska :Date: 2011-11-11 -:Version: 2.1.2.11 +:Version: 2.1.2.12 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/dist/pkgbuilder-2.1.2.12.tar.gz b/dist/pkgbuilder-2.1.2.12.tar.gz new file mode 100644 index 0000000..19438b6 Binary files /dev/null and b/dist/pkgbuilder-2.1.2.12.tar.gz differ diff --git a/docs/LICENSE.rst b/docs/LICENSE.rst index db3d659..b4366ad 100644 --- a/docs/LICENSE.rst +++ b/docs/LICENSE.rst @@ -4,7 +4,7 @@ Appendix B. License for PKGBUILDer :Info: This is an appendix to the PKGBUILDer documentation. :Author: Kwpolska :Date: 2011-11-11 -:Version: 2.1.2.11 +:Version: 2.1.2.12 Copyright (C) 2011, Kwpolska All rights reserved. diff --git a/docs/README.rst b/docs/README.rst index 3c4dbba..1928ec8 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -4,7 +4,7 @@ README for PKGBUILDer :Info: This is the README file for PKGBUILDer. :Author: Kwpolska :Date: 2011-11-11 -:Version: 2.1.2.11 +:Version: 2.1.2.12 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/docs/classes.rst b/docs/classes.rst index 1f7d7ca..813bc96 100644 --- a/docs/classes.rst +++ b/docs/classes.rst @@ -5,7 +5,7 @@ Classes in PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. :Date: 2011-11-11 -:Version: 2.1.2.11 +:Version: 2.1.2.12 .. index:: classes .. module:: PKGBUILDer diff --git a/docs/conf.py b/docs/conf.py index 134a516..0e8ac3e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '2.1' # The full version, including alpha/beta/rc tags. -release = '2.1.2.11' +release = '2.1.2.12' # 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 ffdbcef..e64eca8 100644 --- a/docs/messagecodes.rst +++ b/docs/messagecodes.rst @@ -4,7 +4,7 @@ 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.11 +:Version: 2.1.2.12 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 13dbe66..1a07962 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 d5368dd..a3dfd29 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -5,7 +5,7 @@ PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. :Date: 2011-11-11 -:Version: 2.1.2.11 +:Version: 2.1.2.12 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/pkgbuilder.py b/pkgbuilder.py index d1e3f0c..55be901 100755 --- a/pkgbuilder.py +++ b/pkgbuilder.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -# PKGBUILDer v2.1.2.11 +# PKGBUILDer v2.1.2.12 # A Python AUR helper/library. # Copyright (C) 2011, Kwpolska # All rights reserved. @@ -52,7 +52,7 @@ import functools import logging -VERSION = '2.1.2.11' +VERSION = '2.1.2.12' ### PBDS PB global data storage ### class PBDS: @@ -276,7 +276,7 @@ def msearch(self, username): :Arguments: username. :Returns: a list.""" - aur_pkgs = self.aur.request('msearch', pkgname) + aur_pkgs = self.aur.request('msearch', username) if aur_pkgs['results'] == 'No results found': return [] else: diff --git a/scripts/pkgbuilder b/scripts/pkgbuilder index beaf946..1ef14f4 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.11 +# File version: 2.1.2.12 # # Copyright (C) 2011, Kwpolska # All rights reserved. diff --git a/setup.py b/setup.py index 3331ae6..9c39344 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup(name='pkgbuilder', - version='2.1.2.11', + version='2.1.2.12', description='An AUR helper (and library) in python3', author='Kwpolska', author_email='kwpolska@kwpolska.tk',