Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/focuswriter/
Date: Sat, 10 Feb 2018 11:33:37
Message-Id: 1518262404.e26a5226e29c873970a92cbc2cefcbc2fbba30fc.kensington@gentoo
1 commit: e26a5226e29c873970a92cbc2cefcbc2fbba30fc
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 10 11:33:10 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 10 11:33:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e26a5226
7
8 app-editors/focuswriter: version bump 1.6.9
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-editors/focuswriter/Manifest | 1 +
13 app-editors/focuswriter/focuswriter-1.6.9.ebuild | 55 ++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/app-editors/focuswriter/Manifest b/app-editors/focuswriter/Manifest
17 index 665af410024..50c16929e9c 100644
18 --- a/app-editors/focuswriter/Manifest
19 +++ b/app-editors/focuswriter/Manifest
20 @@ -1,2 +1,3 @@
21 DIST focuswriter-1.6.7-src.tar.bz2 10196583 BLAKE2B 99c749271c785e69f07601575343669ed5be619e646be4ee38cc82242d353a84577842c1ff98f62b0adbbff1a733a0dce82593ac4ffa2eb61e611cea1b2657b5 SHA512 d33c66881b1065aa9812dae14a5fe2a2850ce1c50f4b38e028bcd3f5a4bb1fd489705b0272e3233f3db468b262daefbd906025126f792d04af41722cde2c7bf5
22 DIST focuswriter-1.6.8-src.tar.bz2 10196595 BLAKE2B 1c726b948469960e1cc35dcf592acf48693035d2792449fdc336ac4bb03029d6d9eaac77c674347ac5e7a1a7ba7cd386de0d4034e7390dd80067b9522d85a08d SHA512 d10a559448f075110d9ba7fec487b9f125a4fcdce7dc1fcd2b21b94613a7d1126baa49623273bf0f56b1b7c2ef026a30c019653ba73e39b6fa78687c862e3402
23 +DIST focuswriter-1.6.9-src.tar.bz2 10202664 BLAKE2B 68525ca548513b9b88ca032c0f629681a592149672611891a1ddfe6a8574a233dfc7bcee64dfcae2255b3dce2cbd15907428f25a7ad27a4ebc5c535d3fb34d7b SHA512 dcebd2e1c16a9eb1d135befef58ba0a276dac8d84385d90db3a8c192f3ff05eb5b6ac11cef239c1c4b4998b396da908ad99d5c89c0eb1438d9eb654f2cc7afec
24
25 diff --git a/app-editors/focuswriter/focuswriter-1.6.9.ebuild b/app-editors/focuswriter/focuswriter-1.6.9.ebuild
26 new file mode 100644
27 index 00000000000..67fc1801283
28 --- /dev/null
29 +++ b/app-editors/focuswriter/focuswriter-1.6.9.ebuild
30 @@ -0,0 +1,55 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit gnome2-utils qmake-utils xdg-utils
37 +
38 +DESCRIPTION="A fullscreen and distraction-free word processor"
39 +HOMEPAGE="https://gottcode.org/focuswriter/"
40 +SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
41 +
42 +LICENSE="LGPL-3 GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +# drop qtcore subslot when minimal Qt is 5.10
48 +RDEPEND="
49 + app-text/hunspell:=
50 + dev-qt/qtcore:5=
51 + dev-qt/qtgui:5
52 + dev-qt/qtmultimedia:5
53 + dev-qt/qtprintsupport:5
54 + dev-qt/qtsingleapplication[qt5,X]
55 + dev-qt/qtwidgets:5
56 + sys-libs/zlib
57 +"
58 +DEPEND="${RDEPEND}
59 + dev-qt/linguist-tools:5
60 + dev-qt/qtconcurrent:5
61 + virtual/pkgconfig
62 +"
63 +
64 +DOCS=( ChangeLog CREDITS NEWS README )
65 +
66 +PATCHES=( "${FILESDIR}/${PN}-1.6.0-unbundle-qtsingleapplication.patch" )
67 +
68 +src_configure() {
69 + eqmake5 PREFIX="${EPREFIX}/usr"
70 +}
71 +
72 +src_install() {
73 + emake INSTALL_ROOT="${D}" install
74 + einstalldocs
75 +}
76 +
77 +pkg_postinst() {
78 + gnome2_icon_cache_update
79 + xdg_desktop_database_update
80 +}
81 +
82 +pkg_postrm() {
83 + gnome2_icon_cache_update
84 + xdg_desktop_database_update
85 +}