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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66A23158089 for ; Thu, 14 Sep 2023 21:23:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E0BD2BC099; Thu, 14 Sep 2023 21:23:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E3D02BC099 for ; Thu, 14 Sep 2023 21:23:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FF0A335D44 for ; Thu, 14 Sep 2023 21:23:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 218F211BC for ; Thu, 14 Sep 2023 21:23:47 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1694726572.a90b8d8edc0bdd86bbde8907cd1239ff6edfbcbf.conikost@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-r3.ebuild X-VCS-Directories: app-vim/xquery-syntax/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: a90b8d8edc0bdd86bbde8907cd1239ff6edfbcbf X-VCS-Branch: master Date: Thu, 14 Sep 2023 21:23:47 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4d8c2020-92a4-4486-b010-16da6d60abc3 X-Archives-Hash: d7690f2b4c95d3c89b6280f065cd28db commit: a90b8d8edc0bdd86bbde8907cd1239ff6edfbcbf Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Mar 19 17:33:23 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Sep 14 21:22:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a90b8d8e app-vim/xquery-syntax: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> app-vim/xquery-syntax/xquery-syntax-0.1-r3.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-vim/xquery-syntax/xquery-syntax-0.1-r3.ebuild b/app-vim/xquery-syntax/xquery-syntax-0.1-r3.ebuild new file mode 100644 index 000000000000..a1bc0756a5d8 --- /dev/null +++ b/app-vim/xquery-syntax/xquery-syntax-0.1-r3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit vim-plugin + +DESCRIPTION="vim plugin: XQuery syntax highlighting" +HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=803" + +LICENSE="vim.org" +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" + +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" +}