Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/ghub/
Date: Sun, 27 Mar 2022 09:25:08
Message-Id: 1648373079.7d32094dfd23af9eaae8a4e9c49d7a35485fade6.matthew@gentoo
1 commit: 7d32094dfd23af9eaae8a4e9c49d7a35485fade6
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 09:20:18 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 09:24:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d32094d
7
8 app-emacs/ghub: add 3.5.6
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 app-emacs/ghub/Manifest | 1 +
13 app-emacs/ghub/ghub-3.5.6.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/app-emacs/ghub/Manifest b/app-emacs/ghub/Manifest
17 index 6c06ce8a1c59..2e322c66bf73 100644
18 --- a/app-emacs/ghub/Manifest
19 +++ b/app-emacs/ghub/Manifest
20 @@ -1 +1,2 @@
21 DIST ghub-3.5.4.tar.gz 58088 BLAKE2B 5ee6fe56455e8f12e7be8c1ae705a426677fab0b9a5da8f42c4b331bdd635120a2f5475055c9e98c8df01b259f76aa2dd4cad6e8b4562481d261bb7802b826f6 SHA512 df8ba56195ae3773c0c8c8a8f555e562b04de59ce3fb1c17c24ca3b10418299555326f0a9360eb47725310890e31f73221eece3ca1ff83e47d52941e224fc562
22 +DIST ghub-3.5.6.tar.gz 59474 BLAKE2B c27610f24526a40b5f36d2f5154c0eeb9f86e9da676baa82b2866a0bb58de8a78736d56a5d6454666b539774abbf5dfcd260880aa07499616f44a3e2c8315999 SHA512 6c6724978f0809a4977cc7965de4c33eaf29537c13507aabffecae4a7d2b3710074179d819aee1a54fce8f12e20db46b18466c3f1012d3b9c41eae3c2fade58a
23
24 diff --git a/app-emacs/ghub/ghub-3.5.6.ebuild b/app-emacs/ghub/ghub-3.5.6.ebuild
25 new file mode 100644
26 index 000000000000..64e656791e15
27 --- /dev/null
28 +++ b/app-emacs/ghub/ghub-3.5.6.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +NEED_EMACS=25
35 +
36 +inherit elisp
37 +
38 +DESCRIPTION="Minuscule client library for the Git forge APIs"
39 +HOMEPAGE="https://magit.vc/manual/ghub"
40 +SRC_URI="https://github.com/magit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
45 +
46 +SITEFILE="50${PN}-gentoo.el"
47 +ELISP_TEXINFO="docs/ghub.texi"
48 +DOCS="README.md"
49 +
50 +RDEPEND="
51 + >=app-emacs/treepy-0.1.1
52 +"
53 +BDEPEND="${RDEPEND}
54 + sys-apps/texinfo"
55 +
56 +src_prepare() {
57 + default
58 + mv lisp/*.el . || die
59 + rm ghub-pkg.el || die
60 +}