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 076B21382C5 for ; Fri, 11 May 2018 22:09:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B5B2E0A85; Fri, 11 May 2018 22:09:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 760ADE0A85 for ; Fri, 11 May 2018 22:09:13 +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 37B2F335C96 for ; Fri, 11 May 2018 22:09:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94942291 for ; Fri, 11 May 2018 22:09:09 +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: <1526076535.8eb4e7651f9e00821861bd349f1102479e2a4828.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/ebnf-syntax/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild X-VCS-Directories: app-vim/ebnf-syntax/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 8eb4e7651f9e00821861bd349f1102479e2a4828 X-VCS-Branch: master Date: Fri, 11 May 2018 22:09:09 +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: a20953a8-25f0-4890-8400-4afe99547c8b X-Archives-Hash: e83dd8a7696f11764c62175790f81412 commit: 8eb4e7651f9e00821861bd349f1102479e2a4828 Author: Patrice Clement gentoo org> AuthorDate: Fri May 11 22:06:25 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri May 11 22:08:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb4e765 app-vim/ebnf-syntax: clean up old ebuild. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild b/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild deleted file mode 100644 index 41bf445bdce..00000000000 --- a/app-vim/ebnf-syntax/ebnf-syntax-1.1-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit vim-plugin - -DESCRIPTION="vim plugin: EBNF (ISO/IEC 14997) file syntax highlighting" -HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=545" -LICENSE="vim" -KEYWORDS="alpha amd64 ia64 ~mips ppc ppc64 sparc x86" -IUSE="" - -VIM_PLUGIN_HELPTEXT=\ -"This plugin provides syntax highlighting for EBNF (ISO/IEC 14997) files." - -src_unpack() { - unpack ${A} - cd "${S}" - # don't use hi link, bug #101799. - sed -i -e 's,hi link,hi def link,' syntax/ebnf.vim || die "sed failed" -}