diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-emacs/tuareg-mode | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-emacs/tuareg-mode')
-rw-r--r-- | app-emacs/tuareg-mode/Manifest | 2 | ||||
-rw-r--r-- | app-emacs/tuareg-mode/files/50tuareg-mode-gentoo.el | 6 | ||||
-rw-r--r-- | app-emacs/tuareg-mode/metadata.xml | 15 | ||||
-rw-r--r-- | app-emacs/tuareg-mode/tuareg-mode-2.0.7.ebuild | 20 | ||||
-rw-r--r-- | app-emacs/tuareg-mode/tuareg-mode-2.0.8.ebuild | 20 |
5 files changed, 63 insertions, 0 deletions
diff --git a/app-emacs/tuareg-mode/Manifest b/app-emacs/tuareg-mode/Manifest new file mode 100644 index 000000000000..7b3276928fbb --- /dev/null +++ b/app-emacs/tuareg-mode/Manifest @@ -0,0 +1,2 @@ +DIST tuareg-2.0.7.tar.gz 57999 SHA256 7ba8016cdd2195d37ccc1c0e300323f807b8bdc6d3ce9e622ae9a36355d3a9c9 SHA512 6cf290879dd9b7993a046dbebb9944a245fa82d1e7849b46f477b7217b46026ce5195e40e4d9b990e047a03680197827334e6d54d82610da6fc2e62386357d42 WHIRLPOOL 19b6c8fb7e7b6427499aa7aec0b22e0152ca35e93c042c2f3e4a760a76ba4c89c7951df25a128414a2f7df5aee7d76aea255c0b235065c9dcae4e62ed3c05c86 +DIST tuareg-2.0.8.tar.gz 57777 SHA256 13da95153d6d50ef697878c45d81302340f97a42ab14112c61b8c6b0e891512c SHA512 c9e268eb550fd36614e6632335b623a0916d64dd84a0259fd83c6f08e3138196d3871bc7664d6debe62732d4459130ef1e9271b24982138ff69d90442d031990 WHIRLPOOL 08e5f39111e8770ee1e4c8d0fe5104b20a3bcf89bb08a7acac0758d7933243cc55f6933e838c85aae2dadd1836301d3e9988fe38f7863fbe39410f879d17a67e diff --git a/app-emacs/tuareg-mode/files/50tuareg-mode-gentoo.el b/app-emacs/tuareg-mode/files/50tuareg-mode-gentoo.el new file mode 100644 index 000000000000..7e970412ac37 --- /dev/null +++ b/app-emacs/tuareg-mode/files/50tuareg-mode-gentoo.el @@ -0,0 +1,6 @@ +(add-to-list 'load-path "@SITELISP@") +(autoload 'tuareg-mode "tuareg" "Major mode for editing Caml code" t) +(autoload 'tuareg-run-ocaml "tuareg" "Run an OCaml toplevel process." t) +(autoload 'ocamldebug "ocamldebug" "Run the Caml debugger" t) +(defalias 'camldebug 'ocamldebug) +(add-to-list 'auto-mode-alist '("\\.ml[iylp]?\\'" . tuareg-mode)) diff --git a/app-emacs/tuareg-mode/metadata.xml b/app-emacs/tuareg-mode/metadata.xml new file mode 100644 index 000000000000..0899764535c6 --- /dev/null +++ b/app-emacs/tuareg-mode/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>ml</herd> +<herd>emacs</herd> +<longdescription> + Tuareg is an Object Caml/Camllight mode for Emacs. It handles automatic + indentation and syntax highlighting of code. It also supports an interactive + Caml top-level and debugger. Tuareg attempts to do a better job than the + Emacs mode distributed with the OCaml 3.x source. +</longdescription> +<upstream> + <remote-id type="github">ocaml/tuareg</remote-id> +</upstream> +</pkgmetadata> diff --git a/app-emacs/tuareg-mode/tuareg-mode-2.0.7.ebuild b/app-emacs/tuareg-mode/tuareg-mode-2.0.7.ebuild new file mode 100644 index 000000000000..1220f4d21a83 --- /dev/null +++ b/app-emacs/tuareg-mode/tuareg-mode-2.0.7.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit elisp + +DESCRIPTION="An Objective Caml/Camllight mode for Emacs" +HOMEPAGE="http://forge.ocamlcore.org/projects/tuareg/" +SRC_URI="http://forge.ocamlcore.org/frs/download.php/1304/tuareg-${PV}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 ppc x86 ~x86-fbsd" + +S="${WORKDIR}/tuareg-${PV}" +ELISP_REMOVE="tuareg-pkg.el tuareg-site-file.el" +SITEFILE="50${PN}-gentoo.el" +DOCS="README" diff --git a/app-emacs/tuareg-mode/tuareg-mode-2.0.8.ebuild b/app-emacs/tuareg-mode/tuareg-mode-2.0.8.ebuild new file mode 100644 index 000000000000..6b383a9c6adb --- /dev/null +++ b/app-emacs/tuareg-mode/tuareg-mode-2.0.8.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit elisp + +DESCRIPTION="An Objective Caml/Camllight mode for Emacs" +HOMEPAGE="http://forge.ocamlcore.org/projects/tuareg/" +SRC_URI="https://github.com/ocaml/tuareg/releases/download/${PV}/tuareg-${PV}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" + +S="${WORKDIR}/tuareg-${PV}" +ELISP_REMOVE="tuareg-pkg.el tuareg-site-file.el" +SITEFILE="50${PN}-gentoo.el" +DOCS="README.md" |