mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
38 lines
851 B
Bash
38 lines
851 B
Bash
# Copyright 2019-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
CONFIG_CHECK="~ZRAM ~ZSWAP"
|
|
PYTHON_COMPAT=( python3_{7..8} )
|
|
|
|
inherit linux-info python-r1
|
|
|
|
DESCRIPTION="Script for creating swap space from zram swaps, swap files and swap partitions."
|
|
HOMEPAGE="https://github.com/Nefelim4ag/systemd-swap/"
|
|
|
|
if [[ ${PV} == *9999 ]] ; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/Nefelim4ag/${PN}.git"
|
|
else
|
|
SRC_URI="https://github.com/Nefelim4ag/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
$(python_gen_any_dep '
|
|
dev-python/python-systemd[${PYTHON_USEDEP}]
|
|
dev-python/sysv_ipc[${PYTHON_USEDEP}]
|
|
')
|
|
"
|
|
|
|
src_install() {
|
|
default
|
|
keepdir /var/lib/systemd-swap
|
|
}
|