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 3DADD15A7DA for ; Mon, 20 Mar 2023 06:43:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88734E0864; Mon, 20 Mar 2023 06:43:27 +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 6FA44E0864 for ; Mon, 20 Mar 2023 06:43:27 +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 8E4F3341275 for ; Mon, 20 Mar 2023 06:43:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C8E48EA for ; Mon, 20 Mar 2023 06:43:25 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1679294585.b58bfca12d8af0a0da3c86a22cb840e0750117f4.ceamac@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/hugo/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/hugo/hugo-0.110.0-r1.ebuild www-apps/hugo/hugo-0.110.0-r2.ebuild www-apps/hugo/hugo-0.111.3.ebuild X-VCS-Directories: www-apps/hugo/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: b58bfca12d8af0a0da3c86a22cb840e0750117f4 X-VCS-Branch: master Date: Mon, 20 Mar 2023 06:43:25 +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: d2297aec-181b-4bc4-82a1-008033882d59 X-Archives-Hash: 954bd85baf81fedd5ba9a1a32e1d94b5 commit: b58bfca12d8af0a0da3c86a22cb840e0750117f4 Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Sun Mar 12 14:53:05 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Mon Mar 20 06:43:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58bfca1 www-apps/hugo: fix build flags EGO_BUILD_FLAGS is only used in golang-build.eclass, not in go-module.eclass. Bug: https://github.com/gentoo/gentoo/pull/29807#issuecomment-1465214240 Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> Closes: https://github.com/gentoo/gentoo/pull/30047 Signed-off-by: Viorel Munteanu gentoo.org> www-apps/hugo/{hugo-0.110.0-r1.ebuild => hugo-0.110.0-r2.ebuild} | 6 +++--- www-apps/hugo/hugo-0.111.3.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/www-apps/hugo/hugo-0.110.0-r1.ebuild b/www-apps/hugo/hugo-0.110.0-r2.ebuild similarity index 93% rename from www-apps/hugo/hugo-0.110.0-r1.ebuild rename to www-apps/hugo/hugo-0.110.0-r2.ebuild index 2844ad2eecb8..68c6effbbe55 100644 --- a/www-apps/hugo/hugo-0.110.0-r1.ebuild +++ b/www-apps/hugo/hugo-0.110.0-r2.ebuild @@ -48,7 +48,7 @@ src_configure() { export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" - export EGO_BUILD_FLAGS="$(usev sass "-tags extended")" + export MY_BUILD_FLAGS="$(usev sass "-tags extended")" default } @@ -56,7 +56,7 @@ src_configure() { src_compile() { mkdir -pv bin || die ego build -ldflags "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=gentoo:${PVR}" \ - -o "${S}/bin/hugo" + ${MY_BUILD_FLAGS} -o "${S}/bin/hugo" bin/hugo gen man --dir man || die @@ -71,7 +71,7 @@ src_compile() { } src_test() { - ego test "./..." + ego test "./..." ${MY_BUILD_FLAGS} } src_install() { diff --git a/www-apps/hugo/hugo-0.111.3.ebuild b/www-apps/hugo/hugo-0.111.3.ebuild index ebf86fa34f56..7eb297bafecd 100644 --- a/www-apps/hugo/hugo-0.111.3.ebuild +++ b/www-apps/hugo/hugo-0.111.3.ebuild @@ -48,7 +48,7 @@ src_configure() { export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" - export EGO_BUILD_FLAGS="$(usev sass "-tags extended")" + export MY_BUILD_FLAGS="$(usev sass "-tags extended")" default } @@ -56,7 +56,7 @@ src_configure() { src_compile() { mkdir -pv bin || die ego build -ldflags "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=gentoo:${PVR}" \ - -o "${S}/bin/hugo" + ${MY_BUILD_FLAGS} -o "${S}/bin/hugo" bin/hugo gen man --dir man || die @@ -71,7 +71,7 @@ src_compile() { } src_test() { - ego test "./..." + ego test "./..." ${MY_BUILD_FLAGS} } src_install() {