Files
guru/gui-apps/azote/azote-9999.ebuild
Anna (cybertailor) Vyalkova bb0aae8ad3 */*: disable py3.10
Python 3.10 target is scheduled for removal in Gentoo:
https://public-inbox.gentoo.org/gentoo-dev/e6ca9f1f4ababb79ab2a3d005c39b483c3ecef6e.camel@gentoo.org/

Sphinx 8.2.0 already dropped support for CPython 3.10 and PyPy 3.10,
leading to multiple CI failures in ::guru.

We can safely remove this target, because GURU is "experimental" and
does not have stable keywords.

Let's not remove "pypy3" right now because
a) There are not many packages using it.
b) So we can see which packages supported PyPy 3.10, and test them with
   PyPy 3.11.

Closes: https://github.com/gentoo/guru/pull/291
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2025-02-21 17:51:14 +05:00

57 lines
1.3 KiB
Bash

# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit desktop distutils-r1 optfeature xdg-utils
DESCRIPTION="wallpaper manager for wlroots compositors"
HOMEPAGE="https://github.com/nwg-piotr/azote"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/nwg-piotr/azote"
else
SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}/${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3 BSD"
SLOT="0"
RDEPEND="
dev-cpp/gtkmm:3.0
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pygobject:3=[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/send2trash[${PYTHON_USEDEP}]
"
DOCS=( README.md )
python_install_all() {
distutils-r1_python_install_all
cd "${S}"
domenu dist/azote.desktop
insinto /usr/share/pixmaps
doins dist/azote.svg
insinto /usr/share/azote
doins dist/indicator_*.png
insinto /usr/share/licenses/azote
doins LICENSE-COLORTHIEF
einstalldocs
}
pkg_postinst() {
xdg_desktop_database_update
optfeature "wayland support" gui-apps/grim gui-apps/slurp gui-apps/swaybg gui-apps/wlr-randr
optfeature "X support" media-gfx/feh media-gfx/maim x11-apps/xrandr x11-misc/slop
}