diff --git a/.pbwrapperhelp b/.pbwrapperhelp index dbe851c..30773cd 100644 --- a/.pbwrapperhelp +++ b/.pbwrapperhelp @@ -34,3 +34,38 @@ options: --noscriptlet do not execute the install scriptlet if one exists --print-format specify how the targets should be printed +usage: pkgbuilder [-h] [-V] [-F] [--userfetch USER] [-i] [-s] [-u] + [--safeupgrade] [-U] [-c] [-C] [--debug] [-d] [-D] [-v] [-w] + [-S] [-y] + [PACKAGE [PACKAGE ...]] + +An AUR helper (and library) in Python 3. + +positional arguments: + PACKAGE AUR/ABS packages to build + +optional arguments: + -h, --help show this help message and exit + -V, --version show version number and quit + +operations: + -F, --fetch fetch package files + --userfetch USER fetch all package files of an user + -i, --info view package information + -s, --search search the AUR for matching strings + -u, --sysupgrade upgrade installed AUR packages + --safeupgrade perform a failsafe upgrade of PKGBUILDer + -U, --upgrade copy package files to pacman cache and install them + +options: + -c, --clean clean up work files after build + -C, --nocolors don't use colors in output + --debug display debug messages + -d, --nodepcheck don't check dependencies (may break makepkg) + -D, --vcsupgrade upgrade all the VCS/date-versioned packages + -v, --novalidation don't check if packages were installed after build + -w, --buildonly don't install packages after building + -S, --sync pacman-like mode + -y, --refresh (dummy) + +Also accepting ABS packages. diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9ec89ba..11c5335 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,8 +5,8 @@ Appendix C. Changelog :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: CHANGELOG @@ -50,15 +50,31 @@ Version History Generation 3 ------------ +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added perliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 PKGBUILDer is now compatible with AURv3. Note this is perliminary support, and as such, there might still be bugs. @@ -81,15 +97,31 @@ Generation 3 3.1.11 * Fix AUR/HTTP exceptions reporting. (via Issue #28) +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added perliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 PKGBUILDer is now compatible with AURv3. Note this is perliminary support, and as such, there might still be bugs. diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 0d0cc97..1806903 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -4,8 +4,8 @@ Appendix A. Contribution rules :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: contributing diff --git a/PKGBUILD b/PKGBUILD index c0f44b9..983ddf8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Kwpolska pkgname=pkgbuilder _pyname=pkgbuilder -pkgver=3.3.0 +pkgver=3.3.1 pkgrel=1 pkgdesc='A Python AUR helper/library.' arch=('any') @@ -10,7 +10,7 @@ license=('BSD') depends=('python' 'pyalpm>=0.5.1-1' 'python-requests' 'rsync') options=(!emptydirs) source=("http://pypi.python.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz") -md5sums=('026c4b68fe57ff21252fffd551c0f216') +md5sums=('e43666b7aa959b4073b190b93e7679f7') package() { cd "${srcdir}/${_pyname}-${pkgver}" diff --git a/PKGBUILD-git b/PKGBUILD-git index beb5872..5cb882c 100644 --- a/PKGBUILD-git +++ b/PKGBUILD-git @@ -2,7 +2,7 @@ pkgname=pkgbuilder-git _pyname=pkgbuilder _gitname=pkgbuilder -pkgver=3.3.0 +pkgver=3.3.1 pkgrel=1 pkgdesc='A Python AUR helper/library. (git version)' arch=('any') diff --git a/README b/README index c4d9f85..fda7eb4 100644 --- a/README +++ b/README @@ -3,8 +3,8 @@ PKGBUILDer. An AUR helper (and library) in Python 3. ===================================================== :Info: This is the README file for PKGBUILDer. :Author: Chris “Kwpolska” Warrick -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index: README diff --git a/README.rst b/README.rst index c4d9f85..fda7eb4 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ PKGBUILDer. An AUR helper (and library) in Python 3. ===================================================== :Info: This is the README file for PKGBUILDer. :Author: Chris “Kwpolska” Warrick -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index: README diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index 9ec89ba..11c5335 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -5,8 +5,8 @@ Appendix C. Changelog :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: CHANGELOG @@ -50,15 +50,31 @@ Version History Generation 3 ------------ +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added perliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 PKGBUILDer is now compatible with AURv3. Note this is perliminary support, and as such, there might still be bugs. @@ -81,15 +97,31 @@ Generation 3 3.1.11 * Fix AUR/HTTP exceptions reporting. (via Issue #28) +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added perliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 Added preliminary AURv3 support. +3.3.1 + * Don’t crash on new RPC fields + * Add PackageBaseID field (in AUR v3.0.0+1) + 3.3.0 PKGBUILDer is now compatible with AURv3. Note this is perliminary support, and as such, there might still be bugs. diff --git a/docs/CONTRIBUTING.rst b/docs/CONTRIBUTING.rst index 0d0cc97..1806903 100644 --- a/docs/CONTRIBUTING.rst +++ b/docs/CONTRIBUTING.rst @@ -4,8 +4,8 @@ Appendix A. Contribution rules :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: contributing diff --git a/docs/LICENSE.rst b/docs/LICENSE.rst index 99c7f75..23c7543 100644 --- a/docs/LICENSE.rst +++ b/docs/LICENSE.rst @@ -3,8 +3,8 @@ Appendix B. License for PKGBUILDer ================================== :Info: This is the license for PKGBUILDer. :Author: Chris “Kwpolska” Warrick -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: LICENSE diff --git a/docs/README.rst b/docs/README.rst index c4d9f85..fda7eb4 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -3,8 +3,8 @@ PKGBUILDer. An AUR helper (and library) in Python 3. ===================================================== :Info: This is the README file for PKGBUILDer. :Author: Chris “Kwpolska” Warrick -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index: README diff --git a/docs/aur.rst b/docs/aur.rst index 1c00738..359a938 100644 --- a/docs/aur.rst +++ b/docs/aur.rst @@ -4,8 +4,8 @@ aur module (AUR class) :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: AUR; RPC .. index:: RPC diff --git a/docs/build.rst b/docs/build.rst index 48073ed..52ed758 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -5,8 +5,8 @@ build module :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: build .. versionadded:: 2.1.0.0 diff --git a/docs/conf.py b/docs/conf.py index fbe27b5..2f35117 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '3.0' # The full version, including alpha/beta/rc tags. -release = '3.3.0' +release = '3.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/exceptions.rst b/docs/exceptions.rst index e338272..e38e6af 100644 --- a/docs/exceptions.rst +++ b/docs/exceptions.rst @@ -5,8 +5,8 @@ Exceptions in PKGBUILDer :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: Exceptions .. versionadded:: 3.0.0 diff --git a/docs/main.rst b/docs/main.rst index 700c724..d7ef083 100644 --- a/docs/main.rst +++ b/docs/main.rst @@ -4,8 +4,8 @@ main module :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: main .. versionadded:: 2.1.3.0 diff --git a/docs/package.rst b/docs/package.rst index 720a486..9e524db 100644 --- a/docs/package.rst +++ b/docs/package.rst @@ -5,8 +5,8 @@ package module (Package, AURPackage, ABSPackage classes) :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: Package .. index:: AURPackage diff --git a/docs/pb.rst b/docs/pb.rst index e122122..4972dbd 100644 --- a/docs/pb.rst +++ b/docs/pb.rst @@ -6,8 +6,8 @@ PBWrapper :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or Appendix B.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 :Wrapper Version: 0.2.3 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/docs/pbds.rst b/docs/pbds.rst index 215a8f8..693dafe 100644 --- a/docs/pbds.rst +++ b/docs/pbds.rst @@ -5,8 +5,8 @@ pbds module (PBDS class) :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. module: pbds diff --git a/docs/pkgbuilder.rst b/docs/pkgbuilder.rst index f6a9fb2..fad3e79 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -6,8 +6,8 @@ PKGBUILDer :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or Appendix B.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/docs/sample-scripts.rst b/docs/sample-scripts.rst index ef3c292..2928dfb 100644 --- a/docs/sample-scripts.rst +++ b/docs/sample-scripts.rst @@ -4,8 +4,8 @@ PKGBUILDer Sample Scripts :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: sample scripts diff --git a/docs/ui.rst b/docs/ui.rst index b7343e1..a3ec35f 100644 --- a/docs/ui.rst +++ b/docs/ui.rst @@ -5,8 +5,8 @@ ui module (UI class) :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: UI .. versionadded:: 3.0.0 diff --git a/docs/upgrade.rst b/docs/upgrade.rst index fdd0c9c..7fdaa65 100644 --- a/docs/upgrade.rst +++ b/docs/upgrade.rst @@ -5,8 +5,8 @@ upgrade module :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: upgrade .. index:: Syu diff --git a/docs/utils.rst b/docs/utils.rst index 27d0801..d4bc531 100644 --- a/docs/utils.rst +++ b/docs/utils.rst @@ -5,8 +5,8 @@ utils module :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 .. index:: utils .. versionadded:: 2.1.0.0 diff --git a/docs/wrapper.rst b/docs/wrapper.rst index 47d2a46..d653357 100644 --- a/docs/wrapper.rst +++ b/docs/wrapper.rst @@ -4,8 +4,8 @@ PBWrapper :Author: Chris “Kwpolska” Warrick :Copyright: © 2011-2014, Kwpolska. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2014-05-28 -:Version: 3.3.0 +:Date: 2014-05-31 +:Version: 3.3.1 :PBWrapper Version: 0.2.3 .. index:: wrapper diff --git a/locale/es/LC_MESSAGES/pkgbuilder.mo b/locale/es/LC_MESSAGES/pkgbuilder.mo index d0d03d2..1a64db3 100644 Binary files a/locale/es/LC_MESSAGES/pkgbuilder.mo and b/locale/es/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/es/LC_MESSAGES/pkgbuilder.po b/locale/es/LC_MESSAGES/pkgbuilder.po index e2d8462..72c569a 100644 --- a/locale/es/LC_MESSAGES/pkgbuilder.po +++ b/locale/es/LC_MESSAGES/pkgbuilder.po @@ -11,9 +11,9 @@ # tufadorin , 2013 msgid "" msgstr "" -"Project-Id-Version: 3.3.0\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" -"POT-Creation-Date: 2014-05-28 14:49+0200\n" +"POT-Creation-Date: 2014-05-31 12:42+0200\n" "PO-Revision-Date: 2014-02-04 16:11+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/pkgbuilder/" diff --git a/locale/it/LC_MESSAGES/pkgbuilder.mo b/locale/it/LC_MESSAGES/pkgbuilder.mo index c5ccc2f..9dddd23 100644 Binary files a/locale/it/LC_MESSAGES/pkgbuilder.mo and b/locale/it/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/it/LC_MESSAGES/pkgbuilder.po b/locale/it/LC_MESSAGES/pkgbuilder.po index cdcfe6b..1078529 100644 --- a/locale/it/LC_MESSAGES/pkgbuilder.po +++ b/locale/it/LC_MESSAGES/pkgbuilder.po @@ -9,9 +9,9 @@ # Kwpolska , 2013 msgid "" msgstr "" -"Project-Id-Version: 3.3.0\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" -"POT-Creation-Date: 2014-05-28 14:49+0200\n" +"POT-Creation-Date: 2014-05-31 12:42+0200\n" "PO-Revision-Date: 2014-02-04 16:11+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Italian (http://www.transifex.com/projects/p/pkgbuilder/" diff --git a/locale/ja/LC_MESSAGES/pkgbuilder.mo b/locale/ja/LC_MESSAGES/pkgbuilder.mo index 34c649f..77f60e5 100644 Binary files a/locale/ja/LC_MESSAGES/pkgbuilder.mo and b/locale/ja/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/ja/LC_MESSAGES/pkgbuilder.po b/locale/ja/LC_MESSAGES/pkgbuilder.po index 5c1f463..5a2b33c 100644 --- a/locale/ja/LC_MESSAGES/pkgbuilder.po +++ b/locale/ja/LC_MESSAGES/pkgbuilder.po @@ -6,9 +6,9 @@ # Translators: msgid "" msgstr "" -"Project-Id-Version: 3.3.0\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" -"POT-Creation-Date: 2014-05-28 14:49+0200\n" +"POT-Creation-Date: 2014-05-31 12:42+0200\n" "PO-Revision-Date: 2014-02-04 15:55+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Japanese (http://www.transifex.com/projects/p/pkgbuilder/" diff --git a/locale/pl/LC_MESSAGES/pkgbuilder.mo b/locale/pl/LC_MESSAGES/pkgbuilder.mo index 2097355..52962fc 100644 Binary files a/locale/pl/LC_MESSAGES/pkgbuilder.mo and b/locale/pl/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/pl/LC_MESSAGES/pkgbuilder.po b/locale/pl/LC_MESSAGES/pkgbuilder.po index 039cf82..48c1fd3 100644 --- a/locale/pl/LC_MESSAGES/pkgbuilder.po +++ b/locale/pl/LC_MESSAGES/pkgbuilder.po @@ -8,9 +8,9 @@ # Kwpolska , 2013 msgid "" msgstr "" -"Project-Id-Version: 3.3.0\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" -"POT-Creation-Date: 2014-05-28 14:49+0200\n" +"POT-Creation-Date: 2014-05-31 12:42+0200\n" "PO-Revision-Date: 2014-02-04 16:00+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Polish (http://www.transifex.com/projects/p/pkgbuilder/" diff --git a/locale/tr/LC_MESSAGES/pkgbuilder.mo b/locale/tr/LC_MESSAGES/pkgbuilder.mo index 52aaad0..1f72c2b 100644 Binary files a/locale/tr/LC_MESSAGES/pkgbuilder.mo and b/locale/tr/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/tr/LC_MESSAGES/pkgbuilder.po b/locale/tr/LC_MESSAGES/pkgbuilder.po index 3f0fa2b..37408b6 100644 --- a/locale/tr/LC_MESSAGES/pkgbuilder.po +++ b/locale/tr/LC_MESSAGES/pkgbuilder.po @@ -10,9 +10,9 @@ # yfdogan , 2013 msgid "" msgstr "" -"Project-Id-Version: 3.3.0\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" -"POT-Creation-Date: 2014-05-28 14:49+0200\n" +"POT-Creation-Date: 2014-05-31 12:42+0200\n" "PO-Revision-Date: 2014-02-04 16:11+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/pkgbuilder/" diff --git a/locale/vi/LC_MESSAGES/pkgbuilder.mo b/locale/vi/LC_MESSAGES/pkgbuilder.mo index cf31adf..9322508 100644 Binary files a/locale/vi/LC_MESSAGES/pkgbuilder.mo and b/locale/vi/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/vi/LC_MESSAGES/pkgbuilder.po b/locale/vi/LC_MESSAGES/pkgbuilder.po index e780181..287f66e 100644 --- a/locale/vi/LC_MESSAGES/pkgbuilder.po +++ b/locale/vi/LC_MESSAGES/pkgbuilder.po @@ -8,9 +8,9 @@ # ppanhh , 2013 msgid "" msgstr "" -"Project-Id-Version: 3.3.0\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" -"POT-Creation-Date: 2014-05-28 14:49+0200\n" +"POT-Creation-Date: 2014-05-31 12:42+0200\n" "PO-Revision-Date: 2014-02-04 16:11+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/pkgbuilder/" diff --git a/messages.pot b/messages.pot index 47f870f..023cc97 100644 --- a/messages.pot +++ b/messages.pot @@ -5,10 +5,10 @@ # msgid "" msgstr "" - "Project-Id-Version: 3.3.0\n" + "Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: Kwpolska \n" - "POT-Creation-Date: 2014-05-28 14:49+0200\n" - "PO-Revision-Date: 2014-05-28 14:49+0200\n" + "POT-Creation-Date: 2014-05-31 12:42+0200\n" + "PO-Revision-Date: 2014-05-31 12:42+0200\n" "Last-Translator: Kwpolska \n" "Language-Team: Kwpolska \n" "Language: en\n" diff --git a/pkgbuilder/__init__.py b/pkgbuilder/__init__.py index ce10bbc..572b8c2 100644 --- a/pkgbuilder/__init__.py +++ b/pkgbuilder/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # All rights reserved. @@ -44,7 +44,7 @@ """ __title__ = 'PKGBUILDer' -__version__ = '3.3.0' +__version__ = '3.3.1' __author__ = 'Kwpolska' __license__ = '3-clause BSD' __docformat__ = 'restructuredtext en' diff --git a/pkgbuilder/aur.py b/pkgbuilder/aur.py index 9715c47..f3965bd 100644 --- a/pkgbuilder/aur.py +++ b/pkgbuilder/aur.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/build.py b/pkgbuilder/build.py index a5b0750..4d647d1 100644 --- a/pkgbuilder/build.py +++ b/pkgbuilder/build.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/exceptions.py b/pkgbuilder/exceptions.py index 91b5eb8..c521e14 100644 --- a/pkgbuilder/exceptions.py +++ b/pkgbuilder/exceptions.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/main.py b/pkgbuilder/main.py index 4e6769f..c0884e6 100644 --- a/pkgbuilder/main.py +++ b/pkgbuilder/main.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/package.py b/pkgbuilder/package.py index d214179..59a3207 100644 --- a/pkgbuilder/package.py +++ b/pkgbuilder/package.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/pbds.py b/pkgbuilder/pbds.py index fea0f1b..0edadc6 100644 --- a/pkgbuilder/pbds.py +++ b/pkgbuilder/pbds.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/ui.py b/pkgbuilder/ui.py index d4708e7..481cda2 100644 --- a/pkgbuilder/ui.py +++ b/pkgbuilder/ui.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/upgrade.py b/pkgbuilder/upgrade.py index 8c5c039..0fbd3f0 100644 --- a/pkgbuilder/upgrade.py +++ b/pkgbuilder/upgrade.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/utils.py b/pkgbuilder/utils.py index 66f9372..52e398d 100644 --- a/pkgbuilder/utils.py +++ b/pkgbuilder/utils.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/pkgbuilder/wrapper.py b/pkgbuilder/wrapper.py index a3f02e7..0bbc158 100644 --- a/pkgbuilder/wrapper.py +++ b/pkgbuilder/wrapper.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- # PBWrapper v0.2.3 -# PKGBUILDer v3.3.0 +# PKGBUILDer v3.3.1 # An AUR helper (and library) in Python 3. # Copyright © 2011-2014, Kwpolska. # See /LICENSE for licensing information. diff --git a/setup.py b/setup.py index 064d48f..7b623b3 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import codecs setup(name='pkgbuilder', - version='3.3.0', + version='3.3.1', description='An AUR helper (and library) in Python 3.', keywords='arch pkgbuild', author='Chris “Kwpolska” Warrick',