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/tea/
Date: Thu, 27 Apr 2017 12:17:26
Message-Id: 1493295425.17865cdbac4f7d24b93b97d298196bad3bb8d221.kensington@gentoo
1 commit: 17865cdbac4f7d24b93b97d298196bad3bb8d221
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 27 12:13:31 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 27 12:17:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17865cdb
7
8 app-editors/tea: remove 42.0.0
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 app-editors/tea/Manifest | 1 -
13 app-editors/tea/tea-42.0.0.ebuild | 52 ---------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/app-editors/tea/Manifest b/app-editors/tea/Manifest
17 index 90896b4fedf..fe7c8510206 100644
18 --- a/app-editors/tea/Manifest
19 +++ b/app-editors/tea/Manifest
20 @@ -1,2 +1 @@
21 -DIST tea-42.0.0.tar.bz2 383237 SHA256 4981a361985677fceaa32d2911a95522ea715a362d05d9f61501063495321203 SHA512 d5b746198ff1c02cb832db333b1ff0d141427b4dccbf2d3d3d0ee8722089a4c1ca0a70af7331b78f1a296f4201d25252a7f9f7040bbcd89b6bde09f2fe9a1b7d WHIRLPOOL 2bb3c7863f362be8488683b260d3a9de76ecf7ec1a0b21417ce65d6cc83c57f629db530d71b5fbedc42043a110e76b47ccf20e20290ed191274d92ca61e934c4
22 DIST tea-43.1.0.tar.bz2 398524 SHA256 36fa3e28391d06f75f67926f5259999829c40c069fb76331a19f3528b463573a SHA512 1b647e1df81ebbcdf73e2335df34a73aca49c80b90b5bbabc05f52277f142e52e35922f788fbff12627f68aafd9ab18601e4cda964628a16025545240cf6e3de WHIRLPOOL 2f01a342d352e419ef7db264d654918494a769f2dfa76561274a3e1911ec194c68f3f8a40bb997b856781fd0b51b542c2db7b6ee10f2ec6f92c4be10d4042bda
23
24 diff --git a/app-editors/tea/tea-42.0.0.ebuild b/app-editors/tea/tea-42.0.0.ebuild
25 deleted file mode 100644
26 index 89912d2a258..00000000000
27 --- a/app-editors/tea/tea-42.0.0.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit eutils qmake-utils
36 -
37 -DESCRIPTION="Small, lightweight Qt text editor"
38 -HOMEPAGE="http://tea.ourproject.org/"
39 -SRC_URI="http://tea.ourproject.org/dloads/${P}.tar.bz2"
40 -
41 -LICENSE="GPL-3+"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86 ~x86-fbsd"
44 -IUSE="aspell hunspell"
45 -
46 -RDEPEND="
47 - dev-qt/qtcore:5
48 - dev-qt/qtdeclarative: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 - hunspell? ( app-text/hunspell:= )
56 -"
57 -DEPEND="${RDEPEND}
58 - hunspell? ( virtual/pkgconfig )
59 -"
60 -
61 -DOCS=( AUTHORS ChangeLog NEWS NEWS-RU TODO )
62 -
63 -src_configure() {
64 - eqmake5 src.pro \
65 - $(use aspell || echo CONFIG+=noaspell) \
66 - $(use hunspell || echo CONFIG+=nohunspell)
67 -}
68 -
69 -src_install() {
70 - dobin bin/tea
71 -
72 - einstalldocs
73 - docinto html
74 - dodoc manuals/*.html
75 -
76 - insinto /usr/share/qt5/translations
77 - doins translations/${PN}_*.qm
78 -
79 - newicon icons/tea-icon-v3-01.png ${PN}.png
80 - make_desktop_entry ${PN} 'Tea Editor'
81 -}