mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-15 10:42:39 +02:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
# Contributor: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org>
|
|
pkgname=py3-executing
|
|
pkgver=2.0.1
|
|
pkgrel=0
|
|
pkgdesc="Get information about what a Python frame is currently doing"
|
|
url="https://github.com/alexmojaki/executing"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-gpep517 py3-setuptools_scm py3-wheel"
|
|
checkdepends="ipython py3-asttokens py3-littleutils py3-pytest"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/alexmojaki/executing/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/executing-$pkgver"
|
|
options="!check" # circular dependency: ipython -> py3-stack_data -> itself
|
|
|
|
build() {
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
local whl=.dist/executing-$pkgver-py2.py3-none-any.whl
|
|
python3 -m installer --destdir="$pkgdir" "$whl"
|
|
}
|
|
|
|
sha512sums="
|
|
8a753aab42ea2d3b61764ee77de3bb52ea7fcc2818298281180ffc47c7b22ee84974ee98b2137250f722ad559be92e72e8fc01d7b2d38ab6a01512618b65d4f3 py3-executing-2.0.1.tar.gz
|
|
"
|