From f173dac57df03678321d31edf980159bcca25a19 Mon Sep 17 00:00:00 2001 From: Fredrik Eriksson Date: Mon, 21 Dec 2020 15:51:48 +0100 Subject: [PATCH] add live ebuild for rotator --- sys-apps/rotator/Manifest | 1 + sys-apps/rotator/rotator-9999.ebuild | 29 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 sys-apps/rotator/rotator-9999.ebuild diff --git a/sys-apps/rotator/Manifest b/sys-apps/rotator/Manifest index b9223df..a154b0e 100644 --- a/sys-apps/rotator/Manifest +++ b/sys-apps/rotator/Manifest @@ -1,2 +1,3 @@ DIST rotator-0.1.0.tar.gz 4945 BLAKE2B bcff967bf502ffea0c640ba1eefe72821502c930e0a95562c39f504a1d5f9a45f21da55b915aa94bed500654584bf9ad7a3a84c390b7befbe1319cd9b1a0b200 SHA512 bc0d02b0470aa711f13b82490563c67c512de73e9b270ffb7beed863e0ad7cd5d7ebac92ca53f175fefd3b44198d1ce2de4f30d60f031112403dce30de990d6e EBUILD rotator-0.1.0.ebuild 447 BLAKE2B 8210c9e0d627f9123e5e863d98b3675e536a822eef1efb6d7d464615cb3a0282617075fb92c233cd6224f80d973026c4345940f66e3b2a41627095a96fd6f5a7 SHA512 c5692842c125d136d528491dacb480107333dfaac3c3e3f32680765043708cd9bf2f9596c22d7d715031af7c09983b3a3d49de25b4f62e34f76ec3d5f5f3330d +EBUILD rotator-9999.ebuild 580 BLAKE2B 30bf83891eee4db0e96a4db481336e6e00fb2bcecf5772b6b4aa853ccf74e71d0af1ba9fb0f9a267720e71be2f0cb7c74d2959f11c3320ac94bd4a4f87c01a1f SHA512 c136cb3cf559e9dcc956608c8450b902451f84d982cc5d95ccfc69ce0849d02d2eb6d46813b8b13ee5757e1ff955c661caabe54797e4697f3d4b5b783bc76a34 diff --git a/sys-apps/rotator/rotator-9999.ebuild b/sys-apps/rotator/rotator-9999.ebuild new file mode 100644 index 0000000..4a42948 --- /dev/null +++ b/sys-apps/rotator/rotator-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Tool for rotating backup files" +HOMEPAGE="https://gitea.fulh.ax/feffe/rotator" +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://gitea.fulh.ax/feffe/rotator.git" + inherit git-r3 + KEYWORDS="~amd64" +else + SRC_URI="https://gitea.fulh.ax/feffe/rotator/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64" + S="${WORKDIR}/rotator" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="" +BDEPEND="" +