Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gummi/
Date: Sat, 16 Nov 2019 09:46:05
Message-Id: 1573897549.d878b19db4c81766b613c39d54f799846bdda748.juippis@gentoo
1 commit: d878b19db4c81766b613c39d54f799846bdda748
2 Author: Christian Tietz <christian.tietz <AT> mailbox <DOT> org>
3 AuthorDate: Fri Nov 15 19:39:00 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 16 09:45:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d878b19d
7
8 app-editors/gummi: Bump to 0.8.0-rc2
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Christian Tietz <christian.tietz <AT> mailbox.org>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 app-editors/gummi/Manifest | 1 +
15 app-editors/gummi/gummi-0.8.0_rc2.ebuild | 51 ++++++++++++++++++++++++++++++++
16 2 files changed, 52 insertions(+)
17
18 diff --git a/app-editors/gummi/Manifest b/app-editors/gummi/Manifest
19 index e8b0584419d..fe69b8521a1 100644
20 --- a/app-editors/gummi/Manifest
21 +++ b/app-editors/gummi/Manifest
22 @@ -1,2 +1,3 @@
23 DIST gummi-0.6.6.tar.gz 792642 BLAKE2B 4f6096999b06361811a9149fa08eff5d2315f01e55539c5849c4bc86aab5a482ad9a0adfe84de5d093e66a328b294b4d88e1e2e2f0355bab320f0c094581da97 SHA512 3be94927c9aafa4914ed2b6f6f5022dce5bcca315a1f947fafb8a4c8bbc5a2bc57f07f8ceaaacdd0b92a5a30483ea8b00e570faf62479280d2ad874716e4c47d
24 DIST gummi-0.7.999.tar.gz 578026 BLAKE2B b3305560d621eab029f0931dfc9978d0883acb886d89d2f9e452a60e465a10736191987523c47fe9f5373d7dd7d112383ebf7eaf030e6f0751197e535e461708 SHA512 1da2171cbb26b8be71c34dd7b1bc025813d35604e465caf67e480c3356a706991e6dcaca3bc99bb862895e4597186850c7d4f203a81a9532a4cd742cd2744dc1
25 +DIST gummi-0.8.0-rc2.tar.gz 581744 BLAKE2B c0665c8c2f8d6c0b4472ce4b9510362b942b7197ce205be763afe6272c848d4195a31b1cab0515d2d68ed517b153d943d52909744d9c91097d6fbc2a9a2b8793 SHA512 cc50a1d331dd93cca50aa50d2ceeeaa37740631b3cacbfc22d6b0a706bf8d9b00fb0935d1c712534108a3d7b32420e6bebf3f5592cd36a92b290f49b355d22fb
26
27 diff --git a/app-editors/gummi/gummi-0.8.0_rc2.ebuild b/app-editors/gummi/gummi-0.8.0_rc2.ebuild
28 new file mode 100644
29 index 00000000000..480181fd2a3
30 --- /dev/null
31 +++ b/app-editors/gummi/gummi-0.8.0_rc2.ebuild
32 @@ -0,0 +1,51 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit xdg-utils
39 +
40 +MY_PV="${PV/_rc/-rc}"
41 +MY_P="${PN}-${MY_PV}"
42 +
43 +DESCRIPTION="Simple LaTeX editor for GTK+ users"
44 +HOMEPAGE="https://github.com/alexandervdm/gummi"
45 +SRC_URI="https://github.com/alexandervdm/${PN}/releases/download/${MY_PV}/${MY_P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm64 ~x86"
50 +IUSE=""
51 +
52 +RDEPEND="
53 + app-text/gtkspell:3
54 + app-text/poppler[cairo]
55 + dev-libs/glib:2
56 + dev-texlive/texlive-latex
57 + dev-texlive/texlive-latexextra
58 + x11-libs/gtk+:3
59 + x11-libs/gtksourceview:3.0
60 + x11-libs/pango
61 +"
62 +DEPEND="
63 + ${RDEPEND}
64 +"
65 +BDEPEND="
66 + dev-util/intltool
67 + sys-devel/gettext
68 + virtual/pkgconfig
69 +"
70 +
71 +S="${WORKDIR}/${MY_P}"
72 +
73 +pkg_postinst() {
74 + xdg_desktop_database_update
75 +
76 + elog "Gummi supports spell-checking through gtkspell. Support for"
77 + elog "additional languages can be added by installing myspell-**-"
78 + elog "packages for your language of choice."
79 +}
80 +
81 +pkg_postrm() {
82 + xdg_desktop_database_update
83 +}