Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/ghostwriter/
Date: Sat, 24 Aug 2019 09:07:25
Message-Id: 1566637609.95993823c689ca24cc953dfb49138422c4eb3724.asturm@gentoo
1 commit: 95993823c689ca24cc953dfb49138422c4eb3724
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 22 21:29:38 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 24 09:06:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95993823
7
8 app-editors/ghostwriter: Drop 1.7.4-r1
9
10 Package-Manager: Portage-2.3.72, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-editors/ghostwriter/Manifest | 1 -
14 .../ghostwriter/ghostwriter-1.7.4-r1.ebuild | 56 ----------------------
15 2 files changed, 57 deletions(-)
16
17 diff --git a/app-editors/ghostwriter/Manifest b/app-editors/ghostwriter/Manifest
18 index 4edaa3d126b..39d80b85ecf 100644
19 --- a/app-editors/ghostwriter/Manifest
20 +++ b/app-editors/ghostwriter/Manifest
21 @@ -1,2 +1 @@
22 -DIST ghostwriter-1.7.4.tar.gz 1195162 BLAKE2B 6339161b73b6e8cf9fce37da5133416512a61289189fb3f574af96753e62e8e364d610dd277542bd18b4ec44692dc149d4b3d5a6cd89894536d4dc898994c667 SHA512 b09e0f8152cd8bdd4465f20d94134ea6ef840b4ccd6d9f75bce8452917d98adc89093c661ecde0400fba7d68f832633c8fe0b19a1607ce79e3f400caa573da8f
23 DIST ghostwriter-1.8.0.tar.gz 1195999 BLAKE2B d751e570aed94bcf0806ca20d82b0ac2b465649caf31f01b761f0370a4f1b04ac8f948213b15c05a71541b8068ef21dfb2105b5fc91d5637e498e2d4c8f6bf9a SHA512 aff500d9221f28f6a06a93bf0b5ddb590792b22bc551749b790f52751cd7f2e27ea59778927c2f117320cb1791b45d51d8efdf479f0894319755afb1a509f7bd
24
25 diff --git a/app-editors/ghostwriter/ghostwriter-1.7.4-r1.ebuild b/app-editors/ghostwriter/ghostwriter-1.7.4-r1.ebuild
26 deleted file mode 100644
27 index fd47f327944..00000000000
28 --- a/app-editors/ghostwriter/ghostwriter-1.7.4-r1.ebuild
29 +++ /dev/null
30 @@ -1,56 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit qmake-utils xdg-utils
37 -
38 -DESCRIPTION="Cross-platform, aesthetic, distraction-free markdown editor"
39 -HOMEPAGE="https://wereturtle.github.io/ghostwriter/"
40 -SRC_URI="https://github.com/wereturtle/ghostwriter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-3+"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="debug"
46 -
47 -RDEPEND="
48 - app-text/hunspell
49 - dev-qt/qtcore:5
50 - dev-qt/qtgui:5
51 - dev-qt/qtprintsupport:5
52 - dev-qt/qtsvg:5
53 - dev-qt/qtwebkit:5
54 - dev-qt/qtwidgets:5
55 -"
56 -DEPEND="${RDEPEND}
57 - dev-qt/linguist-tools:5
58 - dev-qt/qtconcurrent:5
59 -"
60 -
61 -DOCS=( CREDITS.md README.md )
62 -
63 -src_prepare() {
64 - default
65 -
66 - sed -i -e "/^VERSION =/s/\$.*/${PV}/" ghostwriter.pro || die "failed to override version"
67 -}
68 -
69 -src_configure() {
70 - eqmake5 \
71 - CONFIG+=$(usex debug debug release) \
72 - PREFIX="${EPREFIX}"/usr
73 -}
74 -
75 -src_install() {
76 - emake INSTALL_ROOT="${D}" install
77 - einstalldocs
78 -}
79 -
80 -pkg_postinst() {
81 - xdg_desktop_database_update
82 -}
83 -
84 -pkg_postrm() {
85 - xdg_desktop_database_update
86 -}