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/setup/
Date: Sat, 01 Oct 2022 14:24:26
Message-Id: 1664633623.557142304c474c082f121962b2166f1755953813.xgqt@gentoo
1 commit: 557142304c474c082f121962b2166f1755953813
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 14:13:43 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 14:13:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55714230
7
8 app-emacs/setup: bump to 1.3.2
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/setup/Manifest | 1 +
13 app-emacs/setup/setup-1.3.2.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/app-emacs/setup/Manifest b/app-emacs/setup/Manifest
17 index b4db34aaf6b7..239acbc44b35 100644
18 --- a/app-emacs/setup/Manifest
19 +++ b/app-emacs/setup/Manifest
20 @@ -1,2 +1,3 @@
21 DIST setup-1.2.0.tar.gz 19709 BLAKE2B 704340f9ab8a3e10fdeafed88365fb3151fe8c9600960defcce0021850a1846ffc5e7a3c02a4567371c18b4bdf5b81c80544fe82c22a150ca4d4505818ba8148 SHA512 705e188876316eb76938229395676a9068e735074d63865dd9a2a21d83face2768f958f76cf9c88b6cb3d4668e271ee043d7aa81a40d3b384fb1bc75bb1f0af5
22 DIST setup-1.3.0.tar.gz 20112 BLAKE2B 7e8b29c6a2be68572ede8845bc1cdfc8e00acdaf1db972124ab18f2ec6ab216a481dc4c40ff256e7bdefd2558cafb686af8a51728e0b1c093ca369fa4a093c09 SHA512 cd088dba4f258a3440ec78e5742b6a2f5d1dba46e3382ea3b40967b640c80fd292b7edc1421f07561c270c4404d95c0fd55bd166265c79c131e0037f2181cb66
23 +DIST setup-1.3.2.tar.gz 19985 BLAKE2B d2166d22d13bfd4e01fef9ca25372dab30af237394abc3d55e78c50d5fa26aa09fa82b4f0940b73f27012e0fce1e3b76c802dc271463c89f9ab5e664023c0722 SHA512 14eebda45b713f657be391d71f51d86642a1d36155c1bc914fca170fe5718b136da726685559531cc8e738cc9cbc823f02eb231339b75eeb19e4e02085455120
24
25 diff --git a/app-emacs/setup/setup-1.3.2.ebuild b/app-emacs/setup/setup-1.3.2.ebuild
26 new file mode 100644
27 index 000000000000..8d1afc8e3210
28 --- /dev/null
29 +++ b/app-emacs/setup/setup-1.3.2.ebuild
30 @@ -0,0 +1,28 @@
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=26.1
37 +
38 +# The upstream does not create git tags for releases.
39 +MY_HASH=28926bd11eef6118f4e169d10c1c36b8c4e545ae
40 +
41 +inherit elisp
42 +
43 +DESCRIPTION="Macro to simplify repetitive configuration patterns"
44 +HOMEPAGE="https://git.sr.ht/~pkal/setup"
45 +SRC_URI="https://git.sr.ht/~pkal/${PN}/archive/${MY_HASH}.tar.gz -> ${P}.tar.gz"
46 +S="${WORKDIR}"/${PN}-${MY_HASH}
47 +
48 +LICENSE="GPL-3+"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +DOCS=( README.md )
53 +SITEFILE="50${PN}-gentoo.el"
54 +
55 +src_compile() {
56 + elisp_src_compile
57 + elisp-make-autoload-file
58 +}