From 5dac1cb8335a93d09f490622451e2964c4599a2e Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Tue, 5 May 2020 17:12:06 +0200 Subject: [PATCH] add app-arch/hast --- app-arch/hast/hast-9999.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app-arch/hast/hast-9999.ebuild diff --git a/app-arch/hast/hast-9999.ebuild b/app-arch/hast/hast-9999.ebuild new file mode 100644 index 0000000..c97ba79 --- /dev/null +++ b/app-arch/hast/hast-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +DESCRIPTION="Hashed storage - copies files from directories into one unique store." +HOMEPAGE="https://git.decade.cz/decade/${PN}" +EGIT_REPO_URI="https://git.decade.cz/decade/${PN}.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="*" + +RDEPEND=" + dev-python/over +" + +src_install() { + exeinto /usr/share/${PN} + doexe ${PN}.py + + insinto /usr/share/${PN} + doins version.py + + dosym /usr/share/${PN}/${PN}.py /usr/bin/${PN} +}