Files
gentoo/dev-python/peachpy/peachpy-2022.11.13-r3.ebuild
Michał Górny e340eb5903 dev-python/peachpy: Enable py3.14
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2026-04-11 19:25:13 +02:00

44 lines
919 B
Bash

# Copyright 2022-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
EGIT_COMMIT=349e8f836142b2ed0efeb6bb99b1b715d87202e9
MY_P=PeachPy-${EGIT_COMMIT}
DESCRIPTION="Portable Efficient Assembly Code-generator in Higher-level Python"
HOMEPAGE="
https://github.com/Maratyszcza/PeachPy/
https://pypi.org/project/PeachPy/
"
SRC_URI="
https://github.com/Maratyszcza/PeachPy/archive/${EGIT_COMMIT}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
dev-python/opcodes[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
DOCS=README.rst
distutils_enable_sphinx sphinx \
dev-python/sphinx-bootstrap-theme
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
EPYTEST_IGNORE=( tests/arm/test_arm.py )