diff options
author | Victor Gaydov <victor@enise.org> | 2016-10-27 00:02:36 +0300 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2016-11-27 12:26:46 +0100 |
commit | 365550553f9b76ed2543e091a54c86d3af49c09c (patch) | |
tree | 972d5155bdd09980d24d20f79401c561cef98600 /app-emacs | |
parent | media-gfx/graphicsmagick: clean vulnerable wrt sec bug #574404 (diff) | |
download | gentoo-365550553f9b76ed2543e091a54c86d3af49c09c.tar.gz gentoo-365550553f9b76ed2543e091a54c86d3af49c09c.tar.bz2 gentoo-365550553f9b76ed2543e091a54c86d3af49c09c.zip |
app-emacs/expand-region: new package
expand-region.el is emacs extension to increase selected region by
semantic units.
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=598158
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/expand-region/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/expand-region/expand-region-0.11.0.ebuild | 24 | ||||
-rw-r--r-- | app-emacs/expand-region/files/50expand-region-gentoo.el | 2 | ||||
-rw-r--r-- | app-emacs/expand-region/metadata.xml | 16 |
4 files changed, 43 insertions, 0 deletions
diff --git a/app-emacs/expand-region/Manifest b/app-emacs/expand-region/Manifest new file mode 100644 index 000000000000..84a929cf7d4d --- /dev/null +++ b/app-emacs/expand-region/Manifest @@ -0,0 +1 @@ +DIST expand-region-0.11.0.tar.gz 31562 SHA256 e085621267b250486856422d13e7ddc3b11601e2328fc239e709ea10880bbe21 SHA512 3469ab0420d85fbaaa1ae9f3d0101c28b6e1786d761ecd186d744537795226917314b8b748d3499b02ea269a46a62350c37fecb34dd4183a73eafc67ce1344a8 WHIRLPOOL 762ceeefaae4728776d493daac6453d00c6ff232dab4130fcb5965a71b4da6bcc046ed3894912b38716a7047f83286335e4b01616dfc8c8e30edd1360869c79d diff --git a/app-emacs/expand-region/expand-region-0.11.0.ebuild b/app-emacs/expand-region/expand-region-0.11.0.ebuild new file mode 100644 index 000000000000..ae6377a960a0 --- /dev/null +++ b/app-emacs/expand-region/expand-region-0.11.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit elisp + +DESCRIPTION="Emacs extension to increase selected region by semantic units" +HOMEPAGE="https://github.com/magnars/expand-region.el" +SRC_URI="https://github.com/magnars/expand-region.el/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +S="${WORKDIR}/expand-region.el-${PV}" +SITEFILE="50${PN}-gentoo.el" +DOCS="README.md" + +src_compile() { + elisp-compile *.el + elisp-make-autoload-file +} diff --git a/app-emacs/expand-region/files/50expand-region-gentoo.el b/app-emacs/expand-region/files/50expand-region-gentoo.el new file mode 100644 index 000000000000..bd5b40540780 --- /dev/null +++ b/app-emacs/expand-region/files/50expand-region-gentoo.el @@ -0,0 +1,2 @@ +(add-to-list 'load-path "@SITELISP@") +(load "expand-region-autoloads" nil t) diff --git a/app-emacs/expand-region/metadata.xml b/app-emacs/expand-region/metadata.xml new file mode 100644 index 000000000000..57bb313b577e --- /dev/null +++ b/app-emacs/expand-region/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>victor@enise.org</email> + <name>Victor Gaydov</name> + </maintainer> + <maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> +</pkgmetadata> |