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/efte/
Date: Thu, 05 Apr 2018 14:12:25
Message-Id: 1522937528.bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e.asturm@gentoo
1 commit: bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e
2 Author: Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
3 AuthorDate: Tue Apr 3 23:26:02 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 5 14:12:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf0386b8
7
8 app-editors/efte: fdo-mime xdg-utils migration
9
10 Also bumped EAPI, removed eutils, and removed banned use of
11 cmake-utils_use_build in EAPI=6.
12
13 Package-Manager: Portage-2.3.27, Repoman-2.3.9
14 Closes: https://github.com/gentoo/gentoo/pull/7795
15
16 app-editors/efte/efte-1.1-r1.ebuild | 14 +++++++-------
17 1 file changed, 7 insertions(+), 7 deletions(-)
18
19 diff --git a/app-editors/efte/efte-1.1-r1.ebuild b/app-editors/efte/efte-1.1-r1.ebuild
20 index 9e1f72bdfde..b62580bce0a 100644
21 --- a/app-editors/efte/efte-1.1-r1.ebuild
22 +++ b/app-editors/efte/efte-1.1-r1.ebuild
23 @@ -1,9 +1,9 @@
24 -# Copyright 1999-2017 Gentoo Foundation
25 +# Copyright 1999-2018 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=5
29 +EAPI=6
30
31 -inherit eutils cmake-utils fdo-mime
32 +inherit cmake-utils xdg-utils
33
34 DESCRIPTION="A fast text editor supporting folding, syntax highlighting, etc."
35 HOMEPAGE="https://github.com/lanurmi/efte"
36 @@ -32,8 +32,8 @@ PATCHES=(
37
38 src_configure() {
39 local mycmakeargs=(
40 - $(cmake-utils_use_build gpm)
41 - $(cmake-utils_use_build X)
42 + -DUSE_GPM=$(usex gpm)
43 + -DBUILD_X=$(usex X )
44 )
45 cmake-utils_src_configure
46 }
47 @@ -45,9 +45,9 @@ src_install() {
48 }
49
50 pkg_postinst() {
51 - fdo-mime_desktop_database_update
52 + xdg_desktop_database_update
53 }
54
55 pkg_postrm() {
56 - fdo-mime_desktop_database_update
57 + xdg_desktop_database_update
58 }