summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin English <wizardedit@gentoo.org>2016-05-11 17:18:26 -0500
committerAustin English <wizardedit@gentoo.org>2016-05-11 17:18:26 -0500
commitb337c7bb61dca681a203c66c93d8352942dbd66c (patch)
tree2b64d474b4938596e146671f43e2150103a0b13e /app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild
parentprofiles/package.mask: mask dev-haskell/hpc in favour of ghc's bundled version (diff)
downloadgentoo-b337c7bb61dca681a203c66c93d8352942dbd66c.tar.gz
gentoo-b337c7bb61dca681a203c66c93d8352942dbd66c.tar.bz2
gentoo-b337c7bb61dca681a203c66c93d8352942dbd66c.zip
app-admin/github-backup-utils: version bump to 2.6.0
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild')
-rw-r--r--app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild48
1 files changed, 48 insertions, 0 deletions
diff --git a/app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild
new file mode 100644
index 000000000000..61582d743030
--- /dev/null
+++ b/app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild
@@ -0,0 +1,48 @@
+# 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="http://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}/ghe-*
+
+ insinto etc/${PN}
+ newins backup.config-example backup.config
+}
+
+src_test() {
+ emake test
+}