From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1654291-garchives=archives.gentoo.org@lists.gentoo.org>
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 ED2F0158170
	for <garchives@archives.gentoo.org>; Thu, 18 Jul 2024 16:39:33 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 25A1CE2AE2;
	Thu, 18 Jul 2024 16:39:33 +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 08E76E2AE2
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Jul 2024 16:39:33 +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 1CF5A342FB3
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Jul 2024 16:39:32 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A913B1E38
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Jul 2024 16:39:30 +0000 (UTC)
From: "Lucio Sauer" <watermanpaint@posteo.net>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" <watermanpaint@posteo.net>
Message-ID: <1721313286.a08b91c39bd84c6b76c27d2de47e8db47bc257d5.watermanpaint@gentoo>
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-db/sqlcmd/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: dev-db/sqlcmd/sqlcmd-1.7.0.ebuild dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
X-VCS-Directories: dev-db/sqlcmd/
X-VCS-Committer: watermanpaint
X-VCS-Committer-Name: Lucio Sauer
X-VCS-Revision: a08b91c39bd84c6b76c27d2de47e8db47bc257d5
X-VCS-Branch: master
Date: Thu, 18 Jul 2024 16:39:30 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 7da3222e-aeb8-44fe-b1d1-75628a94feae
X-Archives-Hash: 307af143fdb3cecf260d65fa7d2fea89

commit:     a08b91c39bd84c6b76c27d2de47e8db47bc257d5
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Thu Jul 18 14:29:58 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Jul 18 14:34:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a08b91c3

dev-db/sqlcmd: make DOCS local to avoid variable pollution

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 dev-db/sqlcmd/sqlcmd-1.7.0.ebuild | 11 +++++------
 dev-db/sqlcmd/sqlcmd-1.8.0.ebuild | 11 ++++++-----
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild b/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild
index e4c60d445..ddc5c2180 100644
--- a/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild
+++ b/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -19,11 +19,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DOCS=(
-	"README.md"
-	"SECURITY.md"
-)
-
 src_compile() {
 	ego build -o "${PN}" -ldflags="-X main.version=${PV}" ./cmd/modern
 }
@@ -39,5 +34,9 @@ src_install() {
 	dofishcomp "completions/${PN}.fish"
 	dozshcomp "completions/_${PN}"
 
+	local DOCS=(
+		"README.md"
+		"SECURITY.md"
+	)
 	einstalldocs
 }

diff --git a/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild b/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
index d6c9071a8..af122c844 100644
--- a/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
+++ b/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -34,9 +34,10 @@ src_install() {
 	dofishcomp "completions/${PN}.fish"
 	dozshcomp "completions/_${PN}"
 
-DOCS=(
-	"README.md"
-	"SECURITY.md"
-)
+	local DOCS=(
+		"README.md"
+		"SECURITY.md"
+	)
+
 	einstalldocs
 }


From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1654252-garchives=archives.gentoo.org@lists.gentoo.org>
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 5C456158170
	for <garchives@archives.gentoo.org>; Thu, 18 Jul 2024 14:36:43 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A4495E2A99;
	Thu, 18 Jul 2024 14:36:42 +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 86F24E2A99
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Jul 2024 14:36:42 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 8394933BE3B
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Jul 2024 14:36:11 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B01551E34
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Jul 2024 14:36:09 +0000 (UTC)
From: "Lucio Sauer" <watermanpaint@posteo.net>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" <watermanpaint@posteo.net>
Message-ID: <1721313286.a08b91c39bd84c6b76c27d2de47e8db47bc257d5.watermanpaint@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-db/sqlcmd/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: dev-db/sqlcmd/sqlcmd-1.7.0.ebuild dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
X-VCS-Directories: dev-db/sqlcmd/
X-VCS-Committer: watermanpaint
X-VCS-Committer-Name: Lucio Sauer
X-VCS-Revision: a08b91c39bd84c6b76c27d2de47e8db47bc257d5
X-VCS-Branch: dev
Date: Thu, 18 Jul 2024 14:36:09 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 843c9a53-ca1a-49cb-b15b-1251b0012dc7
X-Archives-Hash: 8afcd78badc264b346a80091172a5b26
Message-ID: <20240718143609.Xd3Llcb9UEu9HVgCPTOToWivWxE2cVXm-soe3qju54k@z>

commit:     a08b91c39bd84c6b76c27d2de47e8db47bc257d5
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Thu Jul 18 14:29:58 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Jul 18 14:34:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a08b91c3

dev-db/sqlcmd: make DOCS local to avoid variable pollution

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 dev-db/sqlcmd/sqlcmd-1.7.0.ebuild | 11 +++++------
 dev-db/sqlcmd/sqlcmd-1.8.0.ebuild | 11 ++++++-----
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild b/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild
index e4c60d445..ddc5c2180 100644
--- a/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild
+++ b/dev-db/sqlcmd/sqlcmd-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -19,11 +19,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DOCS=(
-	"README.md"
-	"SECURITY.md"
-)
-
 src_compile() {
 	ego build -o "${PN}" -ldflags="-X main.version=${PV}" ./cmd/modern
 }
@@ -39,5 +34,9 @@ src_install() {
 	dofishcomp "completions/${PN}.fish"
 	dozshcomp "completions/_${PN}"
 
+	local DOCS=(
+		"README.md"
+		"SECURITY.md"
+	)
 	einstalldocs
 }

diff --git a/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild b/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
index d6c9071a8..af122c844 100644
--- a/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
+++ b/dev-db/sqlcmd/sqlcmd-1.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -34,9 +34,10 @@ src_install() {
 	dofishcomp "completions/${PN}.fish"
 	dozshcomp "completions/_${PN}"
 
-DOCS=(
-	"README.md"
-	"SECURITY.md"
-)
+	local DOCS=(
+		"README.md"
+		"SECURITY.md"
+	)
+
 	einstalldocs
 }