Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/github-backup-utils/
Date: Thu, 23 Apr 2020 21:42:04
Message-Id: 1587678107.c18b661c4db8c8f26ca58fffe837f484d5e84875.williamh@gentoo
1 commit: c18b661c4db8c8f26ca58fffe837f484d5e84875
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 21:40:27 2020 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 21:41:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c18b661c
7
8 app-admin/github-backup-utils: 2.20.2 bump
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 app-admin/github-backup-utils/Manifest | 1 +
13 .../github-backup-utils-2.20.2.ebuild | 52 ++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/app-admin/github-backup-utils/Manifest b/app-admin/github-backup-utils/Manifest
17 index a0aab3e23f3..6b538ccb693 100644
18 --- a/app-admin/github-backup-utils/Manifest
19 +++ b/app-admin/github-backup-utils/Manifest
20 @@ -11,3 +11,4 @@ DIST github-backup-utils-2.16.1.tar.gz 84847 BLAKE2B 5c6c0cbe8268ae1763217395827
21 DIST github-backup-utils-2.17.0.tar.gz 89926 BLAKE2B 82e89d616f78d630a4c537ad110f1097fd4925f9d0b45ebd117a5f4dbce21ec84bddd1f7a2cfebc52464e8fff9117bd4b0cc5e862e666d4b3d05f11a9b88730d SHA512 aeae5d5f662a687e13ff0aed54801759480ba39e31f0ad49a9ecc4fabad5aa5e124e774c7b939a366a33135e81614d1cee6f1004481bbe94150b48a11f222a90
22 DIST github-backup-utils-2.18.0.tar.gz 90357 BLAKE2B e9f6c155246914a36d26ec8cddf4a1e9feca73b3450ceb8e6df11df7c077b86f18cfa23b51e77425ba4e28ce4a3664200c1ddb15e6eb856d6b8930379dd3e348 SHA512 1778bf4cf404444e567f9f6b98bcd01bf9880939b4645692d75dbf10e7b31b40678521b66fbdabfedef648561f34709492b7860ce16442757e161db2ffda45a2
23 DIST github-backup-utils-2.19.1.tar.gz 90260 BLAKE2B 403feca60cc6037a2fbcb4cc467520fb3283916fdc78e16e960656b695e1c55341c55e74fe246c56fbc2cd86a85e33bcede4d94132adaa446ea48ed8f3f75022 SHA512 60155021d23eadc5ab1ddcadf95dbab43f19456c0e7ef34e93c75d173c1279b354c7019b304d72cabcac674edbd0c4a0c4e50c08606a8559ea662858a9cdb206
24 +DIST github-backup-utils-2.20.2.tar.gz 92628 BLAKE2B a6c9fb91b005d20b15ce0b2fc289a145bbfd8316aca4511300cda8a9f1b1e52afb9619a9f467e6e87eec673244776a0bf469d0d4a4c608af0f462eae7a06dc44 SHA512 0d2c56fd2e98c8f858cf3a03e2c2d84c20555716d015cdf1f0a789171cb6ea301050a41d1314a15316258f3f159123ba21526c1fd69cba548e8f259c70a92ab9
25
26 diff --git a/app-admin/github-backup-utils/github-backup-utils-2.20.2.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.20.2.ebuild
27 new file mode 100644
28 index 00000000000..9a251dd782d
29 --- /dev/null
30 +++ b/app-admin/github-backup-utils/github-backup-utils-2.20.2.ebuild
31 @@ -0,0 +1,52 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
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 +RESTRICT="!test? ( test )"
50 +
51 +DEPEND="test? (
52 + dev-util/checkbashisms
53 + sys-apps/moreutils
54 + ${PYTHON_DEPS}
55 +)"
56 +
57 +RDEPEND="net-misc/rsync"
58 +
59 +MY_PN="${PN/#github-/}"
60 +S="${WORKDIR}/${MY_PN}-${PV}"
61 +
62 +src_compile() {
63 + :;
64 +}
65 +
66 +src_install() {
67 + dobin bin/*
68 + insinto usr/share/${PN}
69 + doins share/${PN}/version
70 +
71 + exeinto usr/share/${PN}
72 + doexe share/${PN}/bm.sh
73 + doexe share/${PN}/ghe-*
74 +
75 + insinto etc/${PN}
76 + newins backup.config-example backup.config
77 +
78 +dodoc -r docs/*
79 +}
80 +
81 +src_test() {
82 + emake test
83 +}