Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/github-backup-utils/
Date: Thu, 22 Sep 2016 23:44:45
Message-Id: 1474585848.3983b3c9adf3471737b809d242e9ec298faa85b7.wizardedit@gentoo
1 commit: 3983b3c9adf3471737b809d242e9ec298faa85b7
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 23:10:29 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 23:10:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3983b3c9
7
8 app-admin/github-backup-utils: version bump
9
10 Package-Manager: portage-2.3.0
11
12 app-admin/github-backup-utils/Manifest | 1 +
13 .../github-backup-utils-2.7.1.ebuild | 49 ++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/app-admin/github-backup-utils/Manifest b/app-admin/github-backup-utils/Manifest
17 index 1420e7a..8739486 100644
18 --- a/app-admin/github-backup-utils/Manifest
19 +++ b/app-admin/github-backup-utils/Manifest
20 @@ -3,3 +3,4 @@ DIST github-backup-utils-2.6.0.tar.gz 45970 SHA256 7273cebcb23bc597432a2b66ab7e9
21 DIST github-backup-utils-2.6.3.tar.gz 50884 SHA256 3a5e48ff250b64a9bcec69a269b0e93efda078b8b77afc992c12aa40ee7bb3d9 SHA512 dff092325ad6f3502c8c0afbea90a53469af0ab4b98eaa39a950022c5b4e199cd3b48b5ec0585e3ea39b9bbd707dd037e8e0ed00ed8c6858276ba1a8e1075290 WHIRLPOOL aa19640ee5583d5e64aaab7b5a9d5572c47a09dd11fd0bed30ffc6aad0a10ddfc4e258f4680180547f8327fbedc5866bde4b20bd5e962dfa8162cd8ecf5e6db3
22 DIST github-backup-utils-2.6.4.tar.gz 51270 SHA256 caf34b54a3961562d545ad2fb68ec18a319e6fcc1a1e65e5daa00e04e7f7fb32 SHA512 be2ef9811e20fd9be03d1b57e75151089817bbdd87fa487462a8fe6186195581ad6b1c62b1b930bd64689e89dcf33c2228df7d77a12790404f09b679b1ecf377 WHIRLPOOL a313f94eea953648a3dfbacba5eb3b90e68ca12df034c723133d3d80e60e4be38ef30046b8bbc1bdb827095d75cb239a4152a77dedfed52f188d80b57143fcb0
23 DIST github-backup-utils-2.7.0.tar.gz 51409 SHA256 9556dbd438ea3525692705844c20b5bedc9a942c5415dd3c0fd9e383323dc11f SHA512 16112e8d05001146a182e225c1bb5bdfbe210ddb3993d989a9fe88b88bbf222196a66f1f48b262b198675af8e4b3e3a10120e7dafa7b244137bf29cd879efaaf WHIRLPOOL 9600d45f69f16cb95b0bb0b3cc5620d7bb6c2e65c2ac6b6942287c85487e83bb2b74d0869b411d0b4829cc9dd2da20972a7635780f00facadc28ca9787028a3b
24 +DIST github-backup-utils-2.7.1.tar.gz 68793 SHA256 e1e9ee69a005252ab4899693d43fee1aaebac3783d97c343e16566d0c12cdc17 SHA512 950c24b3fef8775c2a90789c469a81256323c1ede67b3f6691920e78c1489533adf5616f2ac09f9b844382778b5b2b5106f8c467be7d65b47ee06bf732591880 WHIRLPOOL 87cabe2138c58cf41a803cc43c23748a2f3ed578f3488bfb38861db64b81cb31f4d3aa41e6a240788c3bc9a32d9f523dd28cdb099e1b21cc2472d2cde72f7916
25
26 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
27 new file mode 100644
28 index 00000000..24304bc
29 --- /dev/null
30 +++ b/app-admin/github-backup-utils/github-backup-utils-2.7.1.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +# See https://github.com/github/backup-utils/issues/135
39 +PYTHON_COMPAT=(python2_7)
40 +inherit python-any-r1
41 +
42 +DESCRIPTION="Backup and recovery utilities for GitHub Enterprise"
43 +HOMEPAGE="https://github.com/github/backup-utils"
44 +SRC_URI="https://github.com/github/backup-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +IUSE="test"
50 +
51 +DEPEND="test? (
52 + dev-util/checkbashisms
53 + ${PYTHON_DEPS}
54 +)"
55 +
56 +RDEPEND="net-misc/rsync"
57 +
58 +MY_PN="${PN/#github-/}"
59 +S="${WORKDIR}/${MY_PN}-${PV}"
60 +
61 +src_compile() {
62 + :;
63 +}
64 +
65 +src_install() {
66 + dobin bin/*
67 + insinto usr/share/${PN}
68 + doins share/${PN}/version
69 +
70 + exeinto usr/share/${PN}
71 + doexe share/${PN}/bm.sh
72 + doexe share/${PN}/ghe-*
73 +
74 + insinto etc/${PN}
75 + newins backup.config-example backup.config
76 +}
77 +
78 +src_test() {
79 + emake test
80 +}