summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2012-04-23 20:27:24 +0000
committerUlrich Müller <ulm@gentoo.org>2012-04-23 20:27:24 +0000
commitb1ecf579ee2163d5c6e80a4d78d5b94e039d9b2b (patch)
treeacc2e6d825930b1417dfdc7a2cdd8e88e14e6ab3 /app-emacs
parentUse mirror://github. (diff)
downloadgentoo-2-b1ecf579ee2163d5c6e80a4d78d5b94e039d9b2b.tar.gz
gentoo-2-b1ecf579ee2163d5c6e80a4d78d5b94e039d9b2b.tar.bz2
gentoo-2-b1ecf579ee2163d5c6e80a4d78d5b94e039d9b2b.zip
Initial import, combined ebuild from emacs overlay and flameeyes-overlay.
(Portage version: 2.1.10.57/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/yaml-mode/ChangeLog11
-rw-r--r--app-emacs/yaml-mode/files/50yaml-mode-gentoo.el3
-rw-r--r--app-emacs/yaml-mode/metadata.xml8
-rw-r--r--app-emacs/yaml-mode/yaml-mode-0.0.8.ebuild19
4 files changed, 41 insertions, 0 deletions
diff --git a/app-emacs/yaml-mode/ChangeLog b/app-emacs/yaml-mode/ChangeLog
new file mode 100644
index 000000000000..982ec1158483
--- /dev/null
+++ b/app-emacs/yaml-mode/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for app-emacs/yaml-mode
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/yaml-mode/ChangeLog,v 1.1 2012/04/23 20:27:24 ulm Exp $
+
+*yaml-mode-0.0.8 (23 Apr 2012)
+
+ 23 Apr 2012; Ulrich Müller <ulm@gentoo.org> +files/50yaml-mode-gentoo.el,
+ +yaml-mode-0.0.8.ebuild, +metadata.xml:
+ Initial import, combined ebuild from emacs overlay and flameeyes-overlay.
+ Originally contributed by Diego E. Pettenò <flameeyes@gentoo.org>.
+
diff --git a/app-emacs/yaml-mode/files/50yaml-mode-gentoo.el b/app-emacs/yaml-mode/files/50yaml-mode-gentoo.el
new file mode 100644
index 000000000000..d535ff479b81
--- /dev/null
+++ b/app-emacs/yaml-mode/files/50yaml-mode-gentoo.el
@@ -0,0 +1,3 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'yaml-mode "yaml-mode" "Simple mode to edit YAML." t)
+(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
diff --git a/app-emacs/yaml-mode/metadata.xml b/app-emacs/yaml-mode/metadata.xml
new file mode 100644
index 000000000000..d0e321d9a75d
--- /dev/null
+++ b/app-emacs/yaml-mode/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>emacs</herd>
+<maintainer>
+ <email>flameeyes@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/app-emacs/yaml-mode/yaml-mode-0.0.8.ebuild b/app-emacs/yaml-mode/yaml-mode-0.0.8.ebuild
new file mode 100644
index 000000000000..ceb98b3cef9d
--- /dev/null
+++ b/app-emacs/yaml-mode/yaml-mode-0.0.8.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/yaml-mode/yaml-mode-0.0.8.ebuild,v 1.1 2012/04/23 20:27:24 ulm Exp $
+
+EAPI=4
+
+inherit elisp
+
+DESCRIPTION="A major mode for GNU emacs for editing YAML files."
+HOMEPAGE="https://github.com/yoshiki/yaml-mode"
+SRC_URI="mirror://github/yoshiki/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DOCS="README Changes"
+SITEFILE="50${PN}-gentoo.el"