mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-18 12:00:26 +01:00
29 lines
569 B
Bash
29 lines
569 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Rsync/hardlinks based python script for backup purposes"
|
|
HOMEPAGE="https://github.com/gryf/py-time-machine"
|
|
EGIT_REPO_URI="https://github.com/gryf/py-time-machine"
|
|
EGIT_BRANCH="master"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm64 ~arm"
|
|
|
|
RDEPEND="
|
|
dev-python/pyyaml
|
|
net-misc/rsync
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
newbin py-time-machine.py py-time-machine
|
|
einstalldocs
|
|
}
|