Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 008501A923A for ; Sat, 5 Mar 2022 18:13:37 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A766B84E95; Sat, 5 Mar 2022 18:13:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E044184E90 for ; Sat, 5 Mar 2022 18:13:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id SPYXq4uwg4ez for ; Sat, 5 Mar 2022 18:13:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3958584D28 for ; Sat, 5 Mar 2022 18:13:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2BA4FFB24; Sat, 5 Mar 2022 18:13:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1646504016140320" MIME-Version: 1.0 Date: Sat, 5 Mar 2022 18:13:36 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/www/hugo To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20220305181336.2BA4FFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1646504016140320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Sat Mar 5 18:13:36 UTC 2022 Modified Files: pkgsrc/www/hugo: Makefile Log Message: hugo: build the extended version. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/www/hugo/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1646504016140320 Content-Disposition: inline Content-Length: 832 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/hugo/Makefile diff -u pkgsrc/www/hugo/Makefile:1.54 pkgsrc/www/hugo/Makefile:1.55 --- pkgsrc/www/hugo/Makefile:1.54 Sat Mar 5 14:16:43 2022 +++ pkgsrc/www/hugo/Makefile Sat Mar 5 18:13:36 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.54 2022/03/05 14:16:43 nikita Exp $ +# $NetBSD: Makefile,v 1.55 2022/03/05 18:13:36 nikita Exp $ DISTNAME= hugo-0.93.2 PKGNAME= go-${DISTNAME} +PKGREVISION= 1 MASTER_SITES= ${MASTER_SITE_GITHUB:=gohugoio/} CATEGORIES= www GITHUB_TAG= v${PKGVERSION_NOREV} @@ -12,7 +13,12 @@ HOMEPAGE= https://gohugo.io/ COMMENT= Fast & Modern Static Website Engine LICENSE= apache-2.0 -GO_BUILD_PATTERN= +GO_BUILD_PATTERN= -tags "extended" + +MAKE_ENV+= "CGO_ENABLED=1" +MAKE_ENV+= "CGO_LDFLAGS=-lm" +USE_LANGUAGES+= c c++ +LIBS+= -lm .include "go-modules.mk" --_----------=_1646504016140320--