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 D8B7413832E for ; Fri, 12 Aug 2016 23:25:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C755D21C060; Fri, 12 Aug 2016 23:25:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F62821C060 for ; Fri, 12 Aug 2016 23:25:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF0AF340871 for ; Fri, 12 Aug 2016 23:25:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B44ED8F4 for ; Fri, 12 Aug 2016 23:25:41 +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: <1471044217.6e42812f02ff339e9ec3a56547fecf97a4c41a1d.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/xquery-syntax/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/xquery-syntax/xquery-syntax-0.1-r2.ebuild X-VCS-Directories: app-vim/xquery-syntax/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 6e42812f02ff339e9ec3a56547fecf97a4c41a1d X-VCS-Branch: master Date: Fri, 12 Aug 2016 23:25:41 +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: 7a97b51b-2cca-4655-8e6d-13fc50633b70 X-Archives-Hash: 848ae4da558e6e7d0679fe18d25d7492 commit: 6e42812f02ff339e9ec3a56547fecf97a4c41a1d Author: Patrice Clement gentoo org> AuthorDate: Fri Aug 12 23:23:37 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Aug 12 23:23:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e42812f app-vim/xquery-syntax: EAPI 6 bump. Package-Manager: portage-2.2.28 app-vim/xquery-syntax/xquery-syntax-0.1-r2.ebuild | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app-vim/xquery-syntax/xquery-syntax-0.1-r2.ebuild b/app-vim/xquery-syntax/xquery-syntax-0.1-r2.ebuild new file mode 100644 index 0000000..4da6869 --- /dev/null +++ b/app-vim/xquery-syntax/xquery-syntax-0.1-r2.ebuild @@ -0,0 +1,24 @@ +# 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: XQuery syntax highlighting" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=803" + +LICENSE="vim.org" +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +VIM_PLUGIN_HELPTEXT=\ +"This plugin provides syntax highlighting for XQuery files." + +src_prepare() { + default + # use hi def link. Bug #101788, bug #101804. + sed -i -e 's,^hi\(ghlight\)\? link,hi def link,' syntax/xquery.vim \ + || die "sed failed" +}