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/icicles/files/, app-emacs/icicles/
Date: Tue, 05 Apr 2022 10:04:32
Message-Id: 1649153061.4830511ba1345983b53e000db04ab14cfbe7f541.ulm@gentoo
1 commit: 4830511ba1345983b53e000db04ab14cfbe7f541
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 5 10:03:23 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 5 10:04:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4830511b
7
8 app-emacs/icicles: Fix byte-compilation with Emacs 28
9
10 Closes: https://bugs.gentoo.org/836773
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-emacs/icicles/Manifest | 1 +
14 .../files/icicles-2018.10.15.23738-emacs-28.patch | 13 +++++++++++++
15 app-emacs/icicles/icicles-2018.10.15.23738.ebuild | 21 +++++++++++++++++++++
16 3 files changed, 35 insertions(+)
17
18 diff --git a/app-emacs/icicles/Manifest b/app-emacs/icicles/Manifest
19 index f1ae1b761b6e..625ea12d5fb3 100644
20 --- a/app-emacs/icicles/Manifest
21 +++ b/app-emacs/icicles/Manifest
22 @@ -1 +1,2 @@
23 DIST icicles-2018.02.13.23733.tar.xz 697112 BLAKE2B 63b60a74cfcc5b855e9ffbf7a91d0cb561c46ef1a93fb1baca00a0a5462326da983c734bef1943c0f17583aeb065d8fd5d88769eec2dc35f36a59ea4ff86609b SHA512 6c5d2270c735fafa8e2180134fbe7175e1c99cb6ae904a70dbdf1144293bd1ffa84d9e81b1c1b03296348a6b31ebab62ea7981a4b7f5be8bb5238bd143ccb3c0
24 +DIST icicles-2018.10.15.23738.tar.gz 1007149 BLAKE2B 34cdae2e247fafab9bb6d5472ed15cf108fd0b008a8f19de1742dfe590ff5b1483c5f28eb8e75b92a32c223dfec67d4601ed3392cda5162d1ea84c9d1f940321 SHA512 ede403a53d44451e4f62f54f7da27c6a5632827c4f1985c153f7d03a1b8ea920238dc9ba78896fc416115f53187a6b6d9a0171f8a91fbc7605462eba48e3f5cc
25
26 diff --git a/app-emacs/icicles/files/icicles-2018.10.15.23738-emacs-28.patch b/app-emacs/icicles/files/icicles-2018.10.15.23738-emacs-28.patch
27 new file mode 100644
28 index 000000000000..32d1a583c018
29 --- /dev/null
30 +++ b/app-emacs/icicles/files/icicles-2018.10.15.23738-emacs-28.patch
31 @@ -0,0 +1,13 @@
32 +https://bugs.gentoo.org/836773
33 +
34 +--- icicles/icicles-fn.el
35 ++++ icicles/icicles-fn.el
36 +@@ -4264,7 +4264,7 @@
37 +
38 +
39 + (defalias 'icicle-scatter 'icicle-scatter-re)
40 +-(make-obsolete 'icicle-scatter 'icicle-scatter-re) ; 2018-01-14
41 ++(make-obsolete 'icicle-scatter 'icicle-scatter-re "2018-01-14")
42 +
43 + (defun icicle-scatter-re (string)
44 + "Returns a regexp that matches a scattered version of STRING.
45
46 diff --git a/app-emacs/icicles/icicles-2018.10.15.23738.ebuild b/app-emacs/icicles/icicles-2018.10.15.23738.ebuild
47 new file mode 100644
48 index 000000000000..22221be4fa00
49 --- /dev/null
50 +++ b/app-emacs/icicles/icicles-2018.10.15.23738.ebuild
51 @@ -0,0 +1,21 @@
52 +# Copyright 1999-2022 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=8
56 +
57 +inherit elisp
58 +
59 +COMMIT="9e9c37d2a54771c635d00d1fe171cef5eab4d95d"
60 +DESCRIPTION="Minibuffer input completion and cycling"
61 +HOMEPAGE="https://www.emacswiki.org/emacs/Icicles"
62 +# Snapshot of https://github.com/emacsmirror/icicles.git
63 +# PV is <Version>.<Update #> from header of icicles.el
64 +SRC_URI="https://github.com/emacsmirror/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
65 +S="${WORKDIR}/${PN}-${COMMIT}"
66 +
67 +LICENSE="GPL-3+"
68 +SLOT="0"
69 +KEYWORDS="~amd64 ~x86"
70 +
71 +PATCHES=( "${FILESDIR}"/${P}-emacs-28.patch )
72 +SITEFILE="50${PN}-gentoo.el"