mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-15 18:51:48 +02:00
this is only a partial rebuild, including stuff that i built on my personal machine with python 3.12.2; might fail with 3.12.3
32 lines
832 B
Plaintext
32 lines
832 B
Plaintext
# Contributor: Simon Frankenberger <simon-alpine@fraho.eu>
|
|
# Maintainer: Simon Frankenberger <simon-alpine@fraho.eu>
|
|
pkgname=py3-pyte
|
|
_pkgname=pyte
|
|
pkgver=0.8.2
|
|
pkgrel=1
|
|
pkgdesc="Pyte is an in memory VTXXX-compatible terminal emulator"
|
|
url="https://github.com/selectel/pyte"
|
|
arch="noarch"
|
|
license="LGPL"
|
|
depends="py3-wcwidth"
|
|
makedepends="py3-setuptools py3-pytest-runner"
|
|
subpackages="$pkgname-pyc"
|
|
source="pyte-$pkgver.tar.gz::https://github.com/selectel/pyte/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
e9e79babb81b32eedbb4f0585ef07f8978e8592171834d9ce43a09f8a1d3156c00abb535e887ba9c83909bf1010210009b9a00ccbec7c2e430e5147120949743 pyte-0.8.2.tar.gz
|
|
"
|