mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
55 lines
1.7 KiB
Bash
55 lines
1.7 KiB
Bash
# Copyright 2020-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_10 )
|
|
|
|
DISTUTILS_SINGLE_IMPL=1
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Command-line tool for BackBlaze's B2 product"
|
|
HOMEPAGE="https://github.com/Backblaze/B2_Command_Line_Tool"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-2.5.0-nameclash.patch"
|
|
"${FILESDIR}/${PN}-3.4.0-disable-pip-requirement-installs.patch"
|
|
)
|
|
|
|
RDEPEND="
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/arrow-1.0.2[${PYTHON_USEDEP}]
|
|
>=dev-python/b2sdk-1.16.0[${PYTHON_USEDEP}]
|
|
>=dev-python/docutils-0.16[${PYTHON_USEDEP}]
|
|
>=dev-python/phx-class-registry-3.0.5[${PYTHON_USEDEP}]
|
|
>=dev-python/rst2ansi-0.1.5[${PYTHON_USEDEP}]
|
|
')
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/importlib_metadata-3.3.0[${PYTHON_USEDEP}]
|
|
' pypy3 python3_8)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
# - integration tests require an application key and id (which is # reasonable)
|
|
# - sync tests require network access
|
|
# - Per https://github.com/Backblaze/B2_Command_Line_Tool/issues/687 , the
|
|
# parse_millis test is broken due to an upstream issue
|
|
python_test() {
|
|
epytest \
|
|
--deselect test/integration/test_b2_command_line.py::test_integration \
|
|
--deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_exact \
|
|
--deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_in_range \
|
|
--deselect test/unit/test_arg_parser.py::TestCustomArgTypes::test_parse_millis_from_float_timestamp
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "The b2 executable has been renamed to backblaze2 in order to"
|
|
elog "avoid a name clash with b2 from boost-build"
|
|
}
|