Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/geary/
Date: Fri, 10 Jan 2020 21:49:52
Message-Id: 1578692970.0b62cc502011707cc805c0b84817baa89403af89.leio@gentoo
1 commit: 0b62cc502011707cc805c0b84817baa89403af89
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 10 21:49:30 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 10 21:49:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b62cc50
7
8 mail-client/geary: remove old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 mail-client/geary/geary-3.34.2.ebuild | 95 -----------------------------------
14 1 file changed, 95 deletions(-)
15
16 diff --git a/mail-client/geary/geary-3.34.2.ebuild b/mail-client/geary/geary-3.34.2.ebuild
17 deleted file mode 100644
18 index 2ba8bb3a81c..00000000000
19 --- a/mail-client/geary/geary-3.34.2.ebuild
20 +++ /dev/null
21 @@ -1,95 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -VALA_MIN_API_VERSION="0.44"
27 -
28 -inherit gnome.org gnome2-utils meson vala xdg
29 -
30 -DESCRIPTION="A lightweight, easy-to-use, feature-rich email client"
31 -HOMEPAGE="https://wiki.gnome.org/Apps/Geary"
32 -
33 -LICENSE="LGPL-2.1+ BSD-2 CC-BY-3.0 CC-BY-SA-3.0" # code is LGPL-2.1+, BSD-2 for bundled snowball-stemmer, CC licenses for some icons
34 -SLOT="0"
35 -
36 -IUSE="unwind +ytnef"
37 -
38 -KEYWORDS="~amd64 ~x86"
39 -
40 -# for now both enchants work
41 -# FIXME: add valadoc support
42 -
43 -DEPEND="
44 - >=dev-libs/appstream-glib-0.7.10
45 - >=dev-libs/glib-2.54:2
46 - >=gui-libs/libhandy-0.0.9:0.0=
47 - >=x11-libs/gtk+-3.22.26:3[introspection]
48 - >=net-libs/webkit-gtk-2.20:4=[introspection]
49 - app-text/gspell[vala]
50 - app-text/iso-codes
51 - >=dev-db/sqlite-3.12:3
52 -
53 - >=net-libs/libsoup-2.48:2.4[introspection]
54 - net-libs/gnome-online-accounts
55 -
56 - >=dev-libs/libgee-0.8.5:0.8=[introspection]
57 - >=x11-libs/libnotify-0.7.5[introspection]
58 - >=media-libs/libcanberra-0.28
59 - >=dev-libs/gmime-2.6.17:2.6
60 - >=app-crypt/libsecret-0.11[introspection,vala]
61 - >=dev-libs/libxml2-2.7.8:2
62 - >=app-crypt/gcr-3.10.1:0=[gtk,introspection,vala]
63 - app-text/enchant
64 - >=dev-libs/folks-0.11:0
65 - dev-libs/json-glib
66 - unwind? ( >=sys-libs/libunwind-1.1:7 )
67 - ytnef? ( >=net-mail/ytnef-1.9.3 )
68 -"
69 -
70 -BDEPEND="
71 - sys-devel/gettext
72 - dev-util/desktop-file-utils
73 - virtual/pkgconfig
74 - $(vala_depend)
75 -"
76 -
77 -RDEPEND="${DEPEND}
78 - gnome-base/dconf
79 - gnome-base/gsettings-desktop-schemas
80 -"
81 -
82 -src_prepare() {
83 - local i
84 - if [[ -n "${LINGUAS+x}" ]] ; then
85 - for i in $(cd po ; echo *.po) ; do
86 - if ! has ${i%.po} ${LINGUAS} ; then
87 - sed -i -e "/^${i%.po}$/d" po/LINGUAS || die
88 - fi
89 - done
90 - fi
91 -
92 - vala_src_prepare
93 - xdg_src_prepare
94 -}
95 -
96 -src_configure() {
97 - # appstream_util & desktop_file_validate doesn't seem to
98 - # doing anything useful for an actual release, maybe for 9999?
99 - local emesonargs=(
100 - -Dlibunwind_optional=$(usex unwind false true)
101 - -Dtnef-support=$(usex ytnef true false)
102 - -Dpoodle=true
103 - )
104 -
105 - meson_src_configure
106 -}
107 -
108 -pkg_postinst() {
109 - xdg_pkg_postinst
110 - gnome2_schemas_update
111 -}
112 -
113 -pkg_postrm() {
114 - xdg_pkg_postrm
115 - gnome2_schemas_update
116 -}