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/gummi/
Date: Sat, 14 May 2022 03:00:50
Message-Id: 1652497059.abb381d721ba3103db795b85a83367d00b595d93.sam@gentoo
1 commit: abb381d721ba3103db795b85a83367d00b595d93
2 Author: Christian Tietz <christian.tietz <AT> mailbox <DOT> org>
3 AuthorDate: Sun May 8 00:19:35 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat May 14 02:57:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abb381d7
7
8 app-editors/gummi: Bump to 0.8.3
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Christian Tietz <christian.tietz <AT> mailbox.org>
12 Closes: https://github.com/gentoo/gentoo/pull/25378
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 app-editors/gummi/Manifest | 1 +
16 app-editors/gummi/gummi-0.8.3.ebuild | 45 ++++++++++++++++++++++++++++++++++++
17 2 files changed, 46 insertions(+)
18
19 diff --git a/app-editors/gummi/Manifest b/app-editors/gummi/Manifest
20 index d7f56fa46a92..38c014f280d0 100644
21 --- a/app-editors/gummi/Manifest
22 +++ b/app-editors/gummi/Manifest
23 @@ -1 +1,2 @@
24 DIST gummi-0.8.2.tar.gz 595733 BLAKE2B 9c7366df2b8fe40f7876f065a1156eb4992048b3eaec5dde332c50ccb98ef2a5d8d2cbe73ebb56eb3736bbce49f3168f165db82f562ee7265ce0859952801a2c SHA512 3882f1e2779b94348cc0cc243c3968a78165c16de41029f9fcb8ba2fa942d329c43f5ecc8ba8327590e14343556ca472a51d1e824ce0985a415ab92aa2cbbc42
25 +DIST gummi-0.8.3.tar.gz 590485 BLAKE2B d919544eca87e22da49afc879933b5b54b23ed0a21303c95deb405c5ecdec57981d19f526e7cef27f904a6cc1fb5e1bea7af1131578b0f4275460035a5d9167f SHA512 c8c7b5427ed37a995bc8c6f814a5af2926595acfe4dea649e02af424291b8dff0d7264f1e68c7a86b457a9710ad6b18fed2238f1adeec91360921a242a7cb980
26
27 diff --git a/app-editors/gummi/gummi-0.8.3.ebuild b/app-editors/gummi/gummi-0.8.3.ebuild
28 new file mode 100644
29 index 000000000000..71b4d8dc5e59
30 --- /dev/null
31 +++ b/app-editors/gummi/gummi-0.8.3.ebuild
32 @@ -0,0 +1,45 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit xdg-utils
39 +
40 +DESCRIPTION="Simple LaTeX editor for GTK+ users"
41 +HOMEPAGE="https://github.com/alexandervdm/gummi"
42 +SRC_URI="https://github.com/alexandervdm/${PN}/releases/download/${PV}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
47 +
48 +RDEPEND="
49 + app-text/gtkspell:3
50 + app-text/poppler[cairo]
51 + dev-libs/glib:2
52 + dev-texlive/texlive-latex
53 + dev-texlive/texlive-latexextra
54 + x11-libs/gtk+:3
55 + x11-libs/gtksourceview:3.0
56 + x11-libs/pango
57 +"
58 +DEPEND="
59 + ${RDEPEND}
60 +"
61 +BDEPEND="
62 + dev-util/intltool
63 + sys-devel/gettext
64 + virtual/pkgconfig
65 +"
66 +
67 +pkg_postinst() {
68 + xdg_desktop_database_update
69 +
70 + elog "Gummi supports spell-checking through gtkspell. Support for"
71 + elog "additional languages can be added by installing myspell-**-"
72 + elog "packages for your language of choice."
73 +}
74 +
75 +pkg_postrm() {
76 + xdg_desktop_database_update
77 +}