Add breezy (bzr Python 3 fork)

See #1847
This commit is contained in:
Christoph Reiter
2020-02-15 06:37:43 +01:00
parent 74b72a54a8
commit c6e105eaae
5 changed files with 142 additions and 0 deletions

27
python-configobj/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
_realname=configobj
pkgbase="python-${_realname}"
pkgname=("python-${_realname}")
pkgver=5.0.6
pkgrel=1
pkgdesc="Simple but powerful config file reader and writer for Python"
arch=('any')
license=('BSD')
url="https://github.com/DiffSK/configobj"
depends=('python')
makedepends=('python3-six')
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
sha256sums=('a2f5650770e1c87fb335af19a9b7eb73fc05ccf22144eb68db7d00cd2bcb0902')
build() {
cd "${srcdir}/${_realname}-${pkgver}"
python setup.py build
}
package() {
cd "${srcdir}/${_realname}-${pkgver}"
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}