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/yasnippet-snippets/
Date: Fri, 08 Oct 2021 08:42:50
Message-Id: 1633682561.016bcebec76fa373428c3c50d7477da941e5dccc.ulm@gentoo
1 commit: 016bcebec76fa373428c3c50d7477da941e5dccc
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 8 08:42:16 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 8 08:42:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016bcebe
7
8 app-emacs/yasnippet-snippets: Version bump to 1.0
9
10 Closes: https://bugs.gentoo.org/816936
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 app-emacs/yasnippet-snippets/Manifest | 1 +
15 .../yasnippet-snippets-1.0.ebuild | 27 ++++++++++++++++++++++
16 2 files changed, 28 insertions(+)
17
18 diff --git a/app-emacs/yasnippet-snippets/Manifest b/app-emacs/yasnippet-snippets/Manifest
19 index 50e0de93d6f..ec79306a543 100644
20 --- a/app-emacs/yasnippet-snippets/Manifest
21 +++ b/app-emacs/yasnippet-snippets/Manifest
22 @@ -1 +1,2 @@
23 DIST yasnippet-snippets-0.3.tar.gz 97229 BLAKE2B 26fe83c35be1b20b6a1e414144149cf1feaf4463833634bbd0a3db6f56b1da46d8e379c3dd19217cfd36f12cb9dc796eac4efef5c2ba472ce79f8c8b8d816969 SHA512 4aaac9d7c880642a1e802abb98bd6d6c94557fe0e609db5ce5b4ce2af921235d3e6bb2488c052adbe2940d41e85297520081ae0847b52642bc97610e6614727f
24 +DIST yasnippet-snippets-1.0.tar.gz 178027 BLAKE2B 0b44c94c3ad3f2a1208aefba110945aeae74e7278c93078c59677985efc89767b670c99b4b8303b56ea0b748375762ada1e45653e02922b248273af5818514d4 SHA512 2df010f24e51d0156bcb3d488cd6a63a47d2d92e4c5f3cd081e377dc91426d630bde41db6f79d1b5ac1e932e4d0ab11f9be945e94fb35d50b1789adab19bd15b
25
26 diff --git a/app-emacs/yasnippet-snippets/yasnippet-snippets-1.0.ebuild b/app-emacs/yasnippet-snippets/yasnippet-snippets-1.0.ebuild
27 new file mode 100644
28 index 00000000000..3b0d29b244e
29 --- /dev/null
30 +++ b/app-emacs/yasnippet-snippets/yasnippet-snippets-1.0.ebuild
31 @@ -0,0 +1,27 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit elisp
38 +
39 +DESCRIPTION="A collection of yasnippet snippets for many languages"
40 +HOMEPAGE="https://github.com/AndreaCrotti/yasnippet-snippets"
41 +SRC_URI="https://github.com/AndreaCrotti/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +RDEPEND="app-emacs/yasnippet"
48 +
49 +SITEFILE="50${PN}-gentoo.el"
50 +
51 +src_compile() { :; }
52 +
53 +src_install() {
54 + elisp-site-file-install "${FILESDIR}/${SITEFILE}"
55 + insinto "${SITEETC}/${PN}"
56 + doins -r snippets/.
57 + dodoc README.md
58 +}