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 D6FB4158091 for ; Thu, 16 Jun 2022 16:31:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7C96E09DA; Thu, 16 Jun 2022 16:31:00 +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 B6164E09D6 for ; Thu, 16 Jun 2022 16:31:00 +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 CD039342136 for ; Thu, 16 Jun 2022 16:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9FEA521 for ; Thu, 16 Jun 2022 16:30:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655397040.1256a12bc46736c5cb03e928b423a7d3f57b7dd6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/automx2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/automx2/automx2-2022.0.ebuild net-mail/automx2/automx2-2022.1.ebuild X-VCS-Directories: net-mail/automx2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1256a12bc46736c5cb03e928b423a7d3f57b7dd6 X-VCS-Branch: master Date: Thu, 16 Jun 2022 16:30:56 +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: 66bbd3b6-fb27-43fd-aad9-a4a8035a0ce3 X-Archives-Hash: d762292f0cd4a3331509de43f46c9439 commit: 1256a12bc46736c5cb03e928b423a7d3f57b7dd6 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Wed Jun 8 20:13:02 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 16 16:30:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1256a12b net-mail/automx2: fix unquoted variable S Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Signed-off-by: Sam James gentoo.org> net-mail/automx2/automx2-2022.0.ebuild | 4 ++-- net-mail/automx2/automx2-2022.1.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-mail/automx2/automx2-2022.0.ebuild b/net-mail/automx2/automx2-2022.0.ebuild index 10bb53d7dc0d..20fbebce7c04 100644 --- a/net-mail/automx2/automx2-2022.0.ebuild +++ b/net-mail/automx2/automx2-2022.0.ebuild @@ -35,8 +35,8 @@ python_test() { } python_install_all() { - local DOCS=( ${S}/docs/*.adoc ${S}/contrib/*sample.conf ) - local HTML_DOCS=( ${S}/docs/*.{html,svg} ) + local DOCS=( "${S}"/docs/*.adoc "${S}"/contrib/*sample.conf ) + local HTML_DOCS=( "${S}"/docs/*.{html,svg} ) newconfd "${FILESDIR}/confd" "${PN}" newinitd "${FILESDIR}/init-r1" "${PN}" insinto /etc diff --git a/net-mail/automx2/automx2-2022.1.ebuild b/net-mail/automx2/automx2-2022.1.ebuild index 58a4985460d2..43acbf695022 100644 --- a/net-mail/automx2/automx2-2022.1.ebuild +++ b/net-mail/automx2/automx2-2022.1.ebuild @@ -36,8 +36,8 @@ python_test() { } python_install_all() { - local DOCS=( ${S}/docs/*.adoc ${S}/contrib/*sample.conf ) - local HTML_DOCS=( ${S}/docs/*.{html,svg} ) + local DOCS=( "${S}"/docs/*.adoc "${S}"/contrib/*sample.conf ) + local HTML_DOCS=( "${S}"/docs/*.{html,svg} ) newconfd "${FILESDIR}/confd" "${PN}" newinitd "${FILESDIR}/init-r1" "${PN}" insinto /etc