diff --git a/.gitignore b/.gitignore index ab4a81d..7339a87 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ pbwrapperdiff # Transifex? .cache/ +.pytest_cache diff --git a/.pbwrapperhelp b/.pbwrapperhelp index 89fa8f8..1d468bd 100644 --- a/.pbwrapperhelp +++ b/.pbwrapperhelp @@ -46,10 +46,11 @@ options: --sysroot operate on a mounted guest system (root-only) usage: pkgbuilder [-h] [-V] [-S] [-F] [--userfetch USER] [-i] [-s] [-u] [-U] [-X] [-c] [--noclean] [--colors] [-C] [--debug] [--nodebug] - [--depcheck] [-d] [-D] [--novcsupgrade] [--validation] [-v] - [--install] [-w] [--pgpcheck] [--skippgpcheck] [--confirm] - [--noconfirm] [--shallow] [--deep] [--ignore PACKAGE] [-y] - [--notmp] [--build] + [--edit-pkgbuild] [--noedit-pkgbuild] [--depcheck] [-d] [-D] + [--novcsupgrade] [--validation] [-v] [--install] [-w] + [--pgpcheck] [--skippgpcheck] [--confirm] [--noconfirm] + [--shallow] [--deep] [--ignore PACKAGE] [-y] [--notmp] + [--build] [PACKAGE [PACKAGE ...]] An AUR helper (and library) in Python 3. @@ -80,6 +81,8 @@ options: -C, --nocolors don't use colors in output --debug display debug messages --nodebug don't display debug messages (default) + --edit-pkgbuild edit the PKGBUILD + --noedit-pkgbuild don't edit the PKGBUILD (default) --depcheck check dependencies (default) -d, --nodepcheck don't check dependencies (may break makepkg) -D, --vcsupgrade upgrade all the VCS/date-versioned packages diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bd373a0..593e831 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,8 +5,8 @@ Appendix C. Changelog :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: CHANGELOG @@ -47,6 +47,9 @@ More information can be found on GitHub in the `releases section pkgname=pkgbuilder _pyname=pkgbuilder -pkgver=4.2.18 +pkgver=4.3.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' 'asp' 'git') options=(!emptydirs) source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz") -md5sums=('d7aa404dac208d420d338774662b4037') +md5sums=('9c0c6d2d1253fd88fce234d50d83fa5f') package() { cd "${srcdir}/${_pyname}-${pkgver}" diff --git a/PKGBUILD-git b/PKGBUILD-git index 0f6d23a..439254e 100644 --- a/PKGBUILD-git +++ b/PKGBUILD-git @@ -2,7 +2,7 @@ pkgname=pkgbuilder-git _pyname=pkgbuilder _gitname=pkgbuilder -pkgver=4.2.18 +pkgver=4.3.0 pkgrel=1 pkgdesc='A Python AUR helper/library. (git version)' arch=('any') diff --git a/README b/README index e5fc282..7fb9278 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: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index: README @@ -44,6 +44,21 @@ the AUR. For more information, refer to the ``-h`` command, the ``pkgbuilder(8)`` man page, or the online documentation at https://pkgbuilder.readthedocs.org/. +CONFIGURATION +------------- + +PKGBUILDer supports per-user configuration, in the file +~/.config/kwpolska/pkgbuilder/pkgbuilder.ini. It can also be configured on a +per-usage basis via command-line arguments. + +SECURITY AND EDITING PKGBUILDs +------------------------------ + +By default, PKGBUILDer strives to be the no-questions-asked package manager. +This means that all packages are built immediately, without any confirmations. +The behavior can be overridden with the ``--edit-pkgbuild`` command-line +option, or with ``edit=pkgbuild=true`` in PKGBUILDer’s config file. + COPYRIGHT --------- Copyright © 2011-2019, Chris Warrick. diff --git a/README.rst b/README.rst index 90be77c..7fb9278 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: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index: README @@ -26,13 +26,6 @@ After adding the repository, you need to run:: # pacman-key --lsign 5EAAEA16 # pacman -Syyu -My GPG key expires every year. Every year on January 1st, you’ll need to run:: - - # pacman-key -d 5EAAEA16 - # pacman-key -r 5EAAEA16 - # pacman-key --lsign 5EAAEA16 - # pacman -Syyu - BASIC USAGE ----------- @@ -51,6 +44,21 @@ the AUR. For more information, refer to the ``-h`` command, the ``pkgbuilder(8)`` man page, or the online documentation at https://pkgbuilder.readthedocs.org/. +CONFIGURATION +------------- + +PKGBUILDer supports per-user configuration, in the file +~/.config/kwpolska/pkgbuilder/pkgbuilder.ini. It can also be configured on a +per-usage basis via command-line arguments. + +SECURITY AND EDITING PKGBUILDs +------------------------------ + +By default, PKGBUILDer strives to be the no-questions-asked package manager. +This means that all packages are built immediately, without any confirmations. +The behavior can be overridden with the ``--edit-pkgbuild`` command-line +option, or with ``edit=pkgbuild=true`` in PKGBUILDer’s config file. + COPYRIGHT --------- Copyright © 2011-2019, Chris Warrick. diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index bd373a0..593e831 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -5,8 +5,8 @@ Appendix C. Changelog :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: CHANGELOG @@ -47,6 +47,9 @@ More information can be found on GitHub in the `releases section -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: LICENSE diff --git a/docs/README.rst b/docs/README.rst index e5fc282..7fb9278 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: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index: README @@ -44,6 +44,21 @@ the AUR. For more information, refer to the ``-h`` command, the ``pkgbuilder(8)`` man page, or the online documentation at https://pkgbuilder.readthedocs.org/. +CONFIGURATION +------------- + +PKGBUILDer supports per-user configuration, in the file +~/.config/kwpolska/pkgbuilder/pkgbuilder.ini. It can also be configured on a +per-usage basis via command-line arguments. + +SECURITY AND EDITING PKGBUILDs +------------------------------ + +By default, PKGBUILDer strives to be the no-questions-asked package manager. +This means that all packages are built immediately, without any confirmations. +The behavior can be overridden with the ``--edit-pkgbuild`` command-line +option, or with ``edit=pkgbuild=true`` in PKGBUILDer’s config file. + COPYRIGHT --------- Copyright © 2011-2019, Chris Warrick. diff --git a/docs/aur.rst b/docs/aur.rst index a7be7ea..d843edf 100644 --- a/docs/aur.rst +++ b/docs/aur.rst @@ -4,8 +4,8 @@ aur module (AUR class) :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: AUR; RPC .. index:: RPC diff --git a/docs/build.rst b/docs/build.rst index 9ba3a40..c29195d 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -5,8 +5,8 @@ build module :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: build .. versionadded:: 2.1.0.0 diff --git a/docs/conf.py b/docs/conf.py index eefd0bf..439b95c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '4.2.18' +version = '4.3.0' # The full version, including alpha/beta/rc tags. -release = '4.2.18' +release = '4.3.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 9137672..c612be0 100644 --- a/docs/exceptions.rst +++ b/docs/exceptions.rst @@ -5,8 +5,8 @@ Exceptions in PKGBUILDer :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: Exceptions .. versionadded:: 3.0.0 diff --git a/docs/main.rst b/docs/main.rst index c362b7e..3f6c44a 100644 --- a/docs/main.rst +++ b/docs/main.rst @@ -4,8 +4,8 @@ __main__ module :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: main .. versionchanged:: 4.0.0 diff --git a/docs/package.rst b/docs/package.rst index b7956f6..53bf01b 100644 --- a/docs/package.rst +++ b/docs/package.rst @@ -5,8 +5,8 @@ package module (Package, AURPackage, ABSPackage classes) :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: Package .. index:: AURPackage diff --git a/docs/pb.8.gz b/docs/pb.8.gz index 5cc95c6..788aca5 100644 Binary files a/docs/pb.8.gz and b/docs/pb.8.gz differ diff --git a/docs/pb.rst b/docs/pb.rst index 1753e06..a44309a 100644 --- a/docs/pb.rst +++ b/docs/pb.rst @@ -6,8 +6,8 @@ PBWrapper :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or Appendix B.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 :Wrapper Version: 0.5.6 :Manual section: 8 :Manual group: PKGBUILDer manual diff --git a/docs/pbds.rst b/docs/pbds.rst index e5eab74..f67c44e 100644 --- a/docs/pbds.rst +++ b/docs/pbds.rst @@ -5,8 +5,8 @@ pbds module (PBDS class) :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. module: pbds diff --git a/docs/pkgbuilder.8.gz b/docs/pkgbuilder.8.gz index 894a13f..19e0e28 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 54ba171..defeb8a 100644 --- a/docs/pkgbuilder.rst +++ b/docs/pkgbuilder.rst @@ -6,8 +6,8 @@ PKGBUILDer :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or Appendix B.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 :Manual section: 8 :Manual group: PKGBUILDer manual @@ -125,6 +125,9 @@ Only the non-default options are documented below. **--deep** Perform deep clones of git repositories. Override with ``--shallow``. +**--edit-pkgbuild** + Offer to edit PKGBUILDs before they are installed. + **--ignore [PACKAGE PACKAGE ...]** Ignore a package upgrade (can be used more than once, or use commas -- follows pacman syntax) @@ -132,6 +135,14 @@ Only the non-default options are documented below. **-y, --refresh** Dummy option for pacman compatibility. +SECURITY AND EDITING PKGBUILDs +============================== + +By default, PKGBUILDer strives to be the no-questions-asked package manager. +This means that all packages are built immediately, without any confirmations. +The behavior can be overridden with the ``--edit-pkgbuild`` command-line +option, or with ``edit=pkgbuild=true`` in PKGBUILDer’s config file. + EXAMPLES ======== diff --git a/docs/sample-scripts.rst b/docs/sample-scripts.rst index 60b92f8..46dbe10 100644 --- a/docs/sample-scripts.rst +++ b/docs/sample-scripts.rst @@ -4,8 +4,8 @@ PKGBUILDer Sample Scripts :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: sample scripts diff --git a/docs/transaction.rst b/docs/transaction.rst index 4f7e4b7..1d2a8ba 100644 --- a/docs/transaction.rst +++ b/docs/transaction.rst @@ -5,8 +5,8 @@ Transactions :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: transaction .. versionadded:: 4.1.0 diff --git a/docs/ui.rst b/docs/ui.rst index 3d92808..5697eff 100644 --- a/docs/ui.rst +++ b/docs/ui.rst @@ -5,8 +5,8 @@ ui module (UI class) :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: UI .. versionadded:: 3.0.0 diff --git a/docs/upgrade.rst b/docs/upgrade.rst index ab21029..68f5ee2 100644 --- a/docs/upgrade.rst +++ b/docs/upgrade.rst @@ -5,8 +5,8 @@ upgrade module :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: upgrade .. index:: Syu diff --git a/docs/utils.rst b/docs/utils.rst index 50716bc..714bf8d 100644 --- a/docs/utils.rst +++ b/docs/utils.rst @@ -5,8 +5,8 @@ utils module :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.0 .. index:: utils .. versionadded:: 2.1.0.0 diff --git a/docs/wrapper.rst b/docs/wrapper.rst index 610e00a..b22ceac 100644 --- a/docs/wrapper.rst +++ b/docs/wrapper.rst @@ -4,8 +4,8 @@ PBWrapper :Author: Chris Warrick :Copyright: © 2011-2019, Chris Warrick. :License: BSD (see /LICENSE or :doc:`Appendix B `.) -:Date: 2018-07-31 -:Version: 4.2.18 +:Date: 2019-01-12 +:Version: 4.3.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 899c0c8..5831917 100644 Binary files a/locale/ar/LC_MESSAGES/pkgbuilder.mo and b/locale/ar/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/ar/LC_MESSAGES/pkgbuilder.po b/locale/ar/LC_MESSAGES/pkgbuilder.po index 2cf2ff3..b52ae8c 100644 --- a/locale/ar/LC_MESSAGES/pkgbuilder.po +++ b/locale/ar/LC_MESSAGES/pkgbuilder.po @@ -6,9 +6,9 @@ # وجدي أبو سلطان, 2017 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Arabic (http://www.transifex.com/kwpolska/pkgbuilder/language/" diff --git a/locale/cs/LC_MESSAGES/pkgbuilder.mo b/locale/cs/LC_MESSAGES/pkgbuilder.mo index 93f6e56..1605681 100644 Binary files a/locale/cs/LC_MESSAGES/pkgbuilder.mo and b/locale/cs/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/cs/LC_MESSAGES/pkgbuilder.po b/locale/cs/LC_MESSAGES/pkgbuilder.po index 2f0f4ae..61dbb10 100644 --- a/locale/cs/LC_MESSAGES/pkgbuilder.po +++ b/locale/cs/LC_MESSAGES/pkgbuilder.po @@ -6,9 +6,9 @@ # LiberteCzech , 2016 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Czech (http://www.transifex.com/kwpolska/pkgbuilder/language/" diff --git a/locale/de/LC_MESSAGES/pkgbuilder.mo b/locale/de/LC_MESSAGES/pkgbuilder.mo index 001b97e..cedecf0 100644 Binary files a/locale/de/LC_MESSAGES/pkgbuilder.mo and b/locale/de/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/de/LC_MESSAGES/pkgbuilder.po b/locale/de/LC_MESSAGES/pkgbuilder.po index 5807302..c5e3d64 100644 --- a/locale/de/LC_MESSAGES/pkgbuilder.po +++ b/locale/de/LC_MESSAGES/pkgbuilder.po @@ -6,9 +6,9 @@ # Max Mustermann , 2013 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: German (http://www.transifex.com/kwpolska/pkgbuilder/language/" diff --git a/locale/es/LC_MESSAGES/pkgbuilder.mo b/locale/es/LC_MESSAGES/pkgbuilder.mo index bb45f7b..aff863e 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 fc3c337..b63a046 100644 --- a/locale/es/LC_MESSAGES/pkgbuilder.po +++ b/locale/es/LC_MESSAGES/pkgbuilder.po @@ -14,9 +14,9 @@ # tufadorin , 2013 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Spanish (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/id/LC_MESSAGES/pkgbuilder.mo b/locale/id/LC_MESSAGES/pkgbuilder.mo index 19db5fe..0c06429 100644 Binary files a/locale/id/LC_MESSAGES/pkgbuilder.mo and b/locale/id/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/id/LC_MESSAGES/pkgbuilder.po b/locale/id/LC_MESSAGES/pkgbuilder.po index 7bf0115..41c761c 100644 --- a/locale/id/LC_MESSAGES/pkgbuilder.po +++ b/locale/id/LC_MESSAGES/pkgbuilder.po @@ -5,9 +5,9 @@ # Translators: msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Indonesian (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/it/LC_MESSAGES/pkgbuilder.mo b/locale/it/LC_MESSAGES/pkgbuilder.mo index 88d77e7..9926462 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 07b05e5..b27be50 100644 --- a/locale/it/LC_MESSAGES/pkgbuilder.po +++ b/locale/it/LC_MESSAGES/pkgbuilder.po @@ -10,9 +10,9 @@ # Chris Warrick, 2013 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Italian (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/ja/LC_MESSAGES/pkgbuilder.mo b/locale/ja/LC_MESSAGES/pkgbuilder.mo index 78bab00..aba0562 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 cf18b44..6d794ea 100644 --- a/locale/ja/LC_MESSAGES/pkgbuilder.po +++ b/locale/ja/LC_MESSAGES/pkgbuilder.po @@ -5,9 +5,9 @@ # Translators: msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Japanese (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/pl/LC_MESSAGES/pkgbuilder.mo b/locale/pl/LC_MESSAGES/pkgbuilder.mo index 5768656..065fb8f 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 5efc821..9c2439d 100644 --- a/locale/pl/LC_MESSAGES/pkgbuilder.po +++ b/locale/pl/LC_MESSAGES/pkgbuilder.po @@ -1,24 +1,27 @@ # PKGBUILDer pot file. # Copyright © 2011-2019, Chris Warrick. # This file is distributed under the same license as the PKGBUILDer package. -# +# # Translators: # Chris Warrick, 2013-2016,2018-2019 # Chris Warrick, 2013 # Chris Warrick, 2013 msgid "" msgstr "" -"Project-Id-Version: PKGBUILDer\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:42+0000\n" "Last-Translator: Chris Warrick\n" -"Language-Team: Polish (http://www.transifex.com/kwpolska/pkgbuilder/language/pl/)\n" +"Language-Team: Polish (http://www.transifex.com/kwpolska/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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: pkgbuilder/build.py:59 msgid "The build succeeded." @@ -37,7 +40,10 @@ msgid "" "Cannot install dependencies and continue building because -w, --buildonly " "was specified. Please run without -w, --buildonly or install dependencies " "manually and try again." -msgstr "Nie można zainstalować zależności i kontynuować, ponieważ użyto opcji -w, --buildonly. Proszę uruchomić program bez tych opcji albo zainstalować zależności ręcznie i spróbować ponownie." +msgstr "" +"Nie można zainstalować zależności i kontynuować, ponieważ użyto opcji -w, --" +"buildonly. Proszę uruchomić program bez tych opcji albo zainstalować " +"zależności ręcznie i spróbować ponownie." #: pkgbuilder/build.py:88 #, python-brace-format @@ -47,7 +53,9 @@ msgstr "znaleziono istniejący pakiet {0}" #: pkgbuilder/build.py:127 #, python-brace-format msgid "makepkg (or someone else) failed and returned {0}." -msgstr "budowanie pakietu przez makepkg (lub coś innego) nie powiodło się i zwróciło {0}." +msgstr "" +"budowanie pakietu przez makepkg (lub coś innego) nie powiodło się i zwróciło " +"{0}." #: pkgbuilder/build.py:307 #, python-brace-format @@ -303,7 +311,9 @@ msgstr "uaktualnij wszystkie pakiety z VCS/z wersjami będącymi datami" #: pkgbuilder/__main__.py:117 msgid "don't upgrade all the VCS/date-versioned packages (default)" -msgstr "nie uaktualniaj wszystkie pakiety z VCS/z wersjami będącymi datami (domyślnie)" +msgstr "" +"nie uaktualniaj wszystkie pakiety z VCS/z wersjami będącymi datami " +"(domyślnie)" #: pkgbuilder/__main__.py:122 msgid "check if packages were installed after build (default)" @@ -403,7 +413,9 @@ msgstr "pomijanie pakietu {0}" 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." #. TRANSLATORS: see makepkg. #: pkgbuilder/pbds.py:54 @@ -428,7 +440,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:204 msgid "Please restart PKGBUILDer as a regular user." @@ -626,7 +640,29 @@ msgid "" "Last Updated : {upd}\n" "Description : {dsc}\n" "Keywords : {key}\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}\nSłowa kluczowe : {key}\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" +"Słowa kluczowe : {key}\n" #: pkgbuilder/utils.py:184 msgid "yes" @@ -651,7 +687,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" #: pkgbuilder/wrapper.py:151 #, python-format diff --git a/locale/pt/LC_MESSAGES/pkgbuilder.mo b/locale/pt/LC_MESSAGES/pkgbuilder.mo index 8635a99..59cad09 100644 Binary files a/locale/pt/LC_MESSAGES/pkgbuilder.mo and b/locale/pt/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/pt/LC_MESSAGES/pkgbuilder.po b/locale/pt/LC_MESSAGES/pkgbuilder.po index 83fc92e..a954714 100644 --- a/locale/pt/LC_MESSAGES/pkgbuilder.po +++ b/locale/pt/LC_MESSAGES/pkgbuilder.po @@ -6,9 +6,9 @@ # Thiago Perrotta , 2015 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Portuguese (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/pt_BR/LC_MESSAGES/pkgbuilder.mo b/locale/pt_BR/LC_MESSAGES/pkgbuilder.mo index fe6cb92..539e1a1 100644 Binary files a/locale/pt_BR/LC_MESSAGES/pkgbuilder.mo and b/locale/pt_BR/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/pkgbuilder.po b/locale/pt_BR/LC_MESSAGES/pkgbuilder.po index 99d65ef..276f7e8 100644 --- a/locale/pt_BR/LC_MESSAGES/pkgbuilder.po +++ b/locale/pt_BR/LC_MESSAGES/pkgbuilder.po @@ -7,9 +7,9 @@ # Uberlan Soares , 2016 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/kwpolska/" diff --git a/locale/sk/LC_MESSAGES/pkgbuilder.mo b/locale/sk/LC_MESSAGES/pkgbuilder.mo index 09233d2..2946aba 100644 Binary files a/locale/sk/LC_MESSAGES/pkgbuilder.mo and b/locale/sk/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/sk/LC_MESSAGES/pkgbuilder.po b/locale/sk/LC_MESSAGES/pkgbuilder.po index c25b7ea..759032f 100644 --- a/locale/sk/LC_MESSAGES/pkgbuilder.po +++ b/locale/sk/LC_MESSAGES/pkgbuilder.po @@ -5,9 +5,9 @@ # Translators: msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Slovak (http://www.transifex.com/kwpolska/pkgbuilder/language/" diff --git a/locale/sv/LC_MESSAGES/pkgbuilder.mo b/locale/sv/LC_MESSAGES/pkgbuilder.mo index 3921fac..0adcbd7 100644 Binary files a/locale/sv/LC_MESSAGES/pkgbuilder.mo and b/locale/sv/LC_MESSAGES/pkgbuilder.mo differ diff --git a/locale/sv/LC_MESSAGES/pkgbuilder.po b/locale/sv/LC_MESSAGES/pkgbuilder.po index 8ddea5a..0d64ddb 100644 --- a/locale/sv/LC_MESSAGES/pkgbuilder.po +++ b/locale/sv/LC_MESSAGES/pkgbuilder.po @@ -5,9 +5,9 @@ # Translators: msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Swedish (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/tr/LC_MESSAGES/pkgbuilder.mo b/locale/tr/LC_MESSAGES/pkgbuilder.mo index 287422c..656a7bc 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 49f2b20..b686d99 100644 --- a/locale/tr/LC_MESSAGES/pkgbuilder.po +++ b/locale/tr/LC_MESSAGES/pkgbuilder.po @@ -11,9 +11,9 @@ # Yusuf Faruk DOĞAN , 2013 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Turkish (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/locale/vi/LC_MESSAGES/pkgbuilder.mo b/locale/vi/LC_MESSAGES/pkgbuilder.mo index dee3cbf..278f0cc 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 69cc52d..e3ae5c3 100644 --- a/locale/vi/LC_MESSAGES/pkgbuilder.po +++ b/locale/vi/LC_MESSAGES/pkgbuilder.po @@ -8,9 +8,9 @@ # Anh Phan , 2013 msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" "PO-Revision-Date: 2019-01-12 14:40+0000\n" "Last-Translator: Chris Warrick\n" "Language-Team: Vietnamese (http://www.transifex.com/kwpolska/pkgbuilder/" diff --git a/messages.pot b/messages.pot index 8634367..2b8547e 100644 --- a/messages.pot +++ b/messages.pot @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: 4.2.18\n" +"Project-Id-Version: 4.3.0\n" "Report-Msgid-Bugs-To: Chris Warrick \n" -"POT-Creation-Date: 2019-01-12 15:40+0100\n" -"PO-Revision-Date: 2019-01-12 15:40+0100\n" +"POT-Creation-Date: 2019-01-12 16:05+0100\n" +"PO-Revision-Date: 2019-01-12 16:05+0100\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 b249522..5b1a82d 100644 --- a/pkgbuilder/__init__.py +++ b/pkgbuilder/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # All rights reserved. @@ -45,7 +45,7 @@ __title__ = 'PKGBUILDer' -__version__ = '4.2.18' +__version__ = '4.3.0' __author__ = 'Chris Warrick' __license__ = '3-clause BSD' __docformat__ = 'restructuredtext en' diff --git a/pkgbuilder/__main__.py b/pkgbuilder/__main__.py index d88c862..92566d5 100644 --- a/pkgbuilder/__main__.py +++ b/pkgbuilder/__main__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/aur.py b/pkgbuilder/aur.py index 6ee2bfd..1f0fdd0 100644 --- a/pkgbuilder/aur.py +++ b/pkgbuilder/aur.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/build.py b/pkgbuilder/build.py index 08fc750..a1dd607 100644 --- a/pkgbuilder/build.py +++ b/pkgbuilder/build.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/exceptions.py b/pkgbuilder/exceptions.py index 2c6f209..f676071 100644 --- a/pkgbuilder/exceptions.py +++ b/pkgbuilder/exceptions.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/package.py b/pkgbuilder/package.py index 7ab7eb3..12a49ac 100644 --- a/pkgbuilder/package.py +++ b/pkgbuilder/package.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/pbds.py b/pkgbuilder/pbds.py index 733b47a..7525e48 100644 --- a/pkgbuilder/pbds.py +++ b/pkgbuilder/pbds.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/transaction.py b/pkgbuilder/transaction.py index 88615dc..95b1f72 100644 --- a/pkgbuilder/transaction.py +++ b/pkgbuilder/transaction.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/ui.py b/pkgbuilder/ui.py index 97624d4..d366482 100644 --- a/pkgbuilder/ui.py +++ b/pkgbuilder/ui.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/upgrade.py b/pkgbuilder/upgrade.py index ef14ca6..55122c3 100644 --- a/pkgbuilder/upgrade.py +++ b/pkgbuilder/upgrade.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/utils.py b/pkgbuilder/utils.py index 8e9603c..e7bfe99 100644 --- a/pkgbuilder/utils.py +++ b/pkgbuilder/utils.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/pkgbuilder/wrapper.py b/pkgbuilder/wrapper.py index 54ef3cd..1a2990f 100644 --- a/pkgbuilder/wrapper.py +++ b/pkgbuilder/wrapper.py @@ -1,6 +1,6 @@ # -*- encoding: utf-8 -*- # PBWrapper v0.5.0 -# PKGBUILDer v4.2.18 +# PKGBUILDer v4.3.0 # An AUR helper (and library) in Python 3. # Copyright © 2011-2019, Chris Warrick. # See /LICENSE for licensing information. diff --git a/setup.py b/setup.py index cb61889..1a6a5f8 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def run_tests(self): sys.exit(errno) setup(name='pkgbuilder', - version='4.2.18', + version='4.3.0', description='An AUR helper (and library) in Python 3.', keywords='arch pkgbuild', author='Chris Warrick', @@ -39,7 +39,7 @@ def run_tests(self): 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: System', 'Topic :: System :: Archiving :: Packaging', 'Topic :: Utilities'],