diff options
author | Austin English <wizardedit@gentoo.org> | 2016-09-22 18:10:29 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-09-22 18:10:48 -0500 |
commit | 3983b3c9adf3471737b809d242e9ec298faa85b7 (patch) | |
tree | b008fbe452ca51207e14e6992ce482e2d5b0ecad /app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild | |
parent | x11-misc/qarma: initial import (diff) | |
download | gentoo-3983b3c9adf3471737b809d242e9ec298faa85b7.tar.gz gentoo-3983b3c9adf3471737b809d242e9ec298faa85b7.tar.bz2 gentoo-3983b3c9adf3471737b809d242e9ec298faa85b7.zip |
app-admin/github-backup-utils: version bump
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild')
-rw-r--r-- | app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild new file mode 100644 index 000000000000..24304bc6198c --- /dev/null +++ b/app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# See https://github.com/github/backup-utils/issues/135 +PYTHON_COMPAT=(python2_7) +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" + +DEPEND="test? ( + dev-util/checkbashisms + ${PYTHON_DEPS} +)" + +RDEPEND="net-misc/rsync" + +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 +} + +src_test() { + emake test +} |