blob: e64b414ad3543d04d716dfc85f490fed227e28ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Jamison Lahman <jamison+aur@lahman.dev>
# Contributor: Pierre-Marie de Rodat <pmderodat@kawie.fr>
pkgname='python-e3-testsuite'
_pkgname=${pkgname#python-}
pkgver=27.3
pkgrel=1
pkgdesc="Generic Testsuite Driver in Python"
arch=('any')
url="https://github.com/AdaCore/e3-testsuite"
license=('GPL3')
depends=('python' 'python-e3-core')
makedepends=('python-pip')
source=(
"https://files.pythonhosted.org/packages/py3/${_pkgname::1}/$_pkgname/${_pkgname/-/_}-$pkgver-py3-none-any.whl"
)
sha256sums=('4cc14a29e3eb940a781691a0b40b14cedba29606217f03f2a4c4526e195084f9')
package() {
cd "$srcdir" || exit
python -m pip install --root="$pkgdir/" --no-deps --ignore-installed "${srcdir}/${source[0]##*/}"
}
|