summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <william.hubbs@sony.com>2019-02-28 17:14:29 -0600
committerWilliam Hubbs <williamh@gentoo.org>2019-02-28 17:15:55 -0600
commitb592bdc4b5fe6ee4adc1b390e156f2ff332a8cc2 (patch)
tree3853fa5b383e6d8e5dbec97d343f900da2413a3f /app-admin/github-backup-utils/github-backup-utils-2.16.1.ebuild
parentwww-client/firefox: bump to v65.0.2 (diff)
downloadgentoo-b592bdc4b5fe6ee4adc1b390e156f2ff332a8cc2.tar.gz
gentoo-b592bdc4b5fe6ee4adc1b390e156f2ff332a8cc2.tar.bz2
gentoo-b592bdc4b5fe6ee4adc1b390e156f2ff332a8cc2.zip
app-admin/github-backup-utils: 2.16.1 bump
Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-admin/github-backup-utils/github-backup-utils-2.16.1.ebuild')
-rw-r--r--app-admin/github-backup-utils/github-backup-utils-2.16.1.ebuild51
1 files changed, 51 insertions, 0 deletions
diff --git a/app-admin/github-backup-utils/github-backup-utils-2.16.1.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.16.1.ebuild
new file mode 100644
index 000000000000..0bef08b2f3d8
--- /dev/null
+++ b/app-admin/github-backup-utils/github-backup-utils-2.16.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+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
+ sys-apps/moreutils
+ ${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
+
+dodoc -r docs/*
+}
+
+src_test() {
+ emake test
+}