mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-06 01:44:36 +02:00
59 lines
1.8 KiB
Text
59 lines
1.8 KiB
Text
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
pkgname=hy
|
|
pkgver=1.1.0
|
|
pkgrel=0
|
|
pkgdesc="Dialect of Lisp that's embedded in Python"
|
|
url="http://hylang.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-funcparserlib py3-rply py3-colorama"
|
|
makedepends="py3-setuptools py3-sphinx py3-sphinx_rtd_theme py3-wheel py3-gpep517"
|
|
checkdepends="python3-tests py3-pytest py3-pytest-runner py3-tox"
|
|
options="net"
|
|
subpackages="$pkgname-pyc"
|
|
#subpackages="$pkgname-doc $pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz"
|
|
|
|
# By default setup.py tries to determine the hy version using
|
|
# git-describe(1). Unfourtunatly, this will return the version
|
|
# of the aports repository on Alpine.
|
|
export HY_VERSION="$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
|
|
# TODO: Building the documentation requires py3-sphinx == 5.0.2.
|
|
#cd docs
|
|
#sphinx-build . _build -b man
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
gpep517 install-wheel --destdir .testenv --prefix '' .dist/*.whl
|
|
PYTHONPATH="$builddir/build/lib" \
|
|
PATH="$PATH:$builddir/.testenv/bin" \
|
|
.testenv/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
|
|
# XXX: See comment regarding documentation above.
|
|
# local man
|
|
# for man in docs/_build/*.?; do
|
|
# install -Dm644 "$man" \
|
|
# "$pkgdir"/usr/share/man/man${man##*.}/${man##*/}
|
|
# done
|
|
|
|
# This file is only needed for setuptools-produced source
|
|
# distributions <https://github.com/hylang/hy/commit/bd7b8bf5e19e>.
|
|
rm -rf "$pkgdir"/usr/get_version
|
|
}
|
|
|
|
sha512sums="
|
|
a7edc9dc2c70c24efec71a160eae15708ade1347530b5f098a51cb0f42007baa4f71207ac4cef6f818f942864cddea270424b3ab61273415c6c0e9fb502babe2 hy-1.1.0.tar.gz
|
|
"
|