Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/emacs-common-gentoo/
Date: Thu, 22 Aug 2019 12:50:24
Message-Id: 1566477858.66bd2c16de5af5d58a7413ba7cbb89e6b6c2f5aa.ulm@gentoo
1 commit: 66bd2c16de5af5d58a7413ba7cbb89e6b6c2f5aa
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 22 12:34:36 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 22 12:44:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66bd2c16
7
8 app-emacs/emacs-common-gentoo: Drop gnome2-utils.
9
10 gnome2_icon_savelist() and gnome2_icon_cache_update() are no longer
11 defined in EAPI 7. Use xdg_icon_cache_update as replacement.
12
13 Closes: https://bugs.gentoo.org/692520
14 Reported-by: Stephan Hartmann <stha09 <AT> googlemail.com>
15 Package-Manager: Portage-2.3.71, Repoman-2.3.17
16 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
17
18 ...mon-gentoo-1.6-r2.ebuild => emacs-common-gentoo-1.6-r3.ebuild} | 8 +++-----
19 1 file changed, 3 insertions(+), 5 deletions(-)
20
21 diff --git a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r2.ebuild b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r3.ebuild
22 similarity index 94%
23 rename from app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r2.ebuild
24 rename to app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r3.ebuild
25 index 6cd58fb8613..abe44b42f39 100644
26 --- a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r2.ebuild
27 +++ b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r3.ebuild
28 @@ -3,7 +3,7 @@
29
30 EAPI=7
31
32 -inherit elisp-common desktop xdg-utils gnome2-utils readme.gentoo-r1
33 +inherit elisp-common desktop xdg-utils readme.gentoo-r1
34
35 DESCRIPTION="Common files needed by all GNU Emacs versions"
36 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
37 @@ -48,8 +48,6 @@ src_install() {
38 doicon -s scalable emacs23.svg
39 newicon -s scalable emacs25.svg emacs.svg
40 popd
41 -
42 - gnome2_icon_savelist
43 fi
44
45 DOC_CONTENTS="All site initialisation for Gentoo-installed packages is
46 @@ -91,7 +89,7 @@ pkg_preinst() {
47 pkg_postinst() {
48 if use X; then
49 xdg_desktop_database_update
50 - gnome2_icon_cache_update
51 + xdg_icon_cache_update
52 fi
53 readme.gentoo_print_elog
54 }
55 @@ -99,6 +97,6 @@ pkg_postinst() {
56 pkg_postrm() {
57 if use X; then
58 xdg_desktop_database_update
59 - gnome2_icon_cache_update
60 + xdg_icon_cache_update
61 fi
62 }