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 CF869158088 for ; Fri, 24 Dec 2021 10:57:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE5E82BC02B; Fri, 24 Dec 2021 10:57:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A84092BC02B for ; Fri, 24 Dec 2021 10:57:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 756AE3433A1 for ; Fri, 24 Dec 2021 10:57:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3911266 for ; Fri, 24 Dec 2021 10:57:40 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1640342342.c5a0b2b2dc03fa57739bded3209e32a2e2b687bf.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ldns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/ldns/ldns-1.8.1.ebuild X-VCS-Directories: net-libs/ldns/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: c5a0b2b2dc03fa57739bded3209e32a2e2b687bf X-VCS-Branch: master Date: Fri, 24 Dec 2021 10:57:40 +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: 6d516f79-859c-463f-9a3d-193c154931b7 X-Archives-Hash: feb3a8224235cedd9808348a176fcea4 commit: c5a0b2b2dc03fa57739bded3209e32a2e2b687bf Author: Mike Gilbert gentoo org> AuthorDate: Wed Dec 22 22:27:42 2021 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Fri Dec 24 10:39:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a0b2b2 net-libs/ldns: install vim syntax file unconditionally Signed-off-by: Mike Gilbert gentoo.org> Signed-off-by: Marc Schiffbauer gentoo.org> net-libs/ldns/ldns-1.8.1.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/net-libs/ldns/ldns-1.8.1.ebuild b/net-libs/ldns/ldns-1.8.1.ebuild index acfc99af4f3e..a81c575be2e7 100644 --- a/net-libs/ldns/ldns-1.8.1.ebuild +++ b/net-libs/ldns/ldns-1.8.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0/3" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="doc examples python static-libs vim-syntax" +IUSE="doc examples python static-libs" REQUIRED_USE=" python? ( ${PYTHON_REQUIRED_USE} ) @@ -82,8 +82,6 @@ multilib_src_install_all() { find "${D}" -name '*.la' -delete || die use python && python_optimize - if use vim-syntax ; then - insinto /usr/share/vim/vimfiles/ftdetect - doins libdns.vim - fi + insinto /usr/share/vim/vimfiles/ftdetect + doins libdns.vim }