Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/flycheck/, app-emacs/flycheck/files/
Date: Sat, 18 Sep 2021 03:01:25
Message-Id: 1631933599.4a3d495522c3822047f1187d8b0a15e4b3183a54.sam@gentoo
1 commit: 4a3d495522c3822047f1187d8b0a15e4b3183a54
2 Author: John Turner <jturner.usa+gentoo <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 17 04:31:36 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 18 02:53:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a3d4955
7
8 app-emacs/flycheck: created ebuild
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: John Turner <jturner.usa+gentoo <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/22315
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 app-emacs/flycheck/Manifest | 1 +
16 app-emacs/flycheck/files/50flycheck-gentoo.el | 4 ++++
17 app-emacs/flycheck/flycheck-32_p20210825.ebuild | 26 +++++++++++++++++++++++++
18 app-emacs/flycheck/metadata.xml | 20 +++++++++++++++++++
19 4 files changed, 51 insertions(+)
20
21 diff --git a/app-emacs/flycheck/Manifest b/app-emacs/flycheck/Manifest
22 new file mode 100644
23 index 00000000000..5195b9be5be
24 --- /dev/null
25 +++ b/app-emacs/flycheck/Manifest
26 @@ -0,0 +1 @@
27 +DIST flycheck-32_p20210825.tar.gz 1042020 BLAKE2B 1663340de24980b3a1e58929e327841b743495dbd5d5c8306f007d0dfa989707015ceadaf6e5cac673eddb45adf9ec05dc35d8cb35af322c9cde6644194dd75d SHA512 472e25956d804e7f7ba8ebda2e3a7527eaaf3aee47fa5bd43a46ae651f94d857657cf4594f5a1ed0c169ec0ac610139956d182818ffeedf2c4132a5583ca870d
28
29 diff --git a/app-emacs/flycheck/files/50flycheck-gentoo.el b/app-emacs/flycheck/files/50flycheck-gentoo.el
30 new file mode 100644
31 index 00000000000..5f6c703df90
32 --- /dev/null
33 +++ b/app-emacs/flycheck/files/50flycheck-gentoo.el
34 @@ -0,0 +1,4 @@
35 +;;; Flycheck site-lisp configuration
36 +(add-to-list 'load-path "@SITELISP@")
37 +(autoload 'flycheck-mode "flycheck" nil t)
38 +(autoload 'global-flycheck-mode "flycheck" nil t)
39
40 diff --git a/app-emacs/flycheck/flycheck-32_p20210825.ebuild b/app-emacs/flycheck/flycheck-32_p20210825.ebuild
41 new file mode 100644
42 index 00000000000..2f6ead36988
43 --- /dev/null
44 +++ b/app-emacs/flycheck/flycheck-32_p20210825.ebuild
45 @@ -0,0 +1,26 @@
46 +# Copyright 2021 Gentoo Authors
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=7
50 +
51 +NEED_EMACS="24.3"
52 +
53 +inherit elisp
54 +
55 +DESCRIPTION="Modern on-the-fly syntax checking extension for GNU Emacs"
56 +HOMEPAGE="https://www.flycheck.org/"
57 +COMMIT="784f184cdd9f9cb4e3dbb997c09d93e954142842"
58 +SRC_URI="https://github.com/flycheck/flycheck/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
59 +S="${WORKDIR}/${PN}-${COMMIT}"
60 +
61 +LICENSE="GPL-3"
62 +SLOT="0"
63 +KEYWORDS="~amd64"
64 +RESTRICT="test" # test requires cask and ert-runner which are not packaged yet
65 +
66 +RDEPEND=">=app-emacs/dash-2.12.1
67 +>=app-emacs/pkg-info-0.4"
68 +
69 +SITEFILE="50${PN}-gentoo.el"
70 +DOCS=( README.md )
71 +ELISP_REMOVE="flycheck-buttercup.el flycheck-ert.el"
72
73 diff --git a/app-emacs/flycheck/metadata.xml b/app-emacs/flycheck/metadata.xml
74 new file mode 100644
75 index 00000000000..e96ebcfc18f
76 --- /dev/null
77 +++ b/app-emacs/flycheck/metadata.xml
78 @@ -0,0 +1,20 @@
79 +<?xml version="1.0" encoding="UTF-8"?>
80 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
81 +<pkgmetadata>
82 + <maintainer type="person" proxied="yes">
83 + <email>jturner.usa+gentoo@×××××.com</email>
84 + <name>John Turner</name>
85 + </maintainer>
86 + <maintainer type="project" proxied="proxy">
87 + <email>proxy-maint@g.o</email>
88 + <name>Proxy Maintainers</name>
89 + </maintainer>
90 + <upstream>
91 + <remote-id type="github">flycheck/flycheck</remote-id>
92 + <doc>https://github.com/flycheck/flycheck/blob/master/README.md</doc>
93 + </upstream>
94 + <longdescription>
95 + Flycheck is a modern on-the-fly syntax checking extension for GNU Emacs,
96 + intended as replacement for the older Flymake extension which is part of GNU Emacs.
97 + </longdescription>
98 +</pkgmetadata>