92 lines
1.9 KiB
Bash
92 lines
1.9 KiB
Bash
# Copyright 2022-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=maturin
|
|
PYTHON_COMPAT=( python3_{12..14} )
|
|
|
|
CRATES="
|
|
autocfg@1.4.0
|
|
bitflags@1.3.2
|
|
cc@1.2.19
|
|
cfg-if@1.0.0
|
|
heck@0.5.0
|
|
indoc@2.0.6
|
|
libc@0.2.172
|
|
libmimalloc-sys@0.1.35
|
|
lock_api@0.4.9
|
|
memoffset@0.9.1
|
|
mimalloc@0.1.39
|
|
once_cell@1.21.3
|
|
parking_lot@0.12.1
|
|
parking_lot_core@0.9.7
|
|
portable-atomic@1.11.0
|
|
proc-macro2@1.0.95
|
|
pyo3-build-config@0.24.1
|
|
pyo3-ffi@0.24.1
|
|
pyo3-macros-backend@0.24.1
|
|
pyo3-macros@0.24.1
|
|
pyo3@0.24.1
|
|
python3-dll-a@0.2.13
|
|
quote@1.0.40
|
|
redox_syscall@0.2.16
|
|
scopeguard@1.1.0
|
|
shlex@1.3.0
|
|
smallvec@1.10.0
|
|
syn@2.0.100
|
|
target-lexicon@0.13.2
|
|
unicode-ident@1.0.18
|
|
unindent@0.2.4
|
|
windows-sys@0.45.0
|
|
windows-targets@0.42.1
|
|
windows_aarch64_gnullvm@0.42.1
|
|
windows_aarch64_msvc@0.42.1
|
|
windows_i686_gnu@0.42.1
|
|
windows_i686_msvc@0.42.1
|
|
windows_x86_64_gnu@0.42.1
|
|
windows_x86_64_gnullvm@0.42.1
|
|
windows_x86_64_msvc@0.42.1
|
|
"
|
|
|
|
inherit cargo distutils-r1
|
|
|
|
DESCRIPTION="Drop-in replacement for the standard datetime class"
|
|
HOMEPAGE="
|
|
https://pendulum.eustace.io/
|
|
https://github.com/sdispater/pendulum/
|
|
https://pypi.org/project/pendulum/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/python-${PN}/${PN}/releases/download/${PV}/${P}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
${CARGO_CRATE_URIS}
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0 Apache-2.0-with-LLVM-exceptions MIT Unicode-DFS-2016
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
RDEPEND="
|
|
>=dev-python/python-dateutil-2.6[${PYTHON_USEDEP}]
|
|
>=dev-python/tzdata-2020.1[${PYTHON_USEDEP}]
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/time-machine-2.6.0[${PYTHON_USEDEP}]
|
|
' 'python*')
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/Babel[${PYTHON_USEDEP}]
|
|
>=dev-python/pytz-2022.1[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/pendulum/_pendulum.*.so"
|