Initial upload: python-derpconf 0.8.3-1

This commit is contained in:
2021-03-16 14:04:14 +01:00
parent f4bc37b76a
commit c5a0210f66
2 changed files with 42 additions and 0 deletions

14
python-derpconf/.SRCINFO Normal file
View File

@@ -0,0 +1,14 @@
pkgbase = python-derpconf
pkgdesc = abstract loading of configuration files
pkgver = 0.8.3
pkgrel = 1
url = https://github.com/globocom/derpconf
arch = any
license = MIT
makedepends = python-setuptools
depends = python
source = https://github.com/globocom/derpconf/archive/v0.8.3.tar.gz
b2sums = b1ab949f512314a57d5708eb7b7ed9b642207060207c3e68035ddd21c21a40b44cf44b28b7a0a27a6d1dbe4147603135339de03d3c7ec4936eb7c30399570bd6
pkgname = python-derpconf

28
python-derpconf/PKGBUILD Normal file
View File

@@ -0,0 +1,28 @@
# Maintainer: Giovanni Harting <539@idlegandalf.com>
pkgname=python-derpconf
_name=${pkgname#python-}
pkgver=0.8.3
pkgrel=1
pkgdesc="abstract loading of configuration files"
arch=('any')
url="https://github.com/globocom/derpconf"
license=('MIT')
depends=(python)
makedepends=('python-setuptools')
source=("https://github.com/globocom/derpconf/archive/v$pkgver.tar.gz")
b2sums=('b1ab949f512314a57d5708eb7b7ed9b642207060207c3e68035ddd21c21a40b44cf44b28b7a0a27a6d1dbe4147603135339de03d3c7ec4936eb7c30399570bd6')
build() {
cd $_name-$pkgver
python setup.py build
}
package() {
cd $_name-$pkgver
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}