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