Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/diakonos/
Date: Thu, 20 Jan 2022 14:30:15
Message-Id: 1642688987.39c5af1bbf3edc02b87b0f02272affd1a79591b5.sam@gentoo
1 commit: 39c5af1bbf3edc02b87b0f02272affd1a79591b5
2 Author: Dennis Eisele <kernlpanic <AT> dennis-eisele <DOT> de>
3 AuthorDate: Fri Jan 14 18:07:16 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 14:29:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39c5af1b
7
8 app-editors/diakonos: fix upsteam on version 0.9.4
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Dennis Eisele <kernlpanic <AT> dennis-eisele.de>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 app-editors/diakonos/Manifest | 2 +-
15 app-editors/diakonos/diakonos-0.9.4-r1.ebuild | 16 ++++++++--------
16 2 files changed, 9 insertions(+), 9 deletions(-)
17
18 diff --git a/app-editors/diakonos/Manifest b/app-editors/diakonos/Manifest
19 index 045292cca7c5..42c946116baa 100644
20 --- a/app-editors/diakonos/Manifest
21 +++ b/app-editors/diakonos/Manifest
22 @@ -1 +1 @@
23 -DIST diakonos-0.9.4.tar.bz2 102282 BLAKE2B f8625d87924815e816c2f5a07e5c1d35df4df6126531caf5c98a9fdcb20eb9543c028363344a3c20f2f8a0335fa9d071b168640d9bd4738b1d51737bcc548c12 SHA512 8aab6173c40b9a182853977ed7631c391a10d3339918fa96866da8c9fa8e36e40f1c5093465c734a9ce36a69c5d994d6b2d1c0306f1e57bff708fd7a64a62db7
24 +DIST diakonos-0.9.4.tar.gz 126301 BLAKE2B 197d32968053fe8b68f7e9909619f9be6548d1a32545d32c7cd4a9501f2df2635178ce681e6f77e9a1e0ea7f22fe80eed116239a1df655f3e3567e435d29dbad SHA512 c4737fa1de42549745b606bd881fbe7cff1e46517084142c10fe2a7076f25a6f7418d7aefbc569e3647bbdd04a185f07866021c24161f1675f11ecddde5d654c
25
26 diff --git a/app-editors/diakonos/diakonos-0.9.4-r1.ebuild b/app-editors/diakonos/diakonos-0.9.4-r1.ebuild
27 index 74fbd1888407..081eff7e66f0 100644
28 --- a/app-editors/diakonos/diakonos-0.9.4-r1.ebuild
29 +++ b/app-editors/diakonos/diakonos-0.9.4-r1.ebuild
30 @@ -1,4 +1,4 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 +# Copyright 1999-2022 Gentoo Authors
33 # Distributed under the terms of the GNU General Public License v2
34
35 EAPI=7
36 @@ -8,8 +8,8 @@ USE_RUBY="ruby26 ruby27 ruby30"
37 inherit ruby-ng
38
39 DESCRIPTION="A Linux editor for the masses"
40 -HOMEPAGE="http://diakonos.pist0s.ca"
41 -SRC_URI="http://diakonos.pist0s.ca/archives/${P}.tar.bz2"
42 +HOMEPAGE="https://git.sr.ht/~pistos/diakonos"
43 +SRC_URI="https://github.com/Pistos/diakonos/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
44
45 LICENSE="MIT"
46 SLOT="0"
47 @@ -21,8 +21,12 @@ ruby_add_rdepend "dev-ruby/curses"
48 ruby_add_bdepend "doc? ( dev-ruby/yard )
49 test? ( dev-ruby/bacon )"
50
51 +each_ruby_test() {
52 + ${RUBY} -S bacon -Ilib spec/*.rb spec/*/*.rb || die
53 +}
54 +
55 each_ruby_install() {
56 - ${RUBY} install.rb --dest-dir "${D}" --doc-dir /usr/share/doc/${P} || die "install failed"
57 + ${RUBY} install.rb --dest-dir "${D}" --doc-dir /usr/share/doc/${PF} || die "install failed"
58 }
59
60 all_ruby_install() {
61 @@ -31,7 +35,3 @@ all_ruby_install() {
62 dodoc -r doc/*
63 fi
64 }
65 -
66 -each_ruby_test() {
67 - ${RUBY} -S bacon -Ilib spec/*.rb spec/*/*.rb || die
68 -}