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/tea/
Date: Mon, 01 Apr 2019 20:45:16
Message-Id: 1554151492.aa0b5ad92cb327dd5fe5dae5cd7fd63cbd0df866.asturm@gentoo
1 commit: aa0b5ad92cb327dd5fe5dae5cd7fd63cbd0df866
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 1 20:05:04 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 1 20:44:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0b5ad9
7
8 app-editors/tea: Drop 44.1.1
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-editors/tea/Manifest | 1 -
14 app-editors/tea/tea-44.1.1.ebuild | 65 ---------------------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/app-editors/tea/Manifest b/app-editors/tea/Manifest
18 index 16837ba57a8..f99875f7c8f 100644
19 --- a/app-editors/tea/Manifest
20 +++ b/app-editors/tea/Manifest
21 @@ -1,2 +1 @@
22 -DIST tea-44.1.1.tar.bz2 425326 BLAKE2B e674456c428bbecd5afb256280bccb61b6385492153955625c158dcfebba0ed31caebdcc06bc1f809517badddef3d97245a4bc873bcc0593957647becdebf62b SHA512 fc7bf6f76ac3a48767a39ff5bcada4c7dae40950bfd9aca4021b3581e1b702c73f2608b070306dd528932d5eaa73bf01632a4376bbb71deaf1189a0f790c05a9
23 DIST tea-47.0.0.tar.bz2 437273 BLAKE2B 8ed36526dedc6df4af74ef0e400c2ee2e19bb533cf2a4fa51df83f21ad78abb0e8e90bce3469e2e8db5f780ba8a900aedf2737c736945431b836ba0a76574b26 SHA512 7136d59383bf43c6a024a31aa29860a3e89893ff091a42f44f9e7088fb318920ab886cd1fdabc8ff6e3c30f8eb3d46d707228d2d45fb085ed7c822a4ffd89d13
24
25 diff --git a/app-editors/tea/tea-44.1.1.ebuild b/app-editors/tea/tea-44.1.1.ebuild
26 deleted file mode 100644
27 index e2cc47fd239..00000000000
28 --- a/app-editors/tea/tea-44.1.1.ebuild
29 +++ /dev/null
30 @@ -1,65 +0,0 @@
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="Small, lightweight Qt text editor"
39 -HOMEPAGE="https://tea.ourproject.org/"
40 -SRC_URI="https://tea.ourproject.org/dloads/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-3+"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86 ~x86-fbsd"
45 -IUSE="aspell djvu hunspell pdf +qml"
46 -
47 -RDEPEND="
48 - dev-qt/qtcore:5
49 - dev-qt/qtgui:5
50 - dev-qt/qtnetwork:5
51 - dev-qt/qtprintsupport:5
52 - dev-qt/qtwidgets:5
53 - sys-libs/zlib
54 - aspell? ( app-text/aspell )
55 - djvu? ( app-text/djvu )
56 - hunspell? ( app-text/hunspell:= )
57 - pdf? ( app-text/poppler[qt5] )
58 - qml? ( dev-qt/qtdeclarative:5 )
59 -"
60 -DEPEND="${RDEPEND}
61 - hunspell? ( virtual/pkgconfig )
62 -"
63 -
64 -DOCS=( AUTHORS ChangeLog NEWS NEWS-RU TODO )
65 -
66 -src_configure() {
67 - eqmake5 src.pro \
68 - PREFIX="/usr" \
69 - $(use aspell || echo CONFIG+=noaspell) \
70 - $(use djvu && echo CONFIG+=usedjvu) \
71 - $(use hunspell || echo CONFIG+=nohunspell) \
72 - $(use pdf && echo CONFIG+=usepoppler) \
73 - $(use qml || echo CONFIG+=noqml)
74 -}
75 -
76 -src_install() {
77 - emake INSTALL_ROOT="${D}" install
78 - einstalldocs
79 -
80 - docinto html
81 - dodoc manuals/*.html
82 -
83 - insinto /usr/share/qt5/translations
84 - doins translations/${PN}_*.qm
85 -}
86 -
87 -pkg_postinst() {
88 - gnome2_icon_cache_update
89 - xdg_desktop_database_update
90 -}
91 -
92 -pkg_postrm() {
93 - gnome2_icon_cache_update
94 - xdg_desktop_database_update
95 -}