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 6B7DA1382C5 for ; Sun, 25 Mar 2018 00:24:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F3C2E07D9; Sun, 25 Mar 2018 00:24:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 715CEE07D9 for ; Sun, 25 Mar 2018 00:24:10 +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 4DE85335C4A for ; Sun, 25 Mar 2018 00:24:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07DA025A for ; Sun, 25 Mar 2018 00:24:07 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1521937344.728756951da6efffe9407b15dd2fc6adec89999e.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/nerdcommenter/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/nerdcommenter/Manifest app-vim/nerdcommenter/nerdcommenter-2.5.1.ebuild X-VCS-Directories: app-vim/nerdcommenter/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 728756951da6efffe9407b15dd2fc6adec89999e X-VCS-Branch: master Date: Sun, 25 Mar 2018 00:24:07 +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: 06c6ac66-c59a-4d07-afe2-f0594764a9ed X-Archives-Hash: 50a1330f691401b29e47793e4d90519c commit: 728756951da6efffe9407b15dd2fc6adec89999e Author: Tim Harder gentoo org> AuthorDate: Sun Mar 25 00:22:24 2018 +0000 Commit: Tim Harder gentoo org> CommitDate: Sun Mar 25 00:22:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72875695 app-vim/nerdcommenter: version bump to 2.5.1 app-vim/nerdcommenter/Manifest | 1 + app-vim/nerdcommenter/nerdcommenter-2.5.1.ebuild | 25 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/app-vim/nerdcommenter/Manifest b/app-vim/nerdcommenter/Manifest index 526cb7dc15e..6fe9d50556c 100644 --- a/app-vim/nerdcommenter/Manifest +++ b/app-vim/nerdcommenter/Manifest @@ -1 +1,2 @@ DIST nerdcommenter-2.5.0.tar.gz 36834 BLAKE2B 517988392e0ac508f18819a088588d3ede50b634268109ec2c67907c663fb6713b55f45cd2562236c481dea86793ab5999a480f2be309e12cb43b5ccbb34d552 SHA512 8616f56d90dfe2fece0a82b888700c4c762c75b7d1cd30e32a3294d1fe7b65d506a13cfead534ae0f11a2384593d246a723e9a0042421691a5d6fb44969e7ead +DIST nerdcommenter-2.5.1.tar.gz 36889 BLAKE2B 997fa853ea3b6950de864afc1bd7777a71085154dee484ad07b03e8d0da101151f5df5c4ffc4404714c95c7632ac7678e18eb0ef72d238403c708f7faed8aff2 SHA512 84638a3b216f7bc1535030eed8d766c30d5d7de7f6339fdb9bde65561abfa7f1f660cfa81dc057ee2d146af6df26076880b057a7ff7868e9bc55ab53291e9445 diff --git a/app-vim/nerdcommenter/nerdcommenter-2.5.1.ebuild b/app-vim/nerdcommenter/nerdcommenter-2.5.1.ebuild new file mode 100644 index 00000000000..e698dd51a16 --- /dev/null +++ b/app-vim/nerdcommenter/nerdcommenter-2.5.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vim-plugin + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/scrooloose/nerdcommenter.git" + inherit git-r3 +else + SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~x86-linux ~x86-macos ~sparc64-solaris" +fi + +DESCRIPTION="vim plugin: easy commenting of code for many filetypes" +HOMEPAGE="https://github.com/scrooloose/nerdcommenter https://www.vim.org/scripts/script.php?script_id=1218" +LICENSE="WTFPL-2 " + +VIM_PLUGIN_HELPFILES="NERD_commenter.txt" + +src_prepare() { + default + rm README.md Rakefile || die +}