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