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 D3A2C13835A for ; Sun, 10 Jan 2021 18:39:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E94B2E0A9E; Sun, 10 Jan 2021 18:39:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D02F9E0A9E for ; Sun, 10 Jan 2021 18:39:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CAAC9341010 for ; Sun, 10 Jan 2021 18:39:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81CF3309 for ; Sun, 10 Jan 2021 18:39:07 +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: <1610303658.140e2d0f701eed29b9f9ef9c42c7f6ad5947422c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/gitea/gitea-1.13.0.ebuild www-apps/gitea/gitea-9999.ebuild X-VCS-Directories: www-apps/gitea/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 140e2d0f701eed29b9f9ef9c42c7f6ad5947422c X-VCS-Branch: master Date: Sun, 10 Jan 2021 18:39:07 +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: 7e863f37-fde5-4689-85ca-349c72cd041c X-Archives-Hash: 8f5ee7d1a3d12c35e97e69bdfc830d9f commit: 140e2d0f701eed29b9f9ef9c42c7f6ad5947422c Author: Ionen Wolkens gmail com> AuthorDate: Tue Dec 29 09:53:53 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 10 18:34:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140e2d0f www-apps/gitea: fix build with bash-5.1 Closes: https://bugs.gentoo.org/762391 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Ionen Wolkens gmail.com> Signed-off-by: Sam James gentoo.org> www-apps/gitea/gitea-1.13.0.ebuild | 4 ++-- www-apps/gitea/gitea-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/www-apps/gitea/gitea-1.13.0.ebuild b/www-apps/gitea/gitea-1.13.0.ebuild index 7bb52ed548e..2602c088b24 100644 --- a/www-apps/gitea/gitea-1.13.0.ebuild +++ b/www-apps/gitea/gitea-1.13.0.ebuild @@ -84,8 +84,8 @@ src_compile() { "-X code.gitea.io/gitea/modules/setting.AppWorkPath=${EPREFIX}/var/lib/gitea" ) local makeenv=( - TAGS="${gitea_tags[@]}" - LDFLAGS="-extldflags \"${LDFLAGS}\" ${gitea_settings[@]}" + TAGS="${gitea_tags[*]}" + LDFLAGS="-extldflags \"${LDFLAGS}\" ${gitea_settings[*]}" ) [[ ${PV} != 9999* ]] && makeenv+=("DRONE_TAG=${MY_PV}") diff --git a/www-apps/gitea/gitea-9999.ebuild b/www-apps/gitea/gitea-9999.ebuild index d6f5cfcf5a8..b975338d0ff 100644 --- a/www-apps/gitea/gitea-9999.ebuild +++ b/www-apps/gitea/gitea-9999.ebuild @@ -81,8 +81,8 @@ src_compile() { "-X code.gitea.io/gitea/modules/setting.AppWorkPath=${EPREFIX}/var/lib/gitea" ) local makeenv=( - TAGS="${gitea_tags[@]}" - LDFLAGS="-extldflags \"${LDFLAGS}\" ${gitea_settings[@]}" + TAGS="${gitea_tags[*]}" + LDFLAGS="-extldflags \"${LDFLAGS}\" ${gitea_settings[*]}" ) [[ ${PV} != 9999* ]] && makeenv+=("DRONE_TAG=${MY_PV}")