diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-11-15 18:57:30 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-11-15 19:16:48 +0100 |
commit | 5cddbfc3fd11b0f19656a770f2990449a6d8dff1 (patch) | |
tree | eb137a121f70fae2226a3e76f64f9c1b7c409509 /app-admin/github-backup-utils/github-backup-utils-2.22.0.ebuild | |
parent | app-admin/eclean-kernel: Remove old (diff) | |
download | gentoo-5cddbfc3fd11b0f19656a770f2990449a6d8dff1.tar.gz gentoo-5cddbfc3fd11b0f19656a770f2990449a6d8dff1.tar.bz2 gentoo-5cddbfc3fd11b0f19656a770f2990449a6d8dff1.zip |
app-admin/github-backup-utils: Remove py3.8-only versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-admin/github-backup-utils/github-backup-utils-2.22.0.ebuild')
-rw-r--r-- | app-admin/github-backup-utils/github-backup-utils-2.22.0.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/app-admin/github-backup-utils/github-backup-utils-2.22.0.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.22.0.ebuild deleted file mode 100644 index 15865bbb263e..000000000000 --- a/app-admin/github-backup-utils/github-backup-utils-2.22.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# Python3 support: https://github.com/github/backup-utils/pull/627 -PYTHON_COMPAT=( python3_{7,8} ) -inherit python-any-r1 - -DESCRIPTION="Backup and recovery utilities for GitHub Enterprise" -HOMEPAGE="https://github.com/github/backup-utils" -SRC_URI="https://github.com/github/backup-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -# moreutils parallel is now used for speedups in main code: -# https://github.com/github/backup-utils/pull/635 -RDEPEND="net-misc/rsync - sys-apps/moreutils" - -# tests invoke parallel & rsync -DEPEND="test? ( - ${RDEPEND} - dev-util/checkbashisms - ${PYTHON_DEPS} -)" - -MY_PN="${PN/#github-/}" -S="${WORKDIR}/${MY_PN}-${PV}" - -src_compile() { - :; -} - -src_install() { - dobin bin/* - insinto usr/share/${PN} - doins share/${PN}/version - - exeinto usr/share/${PN} - doexe share/${PN}/bm.sh - doexe share/${PN}/ghe-* - - insinto etc/${PN} - newins backup.config-example backup.config - - dodoc -r docs/* -} - -src_test() { - emake test -} |