net-misc/maestral-qt: add 1.9.5

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2025-10-07 20:18:53 +03:00
parent 0a328a765b
commit fae912eb32
2 changed files with 38 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST maestral-qt-1.9.4.gh.tar.gz 1219613 BLAKE2B a94dea39af004911f88a0d008b78af080d4d643e5ad2d94ef232eb1e3d5abd4a877c4dbfcb5c6addd7265d8ecc08608d0238abf9000ed9b163f36df8b71b1eac SHA512 482f71ccf5f4449bf4f1e522e50fdf397d7622ceb8bfdc2700a7e111f0484237c63e7efd36a620f0bbac86541d0284482c7e8ad674457bb0f37c0a4039f98a22
DIST maestral-qt-1.9.5.gh.tar.gz 1219607 BLAKE2B 7be82fe52ab7fbfd137b8ad1f52acf42382349323342e7834893eeeb943fca1194e9f2a35119f21901a78110cd300c6ac8f6472b8f7636fb824a4790fdc533a1 SHA512 3cbb67faf1b08ec22e49347a6f469aa2210f71614c62477346799640a6a0f7606fc8c957ad379c1566b9357d6ba42ecd71e8d18eb7f6e782b7b6156c01b96c2d

View File

@@ -0,0 +1,37 @@
# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
inherit desktop distutils-r1
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/${PN}/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/markdown2[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
dev-python/pyqt6[widgets,gui,svg,${PYTHON_USEDEP}]
>=net-misc/maestral-${PV%_rc*}_rc0[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/build[${PYTHON_USEDEP}]
"
python_install_all() {
distutils-r1_python_install_all
domenu src/maestral_qt/resources/maestral.desktop
}