mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-21 17:58:07 -07:00
dev-python/six: keyword 1.16.0-r1 for ~arm64-macos dev-python/regex: keyword 2023.6.3 for ~arm64-macos dev-python/python-dateutil: keyword 2.8.2-r1 for ~arm64-macos dev-python/idna: keyword 3.4 for ~arm64-macos dev-python/attrs: keyword 23.1.0 for ~arm64-macos dev-python/numpy: keyword 1.24.4-r1 for ~arm64-macos dev-python/jsonschema: keyword 4.17.3 for ~arm64-macos dev-python/arrow: keyword 1.2.3 for ~arm64-macos dev-python/fqdn: keyword 1.5.1-r2 for ~arm64-macos dev-python/hatch-fancy-pypi-readme: keyword 23.1.0 for ~arm64-macos dev-python/hatch-vcs: keyword 0.3.0 for ~arm64-macos dev-python/isoduration: keyword 20.11.0-r1 for ~arm64-macos dev-python/lark: keyword 1.1.5 for ~arm64-macos dev-python/pkgconfig: keyword 1.5.5-r1 for ~arm64-macos dev-python/poetry-core: keyword 1.6.1 for ~arm64-macos dev-python/pyrsistent: keyword 0.19.3 for ~arm64-macos dev-python/rfc3339-validator: keyword 0.1.4-r1 for ~arm64-macos dev-python/rfc3986-validator: keyword 0.1.1-r1 for ~arm64-macos dev-python/rfc3987: keyword 1.3.8-r2 for ~arm64-macos dev-python/strict-rfc3339: keyword 0.7-r2 for ~arm64-macos dev-python/webcolors: keyword 1.13 for ~arm64-macos dev-python/uri_template: keyword 1.3.0 for ~arm64-macos dev-python/jsonpointer: keyword 2.4 for ~arm64-macos sci-libs/hdf5: keyword 1.14.1 for ~arm64-macos Reported-by: Jiajie Chen <jiegec@qq.com> Signed-off-by: Benda Xu <heroxbd@gentoo.org>
39 lines
801 B
Bash
39 lines
801 B
Bash
# Copyright 2022-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=hatchling
|
|
PYTHON_COMPAT=( pypy3 python3_{10..12} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Hatch plugin for versioning with your preferred VCS"
|
|
HOMEPAGE="
|
|
https://pypi.org/project/hatch-vcs/
|
|
https://github.com/ofek/hatch-vcs/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/ofek/hatch-vcs/archive/v${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
|
|
|
|
RDEPEND="
|
|
>=dev-python/setuptools-scm-6.4.0[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-vcs/git
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-Work-with-setuptools_scm-7.1-fix-25-26.patch
|
|
)
|
|
|
|
distutils_enable_tests pytest
|