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: Tue, 29 Oct 2019 06:22:14
Message-Id: 1572329378.0724839340c2883f2d52241805442cdb0ea4c003.juippis@gentoo
1 commit: 0724839340c2883f2d52241805442cdb0ea4c003
2 Author: Christian Tietz <christian.tietz <AT> mailbox <DOT> org>
3 AuthorDate: Sat Oct 26 13:50:27 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 29 06:09:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07248393
7
8 app-editors/gummi: Bump to 0.7.999 (GTK+3 pre-release)
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Christian Tietz <christian.tietz <AT> mailbox.org>
12 Closes: https://github.com/gentoo/gentoo/pull/13445
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-editors/gummi/Manifest | 1 +
16 app-editors/gummi/gummi-0.7.999.ebuild | 46 ++++++++++++++++++++++++++++++++++
17 2 files changed, 47 insertions(+)
18
19 diff --git a/app-editors/gummi/Manifest b/app-editors/gummi/Manifest
20 index 251c8bfc522..e8b0584419d 100644
21 --- a/app-editors/gummi/Manifest
22 +++ b/app-editors/gummi/Manifest
23 @@ -1 +1,2 @@
24 DIST gummi-0.6.6.tar.gz 792642 BLAKE2B 4f6096999b06361811a9149fa08eff5d2315f01e55539c5849c4bc86aab5a482ad9a0adfe84de5d093e66a328b294b4d88e1e2e2f0355bab320f0c094581da97 SHA512 3be94927c9aafa4914ed2b6f6f5022dce5bcca315a1f947fafb8a4c8bbc5a2bc57f07f8ceaaacdd0b92a5a30483ea8b00e570faf62479280d2ad874716e4c47d
25 +DIST gummi-0.7.999.tar.gz 578026 BLAKE2B b3305560d621eab029f0931dfc9978d0883acb886d89d2f9e452a60e465a10736191987523c47fe9f5373d7dd7d112383ebf7eaf030e6f0751197e535e461708 SHA512 1da2171cbb26b8be71c34dd7b1bc025813d35604e465caf67e480c3356a706991e6dcaca3bc99bb862895e4597186850c7d4f203a81a9532a4cd742cd2744dc1
26
27 diff --git a/app-editors/gummi/gummi-0.7.999.ebuild b/app-editors/gummi/gummi-0.7.999.ebuild
28 new file mode 100644
29 index 00000000000..1b970f9dfd1
30 --- /dev/null
31 +++ b/app-editors/gummi/gummi-0.7.999.ebuild
32 @@ -0,0 +1,46 @@
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 +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 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND="
50 + app-text/gtkspell:3
51 + app-text/poppler[cairo]
52 + dev-libs/glib:2
53 + dev-texlive/texlive-latex
54 + dev-texlive/texlive-latexextra
55 + x11-libs/gtk+:3
56 + x11-libs/gtksourceview:3.0
57 + x11-libs/pango
58 +"
59 +DEPEND="
60 + ${RDEPEND}
61 +"
62 +BDEPEND="
63 + dev-util/intltool
64 + sys-devel/gettext
65 + virtual/pkgconfig
66 +"
67 +
68 +pkg_postinst() {
69 + xdg_desktop_database_update
70 +
71 + elog "Gummi supports spell-checking through gtkspell. Support for"
72 + elog "additional languages can be added by installing myspell-**-"
73 + elog "packages for your language of choice."
74 +}
75 +
76 +pkg_postrm() {
77 + xdg_desktop_database_update
78 +}