diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-11-23 03:02:57 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-11-23 03:02:57 +0000 |
commit | 71dd9d29cdaf7cc0ecdb9ea37d128726a941c630 (patch) | |
tree | 4eccd905f575579fe47abb8a83bbdb44ceb8c929 /dev-python/peachpy | |
parent | c7a7ec40cf928d8fc6a8241aa208272c008c7b4d (diff) |
gentoo auto-resync : 23:11:2024 - 03:02:56
Diffstat (limited to 'dev-python/peachpy')
-rw-r--r-- | dev-python/peachpy/Manifest | 3 | ||||
-rw-r--r-- | dev-python/peachpy/metadata.xml | 12 | ||||
-rw-r--r-- | dev-python/peachpy/peachpy-2022.11.13-r2.ebuild | 39 |
3 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/peachpy/Manifest b/dev-python/peachpy/Manifest new file mode 100644 index 000000000000..7e9dddbfb4a3 --- /dev/null +++ b/dev-python/peachpy/Manifest @@ -0,0 +1,3 @@ +DIST PeachPy-349e8f836142b2ed0efeb6bb99b1b715d87202e9.gh.tar.gz 248834 BLAKE2B 508100af45ee2868637c9f2123d835b26a6f8fc4fe880302ec273e19f95b855c667e30e1a31a23dc621aea57b3bf1948d9c2339e35dee55d46d3205d2fe93f03 SHA512 adda0e1c2e417792d0799f2fb5fa92636eff493e83dacf38344ca4a9fe37344bbb73228409cdf8680290ea7f374025f8b23bcdce6ab67b5329ae4a2acbc1cf4f +EBUILD peachpy-2022.11.13-r2.ebuild 871 BLAKE2B cd03196f76d002e76aeaed861c9ee69cbb49bd0d9251d0aec76c082f7dc53da6b5fe729fd6b08db06785cef9b9776fae383f3cf6c73033a1998177bd729df0ce SHA512 741a9a33f4b2c9addfb6930c320d86b8f2634ecccdace40a3aae3464cef5914c785c93c5f6033260d6f65f17ac6aec62c7d729d69d6e66bb689beacf79e74c2d +MISC metadata.xml 377 BLAKE2B 53a5583779da97472edd89c93fe441309a28c430baf58cb5bc665b885b74077908ac52d3f6aca8363ff688fc7994ae5caddfe2f7d2e6c7acd35012d4158fd018 SHA512 3e9f04f38a4784165e63f07817c2a9b7e9fdc4399b17887f7250bdc1c9177dcb7b0fa144ca2faa60e95555e87889a555cee229f6b3b4e7b413ff494f525a5557 diff --git a/dev-python/peachpy/metadata.xml b/dev-python/peachpy/metadata.xml new file mode 100644 index 000000000000..f9ab9ad4cdef --- /dev/null +++ b/dev-python/peachpy/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>tupone@gentoo.org</email> + <name>Tupone Alfredo</name> + </maintainer> + <upstream> + <remote-id type="github">Maratyszcza/PeachPy</remote-id> + <remote-id type="pypi">PeachPy</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/peachpy/peachpy-2022.11.13-r2.ebuild b/dev-python/peachpy/peachpy-2022.11.13-r2.ebuild new file mode 100644 index 000000000000..eec4c40652c9 --- /dev/null +++ b/dev-python/peachpy/peachpy-2022.11.13-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +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" +RESTRICT="test" # depends on an old version of werkzeug + +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 |