mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
32 lines
714 B
Bash
32 lines
714 B
Bash
# Copyright 2024-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} )
|
|
|
|
PYPI_NO_NORMALIZE=true # Without this - cannot fetch
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Saving and restoring i3 workspaces"
|
|
HOMEPAGE="
|
|
https://github.com/JonnyHaystack/i3-resurrect
|
|
https://pypi.org/project/i3-resurrect
|
|
"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
dev-python/i3ipc[${PYTHON_USEDEP}]
|
|
dev-python/natsort[${PYTHON_USEDEP}]
|
|
x11-wm/i3
|
|
"
|
|
|
|
pkg_postins() {
|
|
elog "Documentation: https://github.com/JonnyHaystack/i3-resurrect?tab=readme-ov-file#usage"
|
|
elog "Alternative software: x11-misc/i3-restore"
|
|
}
|