Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/corfu/
Date: Wed, 31 Aug 2022 15:09:58
Message-Id: 1661958591.2fbbaf65482f6dc9bf4dfe3a3d0133551c72f392.xgqt@gentoo
1 commit: 2fbbaf65482f6dc9bf4dfe3a3d0133551c72f392
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 15:00:51 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 15:09:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fbbaf65
7
8 app-emacs/corfu: bump to 0.27
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/corfu/Manifest | 1 +
13 app-emacs/corfu/corfu-0.27.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/app-emacs/corfu/Manifest b/app-emacs/corfu/Manifest
17 index 165a6da827fb..d0029d33d82f 100644
18 --- a/app-emacs/corfu/Manifest
19 +++ b/app-emacs/corfu/Manifest
20 @@ -1,2 +1,3 @@
21 DIST corfu-0.25.tar.gz 38366 BLAKE2B 297c8c556d32ee9f0a42265bbcd9b7cdd19881b8d85a9c92b6be84cb52e5558996cb16da596d13349fd1c9c72c7b6247e003ab48fcc41fd4acbe2d151b8e2e90 SHA512 602a9072cfa6a75672e1879e8da95b59355cc720482c8946311446c5722d13d0db6171eab8d899b689a689fe306d11f9b063e6bdc07dc710d9ee8f6f15b5aeee
22 DIST corfu-0.26.tar.gz 38840 BLAKE2B 47dfcd2430cfd37c912cc2101760692bb1e4ef788bafec64760c81b02412119156b99d57a129e31d7109a62a073dfeb836453076f8bc59ece835015b4ec19ac0 SHA512 3996528e5ee9992462bc2cb241c36b7a05aeca460de0a04db542e6cd9eb7352067283ea4d8c668053003a7afc2dacc97e3b634842b847c05450fd8472ae8249a
23 +DIST corfu-0.27.tar.gz 39034 BLAKE2B efc1d2477bfaa891d32516d69aeb5179bfcb9332b579609319f832a7ff03416ef5836cf5124bf9ad9c8f75ad4a6c4183a17257037f6271801515636dc5bfd132 SHA512 fd143b4fe63080e6280be98b93ef84f4b12c5c1211cb1a9294ea4fddde61466f29f68e9aa24dce74c5316d7938c91fdd0b28775c688b451386daf041ac745b82
24
25 diff --git a/app-emacs/corfu/corfu-0.27.ebuild b/app-emacs/corfu/corfu-0.27.ebuild
26 new file mode 100644
27 index 000000000000..3374986f6f57
28 --- /dev/null
29 +++ b/app-emacs/corfu/corfu-0.27.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +NEED_EMACS=27.1
37 +
38 +inherit elisp
39 +
40 +DESCRIPTION="Completion Overlay Region FUnction"
41 +HOMEPAGE="https://github.com/minad/corfu"
42 +SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-3+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +DOCS=( README.org )
49 +SITEFILE="50${PN}-gentoo.el"
50 +
51 +src_prepare() {
52 + default
53 + mv extensions/*.el . || die
54 +}
55 +
56 +src_compile() {
57 + elisp_src_compile
58 + elisp-make-autoload-file
59 +}