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-vim/nerdcommenter | |
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-vim/nerdcommenter')
-rw-r--r-- | app-vim/nerdcommenter/Manifest | 1 | ||||
-rw-r--r-- | app-vim/nerdcommenter/metadata.xml | 6 | ||||
-rw-r--r-- | app-vim/nerdcommenter/nerdcommenter-2.3.0.ebuild | 22 |
3 files changed, 29 insertions, 0 deletions
diff --git a/app-vim/nerdcommenter/Manifest b/app-vim/nerdcommenter/Manifest new file mode 100644 index 000000000000..9d7657074bb4 --- /dev/null +++ b/app-vim/nerdcommenter/Manifest @@ -0,0 +1 @@ +DIST nerdcommenter-2.3.0.zip 31823 SHA256 c2a153a8538e340576208882b034e6c2de5c689d3bef1a67f7234917d0ded4dd SHA512 2160c624d37319e63640ff0fc98f302afb2eea45409b67ed895f884c43659ba0f81c057c2414287b9a276133ede5418ccf295434d9aebf1106978ab07edb6dbc WHIRLPOOL e2057def601fecbd73170f2171b599b08dda4b168611c67d4f875b7cc6dc8c6f7f43755732398f20cf1b373e78bc4659da466a186924a7ee173399d1258b9552 diff --git a/app-vim/nerdcommenter/metadata.xml b/app-vim/nerdcommenter/metadata.xml new file mode 100644 index 000000000000..c7b901f7dcaf --- /dev/null +++ b/app-vim/nerdcommenter/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>vim</herd> +</pkgmetadata> + diff --git a/app-vim/nerdcommenter/nerdcommenter-2.3.0.ebuild b/app-vim/nerdcommenter/nerdcommenter-2.3.0.ebuild new file mode 100644 index 000000000000..6e8e0f268f26 --- /dev/null +++ b/app-vim/nerdcommenter/nerdcommenter-2.3.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=2 + +VIM_PLUGIN_VIM_VERSION=7.0 +inherit vim-plugin + +DESCRIPTION="vim plugin: easy commenting of code for many filetypes" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1218" +SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=14455 -> ${P}.zip" +LICENSE="public-domain" +KEYWORDS="amd64 x86 ~x86-linux ~x86-macos ~sparc64-solaris" +IUSE="" + +VIM_PLUGIN_HELPFILES="NERD_commenter" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S="${WORKDIR}" |