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, 28 Jul 2016 19:14:32
Message-Id: 1469733256.d54e3b0407d813f4f4cdbebd5c9e4b2d6b14004f.wizardedit@gentoo
1 commit: d54e3b0407d813f4f4cdbebd5c9e4b2d6b14004f
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 28 19:13:57 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 28 19:14:16 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d54e3b04
7
8 app-admin/github-backup-utils: version bump to 2.6.3
9
10 Package-Manager: portage-2.3.0
11
12 app-admin/github-backup-utils/Manifest | 1 +
13 .../github-backup-utils-2.6.3.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/app-admin/github-backup-utils/Manifest b/app-admin/github-backup-utils/Manifest
17 index b457cab..852dca6 100644
18 --- a/app-admin/github-backup-utils/Manifest
19 +++ b/app-admin/github-backup-utils/Manifest
20 @@ -1,2 +1,3 @@
21 DIST github-backup-utils-2.5.0.tar.gz 40850 SHA256 9cc7cd40f41e6071c36527ec7983b877e461452cd08d04439efd5fa9352900a0 SHA512 ecd5b85e0e2e300a9f40ecb8f545868554c7b48bdf800a21cf111ead80c185c96d475c67487c9b9e8af676f8c71a001730084abde79e05860b3e24004888292d WHIRLPOOL 15be1d603c9b61a4cff47e319ee1a66b64684dfd19f06c696bffb41b77dc756a895e25074d5a6dd19aeebaa3106fe12842cb22a639ed4abd3a6c2922e8cdbc1f
22 DIST github-backup-utils-2.6.0.tar.gz 45970 SHA256 7273cebcb23bc597432a2b66ab7e9367a4fb09a750cf2438f8957dc83dcf27c3 SHA512 a795e439f9d28e27b457c5b6eb42f35d6aea1527c2a01a26b81d6e86829db14a0b27a366d9358214bbe1c16540fe524fb0010d5f509c78ba5398c6bdbf04182e WHIRLPOOL fd1aeec46946190657e61e611a089b4a7cef53beb7b3f9a500b7117fcdbd89c5ef09681aff98ed5d559cc243f76180eb6eec0cc6f2fcfeed0789c159f5a09afe
23 +DIST github-backup-utils-2.6.3.tar.gz 50884 SHA256 3a5e48ff250b64a9bcec69a269b0e93efda078b8b77afc992c12aa40ee7bb3d9 SHA512 dff092325ad6f3502c8c0afbea90a53469af0ab4b98eaa39a950022c5b4e199cd3b48b5ec0585e3ea39b9bbd707dd037e8e0ed00ed8c6858276ba1a8e1075290 WHIRLPOOL aa19640ee5583d5e64aaab7b5a9d5572c47a09dd11fd0bed30ffc6aad0a10ddfc4e258f4680180547f8327fbedc5866bde4b20bd5e962dfa8162cd8ecf5e6db3
24
25 diff --git a/app-admin/github-backup-utils/github-backup-utils-2.6.3.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.6.3.ebuild
26 new file mode 100644
27 index 0000000..9aa0179
28 --- /dev/null
29 +++ b/app-admin/github-backup-utils/github-backup-utils-2.6.3.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +# See https://github.com/github/backup-utils/issues/135
38 +PYTHON_COMPAT=(python2_7)
39 +inherit python-any-r1
40 +
41 +DESCRIPTION="Backup and recovery utilities for GitHub Enterprise"
42 +HOMEPAGE="https://github.com/github/backup-utils"
43 +SRC_URI="https://github.com/github/backup-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +IUSE="test"
49 +
50 +DEPEND="test? (
51 + dev-util/checkbashisms
52 + ${PYTHON_DEPS}
53 +)"
54 +
55 +RDEPEND="net-misc/rsync"
56 +
57 +MY_PN="${PN/#github-/}"
58 +S="${WORKDIR}/${MY_PN}-${PV}"
59 +
60 +src_compile() {
61 + :;
62 +}
63 +
64 +src_install() {
65 + dobin bin/*
66 + insinto usr/share/${PN}
67 + doins share/${PN}/version
68 +
69 + exeinto usr/share/${PN}
70 + doexe share/${PN}/ghe-*
71 +
72 + insinto etc/${PN}
73 + newins backup.config-example backup.config
74 +}
75 +
76 +src_test() {
77 + emake test
78 +}