From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9733E138330 for ; Wed, 24 Aug 2016 17:52:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E11521C0A2; Wed, 24 Aug 2016 17:52:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E83521C0A2 for ; Wed, 24 Aug 2016 17:52:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AE3C6340997 for ; Wed, 24 Aug 2016 17:52:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 350372457 for ; Wed, 24 Aug 2016 17:52:36 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1472061033.68ed48fdf71aae256cd7d244a1317d098564e640.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/github-backup-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/github-backup-utils/github-backup-utils-2.7.0-r1.ebuild X-VCS-Directories: app-admin/github-backup-utils/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 68ed48fdf71aae256cd7d244a1317d098564e640 X-VCS-Branch: master Date: Wed, 24 Aug 2016 17:52:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7a1a1973-618b-4971-9cf1-19cf7f99c6dd X-Archives-Hash: eaac422304d5ea22c9a8c8ab3f7cf77e commit: 68ed48fdf71aae256cd7d244a1317d098564e640 Author: Austin English gentoo org> AuthorDate: Wed Aug 24 17:50:33 2016 +0000 Commit: Austin English gentoo org> CommitDate: Wed Aug 24 17:50:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ed48fd app-admin/github-backup-utils: also install bm.sh in 2.7.0 It's a new file that didn't match their previous naming scheme. Without it, running ghe-backup/restore fails: $ ghe-backup /usr/bin/../share/github-backup-utils/ghe-backup-config: line 26: /usr/share/github-backup-utils/bm.sh: No such file or directory Package-Manager: portage-2.3.0 .../github-backup-utils-2.7.0-r1.ebuild | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/app-admin/github-backup-utils/github-backup-utils-2.7.0-r1.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.7.0-r1.ebuild new file mode 100644 index 00000000..24304bc --- /dev/null +++ b/app-admin/github-backup-utils/github-backup-utils-2.7.0-r1.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 +}