net-misc/maestral: add 1.7.3_rc0

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2023-05-13 07:36:08 +03:00
parent 1078a25323
commit faf18019b0
2 changed files with 55 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST maestral-1.7.2.gh.tar.gz 7988545 BLAKE2B 985ba026706592046a22679479231cdabd6caf67a12b87273008ebae479e76260c96120a7090fa5e34fa14515997cf915eb0f1142b4525aa28b357dd2f5e7e4c SHA512 87948c6952df8b0ad5e37d31e69715d3dc1dc47dc4becc17e8211f92364bcb5214b5e2306f745209f765879bf358c14f6f0eba9a8d9541c47fd22564c25cb0e4
DIST maestral-1.7.3_rc0.gh.tar.gz 7988700 BLAKE2B b52b5d8fb8e028b4e963fe250763ac0ee9fdad9b0e42b32b547e6d74879d9e2fc9b60ad275e21264555eced71b53aafe9054a43aeb22336824a3cb203a12f00c SHA512 6f9822cb5498c95cb8dd4bee3ebb9491c575da462fe620f94ed5b0352ca40bf0ba678fbc751152fdad9a171aa65bf37cec1be22d4b5dc5426fd24be61041710e

View File

@@ -0,0 +1,54 @@
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 xdg
MY_PV=${PV/_rc/.dev}
DESCRIPTION="Maestral is an open-source Dropbox client written in Python"
HOMEPAGE="https://maestral.app"
SRC_URI="https://github.com/samschott/maestral/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}"/${PN}-${MY_PV}
LICENSE="MIT"
SLOT="0"
if [[ ${PV} != *_rc* ]]; then
KEYWORDS="~amd64"
fi
RDEPEND="
>=dev-python/click-8.0.2[${PYTHON_USEDEP}]
>=dev-python/desktop-notifier-3.3.0[${PYTHON_USEDEP}]
=dev-python/dropbox-11*[${PYTHON_USEDEP}]
>=dev-python/fasteners-0.15[${PYTHON_USEDEP}]
dev-python/importlib-metadata[${PYTHON_USEDEP}]
>=dev-python/keyring-22.0.0[${PYTHON_USEDEP}]
>=dev-python/keyrings-alt-3.1.0[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
>=dev-python/pathspec-0.5.8[${PYTHON_USEDEP}]
>=dev-python/Pyro5-5.10[${PYTHON_USEDEP}]
>=dev-python/requests-2.16.2[${PYTHON_USEDEP}]
dev-python/rich[${PYTHON_USEDEP}]
=dev-python/survey-3*[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]
>=dev-python/watchdog-2.0.1[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/build[${PYTHON_USEDEP}]
"
EPYTEST_DESELECT=(
# requires dev-python/pytest-benchmark not available for py3.11
tests/offline/test_clean_local_events.py::test_performance
# requires systemd
tests/offline/test_cli.py::test_autostart
# requires network
tests/offline/test_main.py::test_check_for_updates
)
distutils_enable_tests pytest