diff options
author | Ulrich Müller <ulm@gentoo.org> | 2015-02-24 17:29:04 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2015-02-24 17:29:04 +0000 |
commit | 33e6ff78df1ad74ab4f7dac1d52f7c9f3d69cc17 (patch) | |
tree | 5452c0601655f3b0a6f6899f4e356eba709b2fda /app-emacs | |
parent | Version bump for 5.5 series (diff) | |
download | gentoo-2-33e6ff78df1ad74ab4f7dac1d52f7c9f3d69cc17.tar.gz gentoo-2-33e6ff78df1ad74ab4f7dac1d52f7c9f3d69cc17.tar.bz2 gentoo-2-33e6ff78df1ad74ab4f7dac1d52f7c9f3d69cc17.zip |
Initial import. Ebuild contributed by me.
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/wgrep/ChangeLog | 10 | ||||
-rw-r--r-- | app-emacs/wgrep/files/50wgrep-gentoo.el | 1 | ||||
-rw-r--r-- | app-emacs/wgrep/metadata.xml | 9 | ||||
-rw-r--r-- | app-emacs/wgrep/wgrep-2.1.10.ebuild | 20 |
4 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/wgrep/ChangeLog b/app-emacs/wgrep/ChangeLog new file mode 100644 index 000000000000..faa6d19320b5 --- /dev/null +++ b/app-emacs/wgrep/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-emacs/wgrep +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wgrep/ChangeLog,v 1.1 2015/02/24 17:29:04 ulm Exp $ + +*wgrep-2.1.10 (24 Feb 2015) + + 24 Feb 2015; Ulrich Müller <ulm@gentoo.org> +wgrep-2.1.10.ebuild, + +files/50wgrep-gentoo.el, +metadata.xml: + Initial import. Ebuild contributed by me. + diff --git a/app-emacs/wgrep/files/50wgrep-gentoo.el b/app-emacs/wgrep/files/50wgrep-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/wgrep/files/50wgrep-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/wgrep/metadata.xml b/app-emacs/wgrep/metadata.xml new file mode 100644 index 000000000000..0475b57eb41d --- /dev/null +++ b/app-emacs/wgrep/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>emacs</herd> +<longdescription> + wgrep allows you to edit a grep buffer and apply those changes to + the file buffer. +</longdescription> +</pkgmetadata> diff --git a/app-emacs/wgrep/wgrep-2.1.10.ebuild b/app-emacs/wgrep/wgrep-2.1.10.ebuild new file mode 100644 index 000000000000..f9ba209dc054 --- /dev/null +++ b/app-emacs/wgrep/wgrep-2.1.10.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wgrep/wgrep-2.1.10.ebuild,v 1.1 2015/02/24 17:29:04 ulm Exp $ + +EAPI=5 + +inherit readme.gentoo elisp + +DESCRIPTION="Writable grep buffer and apply the changes to files" +HOMEPAGE="https://github.com/mhayashi1120/Emacs-wgrep" +SRC_URI="http://dev.gentoo.org/~ulm/distfiles/${P}.el.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +SITEFILE="50${PN}-gentoo.el" +DOC_CONTENTS="See commentary in ${SITELISP}/${PN}/wgrep.el for documentation. + \n\nTo activate wgrep, add the following line to your ~/.emacs file: + \n\t(require 'wgrep)" |