From bc1cdaaed1d63972babf1ead3217a5d60d3d3a3a Mon Sep 17 00:00:00 2001 From: Chris Warrick Date: Mon, 29 Jun 2015 10:56:47 +0200 Subject: [PATCH] v4.0.0: AURv4 compatibility, features, bugfixes Signed-off-by: Chris Warrick --- .pbwrapperhelp | 9 ++-- .pypt/hooks/pre-sdist.hook | 2 +- CHANGELOG.rst | 17 +++++++- CONTRIBUTING.rst | 4 +- PKGBUILD | 4 +- PKGBUILD-git | 2 +- README | 4 +- README.rst | 4 +- docs/CHANGELOG.rst | 17 +++++++- docs/CONTRIBUTING.rst | 4 +- docs/LICENSE.rst | 4 +- docs/README.rst | 4 +- docs/aur.rst | 4 +- docs/build.rst | 4 +- docs/conf.py | 4 +- docs/exceptions.rst | 4 +- docs/main.rst | 4 +- docs/package.rst | 4 +- docs/pb.rst | 4 +- docs/pbds.rst | 4 +- docs/pkgbuilder.rst | 4 +- docs/sample-scripts.rst | 4 +- docs/ui.rst | 4 +- docs/upgrade.rst | 4 +- docs/utils.rst | 4 +- docs/wrapper.rst | 4 +- locale/ar/LC_MESSAGES/pkgbuilder.mo | Bin 591 -> 591 bytes locale/ar/LC_MESSAGES/pkgbuilder.po | 14 ++++--- locale/de/LC_MESSAGES/pkgbuilder.mo | Bin 3061 -> 3061 bytes locale/de/LC_MESSAGES/pkgbuilder.po | 11 ++--- locale/es/LC_MESSAGES/pkgbuilder.mo | Bin 8853 -> 8853 bytes locale/es/LC_MESSAGES/pkgbuilder.po | 33 +++++++++++---- locale/id/LC_MESSAGES/pkgbuilder.mo | Bin 505 -> 505 bytes locale/id/LC_MESSAGES/pkgbuilder.po | 11 ++--- locale/it/LC_MESSAGES/pkgbuilder.mo | Bin 8535 -> 8535 bytes locale/it/LC_MESSAGES/pkgbuilder.po | 39 ++++++++++++----- locale/ja/LC_MESSAGES/pkgbuilder.mo | Bin 5272 -> 5272 bytes locale/ja/LC_MESSAGES/pkgbuilder.po | 11 ++--- locale/pl/LC_MESSAGES/pkgbuilder.mo | Bin 9566 -> 11252 bytes locale/pl/LC_MESSAGES/pkgbuilder.po | 62 +++++++++++++++++++++++----- locale/pt/LC_MESSAGES/pkgbuilder.mo | Bin 512 -> 9051 bytes locale/pt/LC_MESSAGES/pkgbuilder.po | 32 ++++++++++---- locale/sv/LC_MESSAGES/pkgbuilder.mo | Bin 509 -> 509 bytes locale/sv/LC_MESSAGES/pkgbuilder.po | 11 ++--- locale/tr/LC_MESSAGES/pkgbuilder.mo | Bin 7710 -> 7710 bytes locale/tr/LC_MESSAGES/pkgbuilder.po | 32 ++++++++++---- locale/vi/LC_MESSAGES/pkgbuilder.mo | Bin 8562 -> 8562 bytes locale/vi/LC_MESSAGES/pkgbuilder.po | 32 ++++++++++---- messages.pot | 6 +-- pkgbuilder/__init__.py | 4 +- pkgbuilder/__main__.py | 5 ++- pkgbuilder/aur.py | 2 +- pkgbuilder/build.py | 2 +- pkgbuilder/exceptions.py | 2 +- pkgbuilder/package.py | 2 +- pkgbuilder/pbds.py | 2 +- pkgbuilder/ui.py | 2 +- pkgbuilder/upgrade.py | 2 +- pkgbuilder/utils.py | 2 +- pkgbuilder/wrapper.py | 2 +- setup.py | 2 +- 61 files changed, 307 insertions(+), 147 deletions(-) diff --git a/.pbwrapperhelp b/.pbwrapperhelp index 271011b..e1c480b 100644 --- a/.pbwrapperhelp +++ b/.pbwrapperhelp @@ -39,8 +39,9 @@ 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] [-U] [-4] - [-c] [-C] [--debug] [-d] [-D] [-v] [-w] [-S] [-y] +usage: pkgbuilder [-h] [-V] [-F] [--userfetch USER] [-i] [-s] [-u] [-U] [-c] + [-C] [--debug] [-d] [-D] [-v] [-w] [--skippgpcheck] [-S] + [-y] [PACKAGE [PACKAGE ...]] An AUR helper (and library) in Python 3. @@ -61,14 +62,14 @@ operations: -U, --upgrade copy package files to pacman cache and install them options: - -4, --aur4 use aur4.archlinux.org - -c, --clean clean up work files after build + -c, --clean clean up work files before and 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 + --skippgpcheck do not verify source files with PGP signatures -S, --sync pacman-like mode -y, --refresh (dummy) diff --git a/.pypt/hooks/pre-sdist.hook b/.pypt/hooks/pre-sdist.hook index 5df676e..42a7c14 100644 --- a/.pypt/hooks/pre-sdist.hook +++ b/.pypt/hooks/pre-sdist.hook @@ -1,7 +1,7 @@ #!/bin/zsh # pbwrapper help testing pacman -Sh > /tmp/pbwrapperhelp -pkgbuilder -h >> /tmp/pbwrapperhelp +python -m pkgbuilder -h >> /tmp/pbwrapperhelp diff -u .pbwrapperhelp /tmp/pbwrapperhelp > /tmp/pbwrapperdiff if [[ $? = 1 ]]; then diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 79b8736..611b913 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,8 +5,8 @@ Appendix C. Changelog :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: CHANGELOG @@ -47,6 +47,19 @@ More information can be found on GitHub in the `releases section :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: contributing diff --git a/PKGBUILD b/PKGBUILD index 55de443..c80b446 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Chris Warrick pkgname=pkgbuilder _pyname=pkgbuilder -pkgver=3.5.1 +pkgver=4.0.0 pkgrel=1 pkgdesc='A Python AUR helper/library.' arch=('any') @@ -10,7 +10,7 @@ license=('BSD') depends=('python' 'python-setuptools' 'pyalpm>=0.5.1-1' 'python-requests' 'python-srcinfo' 'rsync') options=(!emptydirs) source=("https://pypi.python.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz") -md5sums=('03da7475ac19fe95c70102f3af9355e9') +md5sums=('e878393d01328419ee485844392e4c5c') package() { cd "${srcdir}/${_pyname}-${pkgver}" diff --git a/PKGBUILD-git b/PKGBUILD-git index 4648d27..ba0a601 100644 --- a/PKGBUILD-git +++ b/PKGBUILD-git @@ -2,7 +2,7 @@ pkgname=pkgbuilder-git _pyname=pkgbuilder _gitname=pkgbuilder -pkgver=3.5.1.r2.gc019167 +pkgver=4.0.0 pkgrel=1 pkgdesc='A Python AUR helper/library. (git version)' arch=('any') diff --git a/README b/README index 5f6284f..8628dd6 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 Warrick -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index: README diff --git a/README.rst b/README.rst index 5f6284f..8628dd6 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 Warrick -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index: README diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index 79b8736..611b913 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -5,8 +5,8 @@ Appendix C. Changelog :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: CHANGELOG @@ -47,6 +47,19 @@ More information can be found on GitHub in the `releases section :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: contributing diff --git a/docs/LICENSE.rst b/docs/LICENSE.rst index 26cefce..9da9ed9 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 Warrick -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: LICENSE diff --git a/docs/README.rst b/docs/README.rst index 5f6284f..8628dd6 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 Warrick -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index: README diff --git a/docs/aur.rst b/docs/aur.rst index d010f2a..b77f66d 100644 --- a/docs/aur.rst +++ b/docs/aur.rst @@ -4,8 +4,8 @@ aur module (AUR class) :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: AUR; RPC .. index:: RPC diff --git a/docs/build.rst b/docs/build.rst index 899ad4a..4dddb31 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -5,8 +5,8 @@ build module :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: build .. versionadded:: 2.1.0.0 diff --git a/docs/conf.py b/docs/conf.py index 1ce2a6b..d1b5eb5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '3.5.1' +version = '4.0.0' # The full version, including alpha/beta/rc tags. -release = '3.5.1' +release = '4.0.0' # 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 60438d1..95863b8 100644 --- a/docs/exceptions.rst +++ b/docs/exceptions.rst @@ -5,8 +5,8 @@ Exceptions in PKGBUILDer :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: Exceptions .. versionadded:: 3.0.0 diff --git a/docs/main.rst b/docs/main.rst index fb05626..60e82e0 100644 --- a/docs/main.rst +++ b/docs/main.rst @@ -4,8 +4,8 @@ __main__ module :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: main .. versionchanged:: 4.0.0 diff --git a/docs/package.rst b/docs/package.rst index 741287d..fa7aade 100644 --- a/docs/package.rst +++ b/docs/package.rst @@ -5,8 +5,8 @@ package module (Package, AURPackage, ABSPackage classes) :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: Package .. index:: AURPackage diff --git a/docs/pb.rst b/docs/pb.rst index cc48c65..7caca32 100644 --- a/docs/pb.rst +++ b/docs/pb.rst @@ -6,8 +6,8 @@ PBWrapper :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or Appendix B.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 :Wrapper Version: 0.2.3 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/docs/pbds.rst b/docs/pbds.rst index 80973dc..236423e 100644 --- a/docs/pbds.rst +++ b/docs/pbds.rst @@ -5,8 +5,8 @@ pbds module (PBDS class) :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. module: pbds diff --git a/docs/pkgbuilder.rst b/docs/pkgbuilder.rst index 5f3fefa..0538096 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -6,8 +6,8 @@ PKGBUILDer :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or Appendix B.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/docs/sample-scripts.rst b/docs/sample-scripts.rst index b2d1764..1b11d62 100644 --- a/docs/sample-scripts.rst +++ b/docs/sample-scripts.rst @@ -4,8 +4,8 @@ PKGBUILDer Sample Scripts :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: sample scripts diff --git a/docs/ui.rst b/docs/ui.rst index 5a442f2..ea89337 100644 --- a/docs/ui.rst +++ b/docs/ui.rst @@ -5,8 +5,8 @@ ui module (UI class) :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: UI .. versionadded:: 3.0.0 diff --git a/docs/upgrade.rst b/docs/upgrade.rst index e391fda..22f446d 100644 --- a/docs/upgrade.rst +++ b/docs/upgrade.rst @@ -5,8 +5,8 @@ upgrade module :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: upgrade .. index:: Syu diff --git a/docs/utils.rst b/docs/utils.rst index 61ec5b0..3ed13b5 100644 --- a/docs/utils.rst +++ b/docs/utils.rst @@ -5,8 +5,8 @@ utils module :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 .. index:: utils .. versionadded:: 2.1.0.0 diff --git a/docs/wrapper.rst b/docs/wrapper.rst index 9b4ecef..f8c3d28 100644 --- a/docs/wrapper.rst +++ b/docs/wrapper.rst @@ -4,8 +4,8 @@ PBWrapper :Author: Chris Warrick :Copyright: © 2011-2015, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2015-06-22 -:Version: 3.5.1 +:Date: 2015-06-29 +:Version: 4.0.0 :PBWrapper Version: 0.2.3 .. index:: wrapper diff --git a/locale/ar/LC_MESSAGES/pkgbuilder.mo b/locale/ar/LC_MESSAGES/pkgbuilder.mo index 407b5851054d4c20571602ace26f959f6cb56c91..2428a54b37d255e80c43b7f76edcc0d8c21d95b1 100644 GIT binary patch delta 62 zcmX@la-L;^FRO{3fu6y{pm;4)BW(jC0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPQ(Xfy RT_Z~c0}Cr7(~Y-F7y&Gq5r6;y delta 62 zcmX@la-L;^FRQVhsh;7)pm;4KQ*8qy0|TxAf8C(evdrSl{5)Nk#FA7i1tSAP6J0|i RT_ZCELrW`D!;QB~7y&I$5q|&x diff --git a/locale/ar/LC_MESSAGES/pkgbuilder.po b/locale/ar/LC_MESSAGES/pkgbuilder.po index 45ef9ea..2cc5951 100644 --- a/locale/ar/LC_MESSAGES/pkgbuilder.po +++ b/locale/ar/LC_MESSAGES/pkgbuilder.po @@ -1,21 +1,23 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/pkgbuilder/language/ar/)\n" +"Language-Team: Arabic (http://www.transifex.com/projects/p/pkgbuilder/" +"language/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. TRANSLATORS: translate the whole sentence. #. Alternatively, use translation instead of locale. diff --git a/locale/de/LC_MESSAGES/pkgbuilder.mo b/locale/de/LC_MESSAGES/pkgbuilder.mo index 19f15591aecf3b192f047b1b6d0b2471a89f3dfb..17343bb1702b14882c5a7f9f24f029e3f236e5cd 100644 GIT binary patch delta 43 zcmew={#AU#YBp9AJp(<1$s5?>nM{o)3$jb|n(7*u=^9xo7+6>tnQpdZ-@^g`9Tp3Z delta 43 zcmew={#AU#YBpA5JySiy$s5?>nT$*)3$jb|n&=uD=^B|S7+PAH8g8~^-@^g`9byZP diff --git a/locale/de/LC_MESSAGES/pkgbuilder.po b/locale/de/LC_MESSAGES/pkgbuilder.po index 7cbccba..882b050 100644 --- a/locale/de/LC_MESSAGES/pkgbuilder.po +++ b/locale/de/LC_MESSAGES/pkgbuilder.po @@ -1,21 +1,22 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: # Max Mustermann , 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: German (http://www.transifex.com/projects/p/pkgbuilder/language/de/)\n" +"Language-Team: German (http://www.transifex.com/projects/p/pkgbuilder/" +"language/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANSLATORS: translate the whole sentence. diff --git a/locale/es/LC_MESSAGES/pkgbuilder.mo b/locale/es/LC_MESSAGES/pkgbuilder.mo index 6327ce2ecda6fb682dd4b41e2940760d4d58ae11..cf56c2d2d98b54189a070ce09ee9fe19919c60b7 100644 GIT binary patch delta 65 zcmbR0I@NWn)4U7y7xB~ojgHp>fi!<}{bX^ilQmqt>3=Bfi!<}{bX^ilQmqt>3=B, 2013-2014 # Bernardo Miguel Savone , 2013 @@ -11,16 +11,17 @@ # tufadorin , 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Spanish (http://www.transifex.com/projects/p/pkgbuilder/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/pkgbuilder/" +"language/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANSLATORS: translate the whole sentence. @@ -162,7 +163,9 @@ msgstr "Error al procesar {0}: {1}" msgid "" "PKGBUILDer (or the requests library) had problems with fulfilling an HTTP " "request." -msgstr "PKGBUILDer (o las requests de librerías) tuvo problemas con el cumplimiento de una solicitud HTTP." +msgstr "" +"PKGBUILDer (o las requests de librerías) tuvo problemas con el cumplimiento " +"de una solicitud HTTP." #: pkgbuilder/build.py:37 msgid "Validating installation status..." @@ -532,12 +535,26 @@ msgid "" "\n" "Additional options:\n" " -L, --unlock unlock the pacman database" -msgstr "uso: {0} [...]\n\nPBWrapper, un wrapper para pacman y PKGBUILDer.\n\n{1}\n\nSe aplicara la sintaxis de Pacman y PKGBUILDer. Consulta los comandos manpages/help\npara más detalles.\n\nOpciones adicionales:\n -L, --unlock desbloquea la base de datos de pacman" +msgstr "" +"uso: {0} [...]\n" +"\n" +"PBWrapper, un wrapper para pacman y PKGBUILDer.\n" +"\n" +"{1}\n" +"\n" +"Se aplicara la sintaxis de Pacman y PKGBUILDer. Consulta los comandos " +"manpages/help\n" +"para más detalles.\n" +"\n" +"Opciones adicionales:\n" +" -L, --unlock desbloquea la base de datos de pacman" #. A module only for gettext locale provision. #: localeprovider.py:2 msgid "usage" -msgstr "\t\nmanejo" +msgstr "" +"\t\n" +"manejo" #: localeprovider.py:3 msgid "positional arguments" diff --git a/locale/id/LC_MESSAGES/pkgbuilder.mo b/locale/id/LC_MESSAGES/pkgbuilder.mo index e13f99eea75b0e97b147029ab0f7977a692c8577..93b25823d5ebcb9c8a8b7d215726aa55f7a1a9e9 100644 GIT binary patch delta 62 zcmey#{F8ZtFRO{3fu6y{pm;4)BW(jC0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPQ(Xfy RT_Z~c0}Cr7(~Y;~7y&p5qkgt diff --git a/locale/id/LC_MESSAGES/pkgbuilder.po b/locale/id/LC_MESSAGES/pkgbuilder.po index 18b65bb..db31fcf 100644 --- a/locale/id/LC_MESSAGES/pkgbuilder.po +++ b/locale/id/LC_MESSAGES/pkgbuilder.po @@ -1,20 +1,21 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/pkgbuilder/language/id/)\n" +"Language-Team: Indonesian (http://www.transifex.com/projects/p/pkgbuilder/" +"language/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANSLATORS: translate the whole sentence. diff --git a/locale/it/LC_MESSAGES/pkgbuilder.mo b/locale/it/LC_MESSAGES/pkgbuilder.mo index a24f94ee87e8b16938c5fae929e026e53fcce97e..d9113e376898b8c6f8a808d4afd62c6ddcf6cf5e 100644 GIT binary patch delta 43 zcmccablqvg4tnQm?qzQ_vzL0k, 2013-2014 # Bernardo Miguel Savone , 2013 @@ -9,16 +9,17 @@ # Chris Warrick , 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/pkgbuilder/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/projects/p/pkgbuilder/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANSLATORS: translate the whole sentence. @@ -105,7 +106,8 @@ msgstr "aggiornare tutti i pacchetti VCS/data-versionati" #: pkgbuilder/__main__.py:93 msgid "don't check if packages were installed after build" -msgstr "non controllare se i pacchetti sono stati installati dopo la costruzione" +msgstr "" +"non controllare se i pacchetti sono stati installati dopo la costruzione" #: pkgbuilder/__main__.py:96 msgid "don't install packages after building" @@ -160,7 +162,9 @@ msgstr "Errore durante l'elaborazione di {0}: {1}" msgid "" "PKGBUILDer (or the requests library) had problems with fulfilling an HTTP " "request." -msgstr "PKGBUILDer (o la libreria richiesta) ha avuto problemi nell' soddisfare a una richiesta HTTP." +msgstr "" +"PKGBUILDer (o la libreria richiesta) ha avuto problemi nell' soddisfare a " +"una richiesta HTTP." #: pkgbuilder/build.py:37 msgid "Validating installation status..." @@ -359,7 +363,9 @@ msgstr "Annullato dall'utente! Uscita..." #. TRANSLATORS: see pacman. #: pkgbuilder/pbds.py:49 msgid "Interrupt signal received\n" -msgstr "interrompere ssegnale ricevuto\n\n" +msgstr "" +"interrompere ssegnale ricevuto\n" +"\n" #: pkgbuilder/pbds.py:88 pkgbuilder/pbds.py:234 msgid "ERROR:" @@ -443,7 +449,8 @@ msgstr "Nuova versione" #. string stolen from pacman #: pkgbuilder/upgrade.py:207 msgid "warning: insufficient columns available for table display" -msgstr "attenzione: colonne disponibili insufficienti per visualizzare la tabella" +msgstr "" +"attenzione: colonne disponibili insufficienti per visualizzare la tabella" #: pkgbuilder/upgrade.py:224 pkgbuilder/upgrade.py:230 msgid "Proceed with installation? [Y/n] " @@ -530,7 +537,19 @@ msgid "" "\n" "Additional options:\n" " -L, --unlock unlock the pacman database" -msgstr "utilizzo: {0} [...]\n\nPBWrapper, un wrapper per pacman e PKGBUILDer.\n\n{1}\n\nSi applicano le sintassi di Pacman e PKGBUILDer. Consultare i loro comandi manpages/help\nper maggiori dettagli.\n\nOpzioni addizionali:\n -L, --unlock sblocca il database di pacman" +msgstr "" +"utilizzo: {0} [...]\n" +"\n" +"PBWrapper, un wrapper per pacman e PKGBUILDer.\n" +"\n" +"{1}\n" +"\n" +"Si applicano le sintassi di Pacman e PKGBUILDer. Consultare i loro comandi " +"manpages/help\n" +"per maggiori dettagli.\n" +"\n" +"Opzioni addizionali:\n" +" -L, --unlock sblocca il database di pacman" #. A module only for gettext locale provision. #: localeprovider.py:2 diff --git a/locale/ja/LC_MESSAGES/pkgbuilder.mo b/locale/ja/LC_MESSAGES/pkgbuilder.mo index 7bc915ab37dc5598d8cd124ea4922239162fac95..a5113504802f4ddc5cc11ce973395cb5596d815a 100644 GIT binary patch delta 43 zcmbQCIYV;;CpW8!o`IghWIpbACR3xy`P|aHrn&}Zx<-}?1{PLErkkg8Gjaj|QhMT8zGjaj|\n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Japanese (http://www.transifex.com/projects/p/pkgbuilder/language/ja/)\n" +"Language-Team: Japanese (http://www.transifex.com/projects/p/pkgbuilder/" +"language/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANSLATORS: translate the whole sentence. diff --git a/locale/pl/LC_MESSAGES/pkgbuilder.mo b/locale/pl/LC_MESSAGES/pkgbuilder.mo index 67053c76a21296707bcb7bfa526d2031c1aed80b..251a4828cfa8900f513c7d785d796cbf874cc5fa 100644 GIT binary patch delta 4026 zcmai#eQZ@{9mk)R*WJn37!_DyJVhorpmw}$&|xW1UgWI^7PJ%L^xo5QdSA}jIp@;# zHuWaJMB~dAtCP#Ln$16qfy9}Z;LH|{#t@@R+$LmxzUQ7x*+-A&O@KN{ycn01BpM*N{ z99#y+Q~n;_!TKGz2+qzJ(+rnE>FCx+WMa%qP@Y|ZvhW&| z2MgvH^C9>EoDO@SJn4npVTMwkfr`iz@DO|ow!yzc3!4ecYPcE7AP@ez+F;C=n8>o? zoyL3+ejZA}cc3o%XSzR!JZQZfDk58<&O1;kcnm6%=iw^&9BhZLK^Z=8UhU!qa5n2r zu!?bJ8xw{8Ae2WVa2-4cb-~YIE4&Op3>)sQd9o6&W!(c6xi3H&@=VHKL;lR)_>spq zAikQV^J|8-&L{pjXFAwe0K1_S4!|b(E!YTOgp`9Bht!q%dAfcDVw1T775cwG>AME` zGw<=ENX2UicoA$3KM%;qTzR@H(6Un|b&SY=KHyGgfPV zJ=_G_Q^xQC)-OOB%DfI`=$k431KU_4NuF5(s)+yZgJ zWZ@3@Ij9#Vpe()$74q36PzK%sRkZg*MeISS@4{|)7LV|Frm zuK`OTPM87QRMnn^$Kf~Oa`-k}0heH<4Bf%c8t6gQ&QnkxKM!TlYp@f(0XM?sDAE2g zhz-VrGr8YjkJGJFVLh8AWpUq!VF%9CU1`V9OS>z_a={x_7KyNRz- zyAi6U24D-ULPhu@tg5IkF;VU>L+Z@D0gu4zP%j?F?P)L%r$Zmgz!>U7at0~_UxqW_ zMX2|_57n-}fCSIH3iaMUpuU9vT|xY1@k&Zxq2CQBc$8pSi$~4EYUIExZo7 z&pe1Iq)OKyq7Kkd3rjKgB<}&U8~HTyapbdzi&#WM(Y_sdi2IXJ_^=oGB%-mthUD^f z%qjYtBVeXz5XHnR>MQwnl;AAn6Nu8V1NjuvgQx?P(qqUYNPSd4$_(d{aCN7<+hHfN z4ap-KCy^X-6uA#kzBQB%4Hc$F7t)V-$RT7uqBhk~J8E`%yjzC~oKH?N4ygY%_STRT(QWBmC?YD% zJ&1#-tr`)H0+L1gv`EKhcs!k}CDr#!5q-ck+K>T6U9bk3KK{emUvF4c@Jn84z{V$C zJK)7ObOS%~Vm}-n+nnj#(&dG2Rx3NwHfo(h=sLM!>ptd1akSb71=opO8D%ZzZ}$e zlj8$nz@4Fg%F9h1wlTA}xRnR- zxIgEWh7FWT$(92<MMJNoXMsoNyUwCnEPtO0@bB9 zsWdk(hb1iHS?k!1J6~Kvp{ab6iqs@`Yr&5F;I2pKM|m#@^e9M+OM35_ccXE}`qsAA zwz0)c#~U}S9UEl$yZC%_DlZc`K(6@b4kz~o+h2~zNb+TIz!c5g{bO4+9TOP zpB5p#mE?w+CLSlPvNvg!d|bx-N^)t^D!tU_#M6Ox>&7I#vTO3RAHCnFTbo6?s}tu^ z^OJr#;JFU!F(7$O_o`jG1JBL#VM~YHQM()+jwVk#wWFz)q+hzDxYgG5c$L=VTcmzL z%hVUA7P83J8|G#WsD=hz8ZIbDvD-QxEpBdHN6k#0dU#~r>f3u}B?SJWh-^Ks{ delta 2342 zcmZwIe@s!sUl>!MG@K$r8O6E(iqj!^Cb{29i(+MiiUFrkib&(aoqu ztGVSZYSZRs|JZ7icKRo`)*n*Vn%R%d<{$B&%MIHyU9)zz-k)<1TYvP7?|D7v+T|mwFCa%T+ubYYWs2iJ+kF3vg1eJk( z*o_BqJ${QJOyPaFa%p-(aV+9|4E6mdkKW^Q_o8&Csxdp?Kx zoWF+}=woCo`wqF)enI~1Hx7EvZ7jqH1?0yrWR)zAtg`jyk$+tn;z9uTpi(-4deEy_ zfYYdfK0+*ouyoIh$=ac_NI>)&nFJc69 z8I_G-9mqYl*|Q(lb3W#szmKY&8C-#vkh$13O!;^QudfW~L%mQDs>Z^o7iv$?3DMc^ zxgV9vqo@?0M7_~0YAJrldoZ8Z&>FU&9z2Hn-UMp5e2Dt~m#9o!L1i|Z(eK9P*oui5 zoi%h0pi+ARHSk&F&n|ONjr@bUv5L*F?`=i>4(#Lb0KS3x{tu`L&ZAOX$ZRyBQVu!T zfXYxOvYivwOQ(km1K5N!sDb9O9rIY=5cVLeV+U{ur?3*Qp!WY#Hn}Di!?oCttb)CU zdcotU37o?={0TQ`{}+%SeXtExRQ;$QnsL3k!$;C|F| zPIJ%%FQAs{2C{m#I+V_EGX@h}*hNQ0auBtaNANK`fx6*OR531NU9`^wsNz|H+UHfM zH(iHH`6kqTanv>&Mty$_wapJ9bFovHAba*T9o=vlH{vbSnzv9vD#j69>m&8ZM|P4t zYv5Uo<9XD5#k_7K_Ms+x6t&jVsO@9%02_#M zqKi;HJWZ%hdWj0+|JpO&#clWmkwt7LRA*}1Q9-xoZqrt`LRBm~h^@pZp`zPNs69dq z6Mo`hqMy)Dax;|Ok}FIk?`>>SJa!|zPxe&chd0_S|m(Sp;-`od?O&k9ritlFAb zO(c1yc*q}(B}+>xvg<;TXj3HSbe4oNk}sEaIDePz&2U~>74$nlR_6JWsjBnItKo6y IQ1y7mzXo*G*Z=?k diff --git a/locale/pl/LC_MESSAGES/pkgbuilder.po b/locale/pl/LC_MESSAGES/pkgbuilder.po index 000df67..84b5827 100644 --- a/locale/pl/LC_MESSAGES/pkgbuilder.po +++ b/locale/pl/LC_MESSAGES/pkgbuilder.po @@ -1,24 +1,26 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: # Chris Warrick , 2014-2015 # Chris Warrick , 2013 # Chris Warrick , 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:29+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Polish (http://www.transifex.com/projects/p/pkgbuilder/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/projects/p/pkgbuilder/" +"language/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #. TRANSLATORS: translate the whole sentence. #. Alternatively, use translation instead of locale. @@ -159,7 +161,9 @@ msgstr "Błąd podczas przetwarzania {0}: {1}" msgid "" "PKGBUILDer (or the requests library) had problems with fulfilling an HTTP " "request." -msgstr "PKGBUILDer (lub bliblioteka requests) miała problemy z wypełniem żądania HTTP." +msgstr "" +"PKGBUILDer (lub bliblioteka requests) miała problemy z wypełniem żądania " +"HTTP." #: pkgbuilder/build.py:37 msgid "Validating installation status..." @@ -213,7 +217,9 @@ msgstr "znaleziono istniejący pakiet {0}" #: pkgbuilder/build.py:182 #, python-brace-format msgid "makepkg (or someone else) failed and returned {0}." -msgstr "tworzenie pakietu przez makepkg (lub coś innego) nie powiodło się i zwróciło {0}." +msgstr "" +"tworzenie pakietu przez makepkg (lub coś innego) nie powiodło się i zwróciło " +"{0}." #: pkgbuilder/build.py:318 #, python-brace-format @@ -384,7 +390,9 @@ msgstr "Inicjalizowanie dostępu do pacmana..." msgid "" "Running as root is not allowed as it can cause catastrophic damage to your " "system!" -msgstr "Uruchamianie jako root nie jest dozwolone, ponieważ może to spowodować katastrofalne szkody!" +msgstr "" +"Uruchamianie jako root nie jest dozwolone, ponieważ może to spowodować " +"katastrofalne szkody!" #: pkgbuilder/pbds.py:158 msgid "Please restart PKGBUILDer as a regular user." @@ -499,7 +507,28 @@ msgid "" "First Submitted: {fsb}\n" "Last Updated : {upd}\n" "Description : {dsc}\n" -msgstr "Repozytorium : aur\nNazwa : {nme}\nBaza pakietu : {bse}\nWersja : {ver}\nURL : {url}\nLicencje : {lic}\nGrupy : {grp}\nDostarcza : {prv}\nZależy od : {dep}\nZależności budowania: {mkd}\nZależności sprawdzania: {ckd}\nOpcjonalne zależności: {opt}\nKonfliktuje z : {cnf}\nZastępuje : {rpl}\nGłosy : {cmv}\nPopularność : {pop}\nNieaktualny : {ood}\nOpiekun : {mnt}\nWysłany : {fsb}\nOst. aktualiz. : {upd}\nOpis : {dsc}\n" +msgstr "" +"Repozytorium : aur\n" +"Nazwa : {nme}\n" +"Baza pakietu : {bse}\n" +"Wersja : {ver}\n" +"URL : {url}\n" +"Licencje : {lic}\n" +"Grupy : {grp}\n" +"Dostarcza : {prv}\n" +"Zależy od : {dep}\n" +"Zależności budowania: {mkd}\n" +"Zależności sprawdzania: {ckd}\n" +"Opcjonalne zależności: {opt}\n" +"Konfliktuje z : {cnf}\n" +"Zastępuje : {rpl}\n" +"Głosy : {cmv}\n" +"Popularność : {pop}\n" +"Nieaktualny : {ood}\n" +"Opiekun : {mnt}\n" +"Wysłany : {fsb}\n" +"Ost. aktualiz. : {upd}\n" +"Opis : {dsc}\n" #: pkgbuilder/utils.py:183 msgid "yes" @@ -529,7 +558,18 @@ msgid "" "\n" "Additional options:\n" " -L, --unlock unlock the pacman database" -msgstr "sposób użycia: {0} [...]\n\nPBWrapper, wrapper dla pacmana i PKGBUILDera.\n\n{1}\n\nObowiązuje składnia pacmana i PKGBUILDera. Zajrzyj do ich stron\nw podręczniku man lub do komend pomocy, aby dowiedzieć się więcej.\n\nDodatkowe opcje:\n -L, --unlock odblokuj bazę danych pacmana" +msgstr "" +"sposób użycia: {0} [...]\n" +"\n" +"PBWrapper, wrapper dla pacmana i PKGBUILDera.\n" +"\n" +"{1}\n" +"\n" +"Obowiązuje składnia pacmana i PKGBUILDera. Zajrzyj do ich stron\n" +"w podręczniku man lub do komend pomocy, aby dowiedzieć się więcej.\n" +"\n" +"Dodatkowe opcje:\n" +" -L, --unlock odblokuj bazę danych pacmana" #. A module only for gettext locale provision. #: localeprovider.py:2 diff --git a/locale/pt/LC_MESSAGES/pkgbuilder.mo b/locale/pt/LC_MESSAGES/pkgbuilder.mo index 91d30168e5a3c4641aceb5d98598597de944d686..bb6e299e9a5438d1e4ea41025c34d41c67a15cb7 100644 GIT binary patch literal 9051 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 delta 101 zcmccZ*1%$MPl#nI0}wC*u?!Ha05LNV>i{tbSOD=cprj>`2C0F8$pIpwtj2n#dWMs; hMB)kgH8j#SGE*?Lv@$i^{8>bm5deK?4(tE` diff --git a/locale/pt/LC_MESSAGES/pkgbuilder.po b/locale/pt/LC_MESSAGES/pkgbuilder.po index cb9890e..4b41172 100644 --- a/locale/pt/LC_MESSAGES/pkgbuilder.po +++ b/locale/pt/LC_MESSAGES/pkgbuilder.po @@ -1,21 +1,22 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: # Thiago Perrotta , 2015 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Portuguese (http://www.transifex.com/projects/p/pkgbuilder/language/pt/)\n" +"Language-Team: Portuguese (http://www.transifex.com/projects/p/pkgbuilder/" +"language/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANSLATORS: translate the whole sentence. @@ -157,7 +158,9 @@ msgstr "Erro enquanto processava {0}: {1}" msgid "" "PKGBUILDer (or the requests library) had problems with fulfilling an HTTP " "request." -msgstr "PKGBUILDer (ou a biblioteca de requisição) teve problemas para realizar uma requisição HTTP" +msgstr "" +"PKGBUILDer (ou a biblioteca de requisição) teve problemas para realizar uma " +"requisição HTTP" #: pkgbuilder/build.py:37 msgid "Validating installation status..." @@ -382,7 +385,9 @@ msgstr "Inicializando acesso do pacman..." msgid "" "Running as root is not allowed as it can cause catastrophic damage to your " "system!" -msgstr "Rodar como root não é permitido já que isso pode causar danos catastróficos para o seu sistema!" +msgstr "" +"Rodar como root não é permitido já que isso pode causar danos catastróficos " +"para o seu sistema!" #: pkgbuilder/pbds.py:158 msgid "Please restart PKGBUILDer as a regular user." @@ -527,7 +532,18 @@ msgid "" "\n" "Additional options:\n" " -L, --unlock unlock the pacman database" -msgstr "uso: {0} [...]\n\nPBWrapper, um wrapper para o pacman e para o PKGBUILDer.\n\n{1}\n\nSintaxes do Pacman e do PKGBUILDer se aplicam. Consulte seus manuais para mais detalhes.\n\nOpções adicionais:\n -L, --desbloquear desbloquear o banco de dados do pacman" +msgstr "" +"uso: {0} [...]\n" +"\n" +"PBWrapper, um wrapper para o pacman e para o PKGBUILDer.\n" +"\n" +"{1}\n" +"\n" +"Sintaxes do Pacman e do PKGBUILDer se aplicam. Consulte seus manuais para " +"mais detalhes.\n" +"\n" +"Opções adicionais:\n" +" -L, --desbloquear desbloquear o banco de dados do pacman" #. A module only for gettext locale provision. #: localeprovider.py:2 diff --git a/locale/sv/LC_MESSAGES/pkgbuilder.mo b/locale/sv/LC_MESSAGES/pkgbuilder.mo index 9bd9a720840812f1a4d1f8b2dfb736d0fb69a169..b0165e62b63f0fdd7959c9748b9ffbe8c2a61f42 100644 GIT binary patch delta 62 zcmey%{FixxFRO{3fu6y{pm;4)BW(jC0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPQ(Xfy RT_Z~c0}Cr7(~Y;47y&_P5r_Z) delta 62 zcmey%{FixxFRQVhsh;7)pm;4KQ*8qy0|TxAf8C(evdrSl{5)Nk#FA7i1tSAP6J0|i RT_ZCELrW`D!;QC<7y&{b5r+T( diff --git a/locale/sv/LC_MESSAGES/pkgbuilder.po b/locale/sv/LC_MESSAGES/pkgbuilder.po index 05f36a9..575282f 100644 --- a/locale/sv/LC_MESSAGES/pkgbuilder.po +++ b/locale/sv/LC_MESSAGES/pkgbuilder.po @@ -1,20 +1,21 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/pkgbuilder/language/sv/)\n" +"Language-Team: Swedish (http://www.transifex.com/projects/p/pkgbuilder/" +"language/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANSLATORS: translate the whole sentence. diff --git a/locale/tr/LC_MESSAGES/pkgbuilder.mo b/locale/tr/LC_MESSAGES/pkgbuilder.mo index 5ddf7f8ec3db5b90a3e1558701c64702e7f3572f..2fb2b78ae05b313e67333eee9c1360a1beb64677 100644 GIT binary patch delta 65 zcmbPdGtXv2gCMJko`Igh`R!U6;g?R4WA|14C0? U12bJCO9cZ9D|0BJ=LCIA2c delta 65 zcmbPdGtXv2gCMK1o~fSU`R!U6;g?R4WA|149#C ULnB=yGX+CSD^tVGd_n>|0BQdbB>(^b diff --git a/locale/tr/LC_MESSAGES/pkgbuilder.po b/locale/tr/LC_MESSAGES/pkgbuilder.po index 4febcc7..cd3dc42 100644 --- a/locale/tr/LC_MESSAGES/pkgbuilder.po +++ b/locale/tr/LC_MESSAGES/pkgbuilder.po @@ -1,7 +1,7 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: # Chris Warrick , 2013 # Chris Warrick , 2013 @@ -9,16 +9,17 @@ # Yusuf Faruk DOĞAN , 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/pkgbuilder/language/tr/)\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/pkgbuilder/" +"language/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. TRANSLATORS: translate the whole sentence. @@ -160,7 +161,9 @@ msgstr "" msgid "" "PKGBUILDer (or the requests library) had problems with fulfilling an HTTP " "request." -msgstr "PKGBUILD yapıcı (ya da istenen kütüphane) HTTP istemcisini doldurmada başarısız oldu." +msgstr "" +"PKGBUILD yapıcı (ya da istenen kütüphane) HTTP istemcisini doldurmada " +"başarısız oldu." #: pkgbuilder/build.py:37 msgid "Validating installation status..." @@ -359,7 +362,9 @@ msgstr "Kullanıcı tarafından iptal edildi! Çıkılıyor..." #. TRANSLATORS: see pacman. #: pkgbuilder/pbds.py:49 msgid "Interrupt signal received\n" -msgstr "Sinyal kesilmesi algılandı⏎\n\n" +msgstr "" +"Sinyal kesilmesi algılandı⏎\n" +"\n" #: pkgbuilder/pbds.py:88 pkgbuilder/pbds.py:234 msgid "ERROR:" @@ -530,7 +535,18 @@ msgid "" "\n" "Additional options:\n" " -L, --unlock unlock the pacman database" -msgstr "kullanım: {0} [...]⏎\n⏎\nPBWrapper, PKGBUIL yapıcı ve pacman için örtü.⏎\n⏎\n{1}⏎\n⏎\nPacman and PKGBUILDer syntaxes apply. Consult their manpages/help⏎\ncommands for more details.⏎\n⏎\nAdditional options:⏎\n-L, --pacman veri tabanı kilidini aç" +msgstr "" +"kullanım: {0} [...]⏎\n" +"⏎\n" +"PBWrapper, PKGBUIL yapıcı ve pacman için örtü.⏎\n" +"⏎\n" +"{1}⏎\n" +"⏎\n" +"Pacman and PKGBUILDer syntaxes apply. Consult their manpages/help⏎\n" +"commands for more details.⏎\n" +"⏎\n" +"Additional options:⏎\n" +"-L, --pacman veri tabanı kilidini aç" #. A module only for gettext locale provision. #: localeprovider.py:2 diff --git a/locale/vi/LC_MESSAGES/pkgbuilder.mo b/locale/vi/LC_MESSAGES/pkgbuilder.mo index 4feefbe66edde2b2018f61892ac3a23a8089d341..bf20802f01514b98afd28ce7402df1a3f727f59a 100644 GIT binary patch delta 43 zcmez5^vP+1ry#3|o`IghWIw@pCR3xy>jkBGO?3^-bd4+(3@ogSOgCQ_oXrmaBgzbG delta 43 zcmez5^vP+1ry#4bo~fSUWIw@pCL`0y>jkBGO>_;7bdAgu3@xop4L4sGoXrmaBo+*6 diff --git a/locale/vi/LC_MESSAGES/pkgbuilder.po b/locale/vi/LC_MESSAGES/pkgbuilder.po index 9337266..4e08dd1 100644 --- a/locale/vi/LC_MESSAGES/pkgbuilder.po +++ b/locale/vi/LC_MESSAGES/pkgbuilder.po @@ -1,23 +1,24 @@ # PKGBUILDer pot file. # Copyright © 2015, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: # Anh Phan , 2013 # ppanhh , 2013 # Anh Phan , 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2015-06-29 10:25+0200\n" +"POT-Creation-Date: 2015-06-29 10:52+0200\n" "PO-Revision-Date: 2015-06-29 08:25+0000\n" "Last-Translator: Chris Warrick \n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/pkgbuilder/language/vi/)\n" +"Language-Team: Vietnamese (http://www.transifex.com/projects/p/pkgbuilder/" +"language/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANSLATORS: translate the whole sentence. @@ -159,7 +160,9 @@ msgstr "" msgid "" "PKGBUILDer (or the requests library) had problems with fulfilling an HTTP " "request." -msgstr "PKGBUILDer (hoặc thư viện xử lý yêu cầu) gặp trục trặc khi xử lý các yêu cầu HTTP." +msgstr "" +"PKGBUILDer (hoặc thư viện xử lý yêu cầu) gặp trục trặc khi xử lý các yêu cầu " +"HTTP." #: pkgbuilder/build.py:37 msgid "Validating installation status..." @@ -218,7 +221,8 @@ msgstr "makepkg (hoặc đối tượng nào đó) đã thất bại và trả v #: pkgbuilder/build.py:318 #, python-brace-format msgid "Failed to fulfill package dependency requirement: {0}" -msgstr "Thất bại trong việc điền vào các yêu cầu về sự phụ thuộc của gói tin: {0}" +msgstr "" +"Thất bại trong việc điền vào các yêu cầu về sự phụ thuộc của gói tin: {0}" #: pkgbuilder/build.py:408 msgid ":: Retrieving packages from abs..." @@ -529,7 +533,19 @@ msgid "" "\n" "Additional options:\n" " -L, --unlock unlock the pacman database" -msgstr "cách dùng: {0} [...]\n\nPBWrapper, là wrapper dành cho pacman và PKGBUILDer.\n\n{1}\n\nChỉ áp dụng cho cú pháp thuộc Pacman và PKGBUILDer. Tra cứu các văn bản/lệnh\ntrợ giúp để biết thêm chi tiết.\n\nTùy chọn bổ sung:\n -L, --unlock mở khóa phần cơ sở dữ liệu của pacman" +msgstr "" +"cách dùng: {0} [...]\n" +"\n" +"PBWrapper, là wrapper dành cho pacman và PKGBUILDer.\n" +"\n" +"{1}\n" +"\n" +"Chỉ áp dụng cho cú pháp thuộc Pacman và PKGBUILDer. Tra cứu các văn bản/" +"lệnh\n" +"trợ giúp để biết thêm chi tiết.\n" +"\n" +"Tùy chọn bổ sung:\n" +" -L, --unlock mở khóa phần cơ sở dữ liệu của pacman" #. A module only for gettext locale provision. #: localeprovider.py:2 diff --git a/messages.pot b/messages.pot index d7be9a8..50ceafb 100644 --- a/messages.pot +++ b/messages.pot @@ -5,10 +5,10 @@ # msgid "" msgstr "" - "Project-Id-Version: 3.5.1\n" + "Project-Id-Version: 4.0.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" - "POT-Creation-Date: 2015-06-29 10:25+0200\n" - "PO-Revision-Date: 2015-06-29 10:25+0200\n" + "POT-Creation-Date: 2015-06-29 10:52+0200\n" + "PO-Revision-Date: 2015-06-29 10:52+0200\n" "Last-Translator: Chris Warrick \n" "Language-Team: Chris Warrick \n" "Language: en\n" diff --git a/pkgbuilder/__init__.py b/pkgbuilder/__init__.py index a351a49..ec1fce3 100644 --- a/pkgbuilder/__init__.py +++ b/pkgbuilder/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # All rights reserved. @@ -46,7 +46,7 @@ __title__ = 'PKGBUILDer' -__version__ = '3.5.1' +__version__ = '4.0.0' __author__ = 'Chris Warrick' __license__ = '3-clause BSD' __docformat__ = 'restructuredtext en' diff --git a/pkgbuilder/__main__.py b/pkgbuilder/__main__.py index 6109f23..d9ead0e 100644 --- a/pkgbuilder/__main__.py +++ b/pkgbuilder/__main__.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. @@ -271,3 +271,6 @@ def main(source='AUTO', quit=True): exit(130) DS.log.info('Quitting peacefully.') + +if __name__ == '__main__': + main() diff --git a/pkgbuilder/aur.py b/pkgbuilder/aur.py index 5bda2ac..77a3a28 100644 --- a/pkgbuilder/aur.py +++ b/pkgbuilder/aur.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/build.py b/pkgbuilder/build.py index ca44d91..10d2704 100644 --- a/pkgbuilder/build.py +++ b/pkgbuilder/build.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/exceptions.py b/pkgbuilder/exceptions.py index ec40e97..be2f4c1 100644 --- a/pkgbuilder/exceptions.py +++ b/pkgbuilder/exceptions.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/package.py b/pkgbuilder/package.py index 81d64f7..318ef24 100644 --- a/pkgbuilder/package.py +++ b/pkgbuilder/package.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/pbds.py b/pkgbuilder/pbds.py index 187e9a4..1c2406a 100644 --- a/pkgbuilder/pbds.py +++ b/pkgbuilder/pbds.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/ui.py b/pkgbuilder/ui.py index 29d14d3..4d49455 100644 --- a/pkgbuilder/ui.py +++ b/pkgbuilder/ui.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/upgrade.py b/pkgbuilder/upgrade.py index 94ac46a..ac042e8 100644 --- a/pkgbuilder/upgrade.py +++ b/pkgbuilder/upgrade.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/utils.py b/pkgbuilder/utils.py index 3510c60..30c78fe 100644 --- a/pkgbuilder/utils.py +++ b/pkgbuilder/utils.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 # -*- encoding: utf-8 -*- -# PKGBUILDer v3.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/wrapper.py b/pkgbuilder/wrapper.py index 8c36339..e0a5ca9 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.5.1 +# PKGBUILDer v4.0.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2015, Chris Warrick. # See /LICENSE for licensing information. diff --git a/setup.py b/setup.py index 43c6996..5177dde 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def run_tests(self): sys.exit(errno) setup(name='pkgbuilder', - version='3.5.1', + version='4.0.0', description='An AUR helper (and library) in Python 3.', keywords='arch pkgbuild', author='Chris Warrick',