diff --git a/PKGBUILD b/PKGBUILD index 31444be..e05b6f7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Kwpolska pkgname=pkgbuilder -pkgver=2.1.2.14 +pkgver=2.1.2.15 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=('949fa3a72ea6b2e510295d937e7d5ae0') +md5sums=('7b10ec580f1ddf5c274df6eac5e47f04') package() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/README.rst b/README.rst index 4b8b000..dc05e38 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-26 -:Version: 2.1.2.14 +:Version: 2.1.2.15 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/dist/pkgbuilder-2.1.2.15.tar.gz b/dist/pkgbuilder-2.1.2.15.tar.gz new file mode 100644 index 0000000..d27b13d Binary files /dev/null and b/dist/pkgbuilder-2.1.2.15.tar.gz differ diff --git a/docs/LICENSE.rst b/docs/LICENSE.rst index 1c053a5..9d1c396 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-26 -:Version: 2.1.2.14 +:Version: 2.1.2.15 Copyright (C) 2011, Kwpolska All rights reserved. diff --git a/docs/README.rst b/docs/README.rst index 4b8b000..dc05e38 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-26 -:Version: 2.1.2.14 +:Version: 2.1.2.15 PKGBUILDer. A Python AUR helper/library. ========================================= diff --git a/docs/classes.rst b/docs/classes.rst index ef014c8..eb0b3d3 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-26 -:Version: 2.1.2.14 +:Version: 2.1.2.15 .. index:: classes .. module:: PKGBUILDer diff --git a/docs/conf.py b/docs/conf.py index dabd6a4..22ffa86 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.14' +release = '2.1.2.15' # 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 81a15ea..ffd7a80 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-26 -:Version: 2.1.2.14 +:Version: 2.1.2.15 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 c8bf45f..e86d801 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 1221cbd..82e172b 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -5,7 +5,7 @@ PKGBUILDer :Author: Kwpolska :Copyright: See Appendix B. :Date: 2011-11-26 -:Version: 2.1.2.14 +:Version: 2.1.2.15 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/pkgbuilder.py b/pkgbuilder.py index a4ef349..8e6f3c7 100755 --- a/pkgbuilder.py +++ b/pkgbuilder.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -# PKGBUILDer v2.1.2.14 +# PKGBUILDer v2.1.2.15 # A Python AUR helper/library. # Copyright (C) 2011, Kwpolska # All rights reserved. @@ -52,7 +52,7 @@ import functools import logging -VERSION = '2.1.2.14' +VERSION = '2.1.2.15' ### PBDS PB global data storage ### class PBDS: @@ -209,8 +209,8 @@ def __init__(self): """AUR init. :Returns: an AUR object.""" - self.rpc = '{0}://aur.archlinux.org/rpc.pachandle.?type={1}&arg={2}' - self.mrpc = '{0}://aur.archlinux.org/rpc.pachandle.?type=multiinfo{1}' + self.rpc = '{0}://aur.archlinux.org/rpc.php?type={1}&arg={2}' + self.mrpc = '{0}://aur.archlinux.org/rpc.php?type=multiinfo{1}' def jsonreq(self, rtype, arg, prot = 'http'): """Makes a request and returns plain JSON data. diff --git a/scripts/pkgbuilder b/scripts/pkgbuilder index 724e414..bb5b2ae 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.14 +# File version: 2.1.2.15 # # Copyright (C) 2011, Kwpolska # All rights reserved. diff --git a/setup.py b/setup.py index edfc527..05b7eee 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup(name='pkgbuilder', - version='2.1.2.14', + version='2.1.2.15', description='An AUR helper (and library) in python3', author='Kwpolska', author_email='kwpolska@kwpolska.tk',