diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-06-11 09:18:10 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-06-11 09:20:07 +0000 |
commit | 0ae460bb3f10353a2f05c8536c962c2d53ff308b (patch) | |
tree | b1065dd91bdd6c35aa677de7ad37eb629711e924 | |
parent | sys-devel/make: Bump to version 4.2.1 (diff) | |
download | gentoo-0ae460bb3f10353a2f05c8536c962c2d53ff308b.tar.gz gentoo-0ae460bb3f10353a2f05c8536c962c2d53ff308b.tar.bz2 gentoo-0ae460bb3f10353a2f05c8536c962c2d53ff308b.zip |
app-vim/pydoc: Add pydoc vimscript to the tree.
Gentoo-Bug: https://bugs.gentoo.org/471730
Package-Manager: portage-2.2.28
-rw-r--r-- | app-vim/pydoc/Manifest | 1 | ||||
-rw-r--r-- | app-vim/pydoc/metadata.xml | 11 | ||||
-rw-r--r-- | app-vim/pydoc/pydoc-2.0.ebuild | 22 |
3 files changed, 34 insertions, 0 deletions
diff --git a/app-vim/pydoc/Manifest b/app-vim/pydoc/Manifest new file mode 100644 index 000000000000..ea22f92deb9d --- /dev/null +++ b/app-vim/pydoc/Manifest @@ -0,0 +1 @@ +DIST pydoc-2.0.tar.gz 2795 SHA256 3d55f46aeccc76b1f0c21fef7e859158929710f7255719eba996f532cb0ce0f9 SHA512 bea2e0dcb82090803b45e0cbccf5ad610a39f22d04c099e5e946e2b3707c9cbd69b85e3f1024a73760d1ff81a0199aeeb3bab20546307676953156eff7185214 WHIRLPOOL 7a0337a68ba7075c08c379e9bc138b1130cf4c7b56e529f11da98e5689a64a4d84afb155f1e8306a229725c1e61a619a94371f722c6ad7adae30dc9040aba7a3 diff --git a/app-vim/pydoc/metadata.xml b/app-vim/pydoc/metadata.xml new file mode 100644 index 000000000000..6c8987e6f46f --- /dev/null +++ b/app-vim/pydoc/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>vim@gentoo.org</email> + <name>Gentoo Vim Project</name> + </maintainer> + <maintainer type="person"> + <email>monsieurp@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/app-vim/pydoc/pydoc-2.0.ebuild b/app-vim/pydoc/pydoc-2.0.ebuild new file mode 100644 index 000000000000..3776a04193d0 --- /dev/null +++ b/app-vim/pydoc/pydoc-2.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit vim-plugin + +DESCRIPTION="vim plugin: integrates python documentation view and search tool" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=910 https://github.com/fs111/pydoc.vim" +SRC_URI="https://github.com/fs111/${PN}.vim/tarball/${PV} -> ${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="dev-lang/python:*" + +src_unpack() { + default + mv * "${P}" || die +} |