forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-emacs/external-completion: new package; add 0.1
Signed-off-by: Maciej Barć <[email protected]>
- Loading branch information
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST external-completion-0.1.tar.xz 3292 BLAKE2B c89929bb474f8d6d8a9b82d25a52591b0b84a10c25b217607d7d5438f99979c8fb50ea6c1278a295292bca14bdce385bcf727d2d4715ea1f280b00b15c898232 SHA512 beda4c0a57807bd2fb6944a8abfafd5801c6b32a7270e76395ad720a76fc0b27f73fb5e5ff60659add43805a715372d60687d5be1cee7fe8425e2573f4b51e2f |
18 changes: 18 additions & 0 deletions
18
app-emacs/external-completion/external-completion-0.1.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
NEED_EMACS=26.1 | ||
|
||
inherit elisp | ||
|
||
DESCRIPTION="Let external tools control completion style in GNU Emacs" | ||
HOMEPAGE="https://elpa.gnu.org/packages/external-completion.html" | ||
SRC_URI="https://dev.gentoo.org/~xgqt/distfiles/repackaged/${P}.tar.xz" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
SITEFILE="50${PN}-gentoo.el" |
1 change: 1 addition & 0 deletions
1
app-emacs/external-completion/files/50external-completion-gentoo.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(add-to-list 'load-path "@SITELISP@") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
|
||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo GNU Emacs project</name> | ||
</maintainer> | ||
<upstream> | ||
<changelog>https://github.com/doublep/eldev/releases/</changelog> | ||
<bugs-to>https://github.com/doublep/eldev/issues/</bugs-to> | ||
<remote-id type="github">doublep/eldev</remote-id> | ||
</upstream> | ||
<longdescription> | ||
Eldev (Elisp Development Tool) is an Emacs-based build tool, targeted | ||
solely at Elisp projects. It is an alternative to Cask. Unlike Cask, Eldev | ||
itself is fully written in Elisp and its configuration files are also Elisp | ||
programs. If you are familiar with Java world, Cask can be seen as a | ||
parallel to Maven — it uses project description, while Eldev is sort of a | ||
parallel to Gradle — its configuration is a program on its own. | ||
</longdescription> | ||
</pkgmetadata> |