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/projectile/files/, app-emacs/projectile/
Date: Wed, 08 Dec 2021 02:58:48
Message-Id: 1638931566.2692881d69e8aa549d9b8e26bcd5467b3d3a1bb0.sam@gentoo
1 commit: 2692881d69e8aa549d9b8e26bcd5467b3d3a1bb0
2 Author: John Turner <jturner.usa+gentoo <AT> gmail <DOT> com>
3 AuthorDate: Tue Dec 7 00:32:13 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 8 02:46:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2692881d
7
8 app-emacs/projectile: initial import
9
10 Signed-off-by: John Turner <jturner.usa+gentoo <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/23206
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 app-emacs/projectile/Manifest | 1 +
15 app-emacs/projectile/files/50projectile-gentoo.el | 2 ++
16 app-emacs/projectile/metadata.xml | 16 +++++++++++++++
17 app-emacs/projectile/projectile-2.5.0.ebuild | 25 +++++++++++++++++++++++
18 4 files changed, 44 insertions(+)
19
20 diff --git a/app-emacs/projectile/Manifest b/app-emacs/projectile/Manifest
21 new file mode 100644
22 index 000000000000..1a31170312ff
23 --- /dev/null
24 +++ b/app-emacs/projectile/Manifest
25 @@ -0,0 +1 @@
26 +DIST projectile-2.5.0.tar.gz 1915860 BLAKE2B 4d215e2c1e44c7f85121fc36445112f3064129fe95866b4fbb2e14b11d31519057d9cc69bcdf44c82cd516768cc73a031da48a7c5352b9825816db54810cafcb SHA512 3faeb7db70e5e2198ad307c1d5d24a5fadd207765387e7094691e40071411506e6df690995f923bf246b7176173ca41882d369276862b631d7436747bfeae3a3
27
28 diff --git a/app-emacs/projectile/files/50projectile-gentoo.el b/app-emacs/projectile/files/50projectile-gentoo.el
29 new file mode 100644
30 index 000000000000..05c734668e49
31 --- /dev/null
32 +++ b/app-emacs/projectile/files/50projectile-gentoo.el
33 @@ -0,0 +1,2 @@
34 +(add-to-list 'load-path "@SITELISP@")
35 +(load "@SITELISP@/projectile-autoload.el")
36
37 diff --git a/app-emacs/projectile/metadata.xml b/app-emacs/projectile/metadata.xml
38 new file mode 100644
39 index 000000000000..c74f950ffe52
40 --- /dev/null
41 +++ b/app-emacs/projectile/metadata.xml
42 @@ -0,0 +1,16 @@
43 +<?xml version="1.0" encoding="UTF-8"?>
44 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
45 +<pkgmetadata>
46 + <maintainer type="person" proxied="yes">
47 + <email>jturner.usa+gentoo@×××××.com</email>
48 + <name>John Turner</name>
49 + </maintainer>
50 + <maintainer type="project" proxied="proxy">
51 + <email>proxy-maint@g.o</email>
52 + <name>Proxy Maintainers</name>
53 + </maintainer>
54 + <upstream>
55 + <remote-id type="github">bbatsov/projectile</remote-id>
56 + <doc>https://github.com/bbatsov/projectile/blob/master/README.md</doc>
57 + </upstream>
58 +</pkgmetadata>
59
60 diff --git a/app-emacs/projectile/projectile-2.5.0.ebuild b/app-emacs/projectile/projectile-2.5.0.ebuild
61 new file mode 100644
62 index 000000000000..6a9e19ad606d
63 --- /dev/null
64 +++ b/app-emacs/projectile/projectile-2.5.0.ebuild
65 @@ -0,0 +1,25 @@
66 +# Copyright 2021 Gentoo Authors
67 +# Distributed under the terms of the GNU General Public License v2
68 +
69 +EAPI=8
70 +
71 +NEED_EMACS="25.1"
72 +
73 +inherit elisp
74 +
75 +DESCRIPTION="A project interaction library for Emacs"
76 +HOMEPAGE="https://docs.projectile.mx"
77 +SRC_URI="https://github.com/bbatsov/projectile/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
78 +
79 +LICENSE="GPL-3+"
80 +SLOT="0"
81 +KEYWORDS="~amd64"
82 +
83 +SITEFILE="50projectile-gentoo.el"
84 +DOCS=( README.md )
85 +RESTRICT="test" # tests require buttercup which is not packaged
86 +
87 +src_install() {
88 + elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
89 + elisp_src_install
90 +}