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: Fri, 28 Oct 2016 13:42:51
Message-Id: 1477662154.a1e6666717d0e69ec98d2c33acb9a62a953a2ccb.kensington@gentoo
1 commit: a1e6666717d0e69ec98d2c33acb9a62a953a2ccb
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 28 13:42:27 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 13:42:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1e66667
7
8 app-editors/tea: remove old
9
10 Package-Manager: portage-2.3.2
11
12 app-editors/tea/Manifest | 1 -
13 app-editors/tea/tea-41.1.1.ebuild | 57 ---------------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/app-editors/tea/Manifest b/app-editors/tea/Manifest
17 index 8cc9a04..90896b4 100644
18 --- a/app-editors/tea/Manifest
19 +++ b/app-editors/tea/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST tea-41.1.1.tar.bz2 382592 SHA256 5f17a1f190c7a31f326273f5c987378f9fdbc3fc34a7d0a97529bc926492bef9 SHA512 087325a80f86b27c20174849a8477d1d994176f560fc0bc353cfa6bfcfc1e916bac42607d94640cd1c2e1abd6385db7a836557a6ef2defae6de0901195fc7975 WHIRLPOOL d1e48c2ba40d2978a06c2069927ba664b17f84039e96b349937ae5f159e32998a964fd86e8c89725bb36845aba541ba4eccfb91f939fb352b727e1cf2aa72548
22 DIST tea-42.0.0.tar.bz2 383237 SHA256 4981a361985677fceaa32d2911a95522ea715a362d05d9f61501063495321203 SHA512 d5b746198ff1c02cb832db333b1ff0d141427b4dccbf2d3d3d0ee8722089a4c1ca0a70af7331b78f1a296f4201d25252a7f9f7040bbcd89b6bde09f2fe9a1b7d WHIRLPOOL 2bb3c7863f362be8488683b260d3a9de76ecf7ec1a0b21417ce65d6cc83c57f629db530d71b5fbedc42043a110e76b47ccf20e20290ed191274d92ca61e934c4
23 DIST tea-43.1.0.tar.bz2 398524 SHA256 36fa3e28391d06f75f67926f5259999829c40c069fb76331a19f3528b463573a SHA512 1b647e1df81ebbcdf73e2335df34a73aca49c80b90b5bbabc05f52277f142e52e35922f788fbff12627f68aafd9ab18601e4cda964628a16025545240cf6e3de WHIRLPOOL 2f01a342d352e419ef7db264d654918494a769f2dfa76561274a3e1911ec194c68f3f8a40bb997b856781fd0b51b542c2db7b6ee10f2ec6f92c4be10d4042bda
24
25 diff --git a/app-editors/tea/tea-41.1.1.ebuild b/app-editors/tea/tea-41.1.1.ebuild
26 deleted file mode 100644
27 index b834812..00000000
28 --- a/app-editors/tea/tea-41.1.1.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -PLOCALES="de fr ru"
37 -
38 -inherit eutils l10n qmake-utils
39 -
40 -DESCRIPTION="Small, lightweight Qt text editor"
41 -HOMEPAGE="http://tea.ourproject.org/ http://semiletov.org/tea/"
42 -SRC_URI="http://tea.ourproject.org/dloads/${P}.tar.bz2"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd"
47 -IUSE="aspell hunspell"
48 -
49 -RDEPEND="
50 - dev-qt/qtcore:4
51 - dev-qt/qtgui:4
52 - sys-libs/zlib
53 - aspell? ( app-text/aspell )
54 - hunspell? ( app-text/hunspell )
55 -"
56 -DEPEND="${RDEPEND}
57 - hunspell? ( virtual/pkgconfig )
58 -"
59 -
60 -DOCS=( AUTHORS ChangeLog NEWS TODO )
61 -
62 -src_configure() {
63 - eqmake4 src.pro \
64 - $(use aspell || echo CONFIG+=noaspell) \
65 - $(use hunspell || echo CONFIG+=nohunspell)
66 -}
67 -
68 -src_install() {
69 - dobin bin/tea
70 -
71 - newicon icons/tea-icon-v3-01.png ${PN}.png
72 - make_desktop_entry ${PN} 'Tea Editor'
73 -
74 - # translations
75 - insinto /usr/share/qt4/translations
76 - local lang
77 - for lang in $(l10n_get_locales); do
78 - doins translations/${PN}_${lang}.qm
79 - done
80 -
81 - # docs
82 - dohtml manuals/en.html
83 - if use linguas_ru; then
84 - dodoc NEWS-RU
85 - dohtml manuals/ru.html
86 - fi
87 -}