diff options
author | Matthew Smith <matthew@gentoo.org> | 2022-02-17 19:11:32 +0000 |
---|---|---|
committer | Matthew Smith <matthew@gentoo.org> | 2022-02-17 19:43:49 +0000 |
commit | f5012b6205366d8fd85f8b4ffed1e97afc148a68 (patch) | |
tree | 6cc612a1c8f75316b18e0dc06b0be5f771ef7171 | |
parent | app-emacs/marginalia: initial import at 0.12 (diff) | |
download | gentoo-f5012b6205366d8fd85f8b4ffed1e97afc148a68.tar.gz gentoo-f5012b6205366d8fd85f8b4ffed1e97afc148a68.tar.bz2 gentoo-f5012b6205366d8fd85f8b4ffed1e97afc148a68.zip |
app-emacs/orderless: initial import at 0.7
Signed-off-by: Matthew Smith <matthew@gentoo.org>
-rw-r--r-- | app-emacs/orderless/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/orderless/files/50orderless-gentoo.el | 2 | ||||
-rw-r--r-- | app-emacs/orderless/metadata.xml | 12 | ||||
-rw-r--r-- | app-emacs/orderless/orderless-0.7.ebuild | 25 |
4 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/orderless/Manifest b/app-emacs/orderless/Manifest new file mode 100644 index 000000000000..9a9acf3577bf --- /dev/null +++ b/app-emacs/orderless/Manifest @@ -0,0 +1 @@ +DIST orderless-0.7.tar.gz 160435 BLAKE2B bf4c3380b368458fb14c9e851532f3dc591ab3576da1ee26b7232e38eaa2e8e7dc7a18cb46bd005de4e30a47d0395e83fd1e36f38017b0758bca549d3ef853af SHA512 7f3a5781ed5e8787a9b47cae8c9397538434ab508c9638e80e19ef0f074cfd94b2522c3f2bb64f4e8a008f59dc44ea8ddd21b6690c4df1e997c89a921297ed10 diff --git a/app-emacs/orderless/files/50orderless-gentoo.el b/app-emacs/orderless/files/50orderless-gentoo.el new file mode 100644 index 000000000000..e8346a71c94e --- /dev/null +++ b/app-emacs/orderless/files/50orderless-gentoo.el @@ -0,0 +1,2 @@ +(add-to-list 'load-path "@SITELISP@") +(load "@SITELISP@/orderless-autoloads" nil t) diff --git a/app-emacs/orderless/metadata.xml b/app-emacs/orderless/metadata.xml new file mode 100644 index 000000000000..a8900095a717 --- /dev/null +++ b/app-emacs/orderless/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> +</maintainer> +<stabilize-allarches/> +<upstream> + <remote-id type="github">oantolin/orderless</remote-id> +</upstream> +</pkgmetadata> diff --git a/app-emacs/orderless/orderless-0.7.ebuild b/app-emacs/orderless/orderless-0.7.ebuild new file mode 100644 index 000000000000..264a4b3491f9 --- /dev/null +++ b/app-emacs/orderless/orderless-0.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +NEED_EMACS=26 + +inherit readme.gentoo-r1 elisp + +DESCRIPTION="Consulting complete-read" +HOMEPAGE="https://github.com/oantolin/orderless" +SRC_URI="https://github.com/oantolin/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +SITEFILE="50${PN}-gentoo.el" +DOC_CONTENTS="Enable orderless completion by placing + \"(setq completion-styles '(orderless))\" in your .emacs file." +ELISP_TEXTINFO="${PN}.texi" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} |