From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CA9AC1396D0 for ; Wed, 23 Aug 2017 07:28:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C95B0E0CB0; Wed, 23 Aug 2017 07:28:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1365E0CB0 for ; Wed, 23 Aug 2017 07:28:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DDC8341720 for ; Wed, 23 Aug 2017 07:28:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8570A7F83 for ; Wed, 23 Aug 2017 07:28:22 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1503473298.f52452f5b9bcd54dcfe0471d2306691acf87d0c4.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/phpdocs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/phpdocs/phpdocs-0.26-r1.ebuild X-VCS-Directories: app-vim/phpdocs/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f52452f5b9bcd54dcfe0471d2306691acf87d0c4 X-VCS-Branch: master Date: Wed, 23 Aug 2017 07:28:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7bbad67b-6f3e-4bf0-ab5f-94988f4058c1 X-Archives-Hash: 7ea04656d20fa08c09a90900aa585fea commit: f52452f5b9bcd54dcfe0471d2306691acf87d0c4 Author: Patrice Clement gentoo org> AuthorDate: Tue Aug 22 21:51:19 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Aug 23 07:28:18 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52452f5 app-vim/phpdocs: EAPI 6 bump. Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-vim/phpdocs/phpdocs-0.26-r1.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app-vim/phpdocs/phpdocs-0.26-r1.ebuild b/app-vim/phpdocs/phpdocs-0.26-r1.ebuild new file mode 100644 index 00000000000..7cc6c7dd755 --- /dev/null +++ b/app-vim/phpdocs/phpdocs-0.26-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +DESCRIPTION="vim plugin: PHPDoc Support in VIM" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=520" +LICENSE="vim" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +VIM_PLUGIN_HELPURI="http://www.vim.org/scripts/script.php?script_id=520" + +src_prepare() { + default + sed -i 's/\r$//' "${S}"/plugin/phpdoc.vim || die "sed failed" +}