Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EAEAF84F6F for ; Tue, 5 Sep 2023 07:23:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id z78RIRWAcHlU for ; Tue, 5 Sep 2023 07:23:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4813984F58 for ; Tue, 5 Sep 2023 07:23:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 40C8AFBDB; Tue, 5 Sep 2023 07:23:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693898580204930" MIME-Version: 1.0 Date: Tue, 5 Sep 2023 07:23:00 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/zola To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230905072300.40C8AFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693898580204930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Sep 5 07:23:00 UTC 2023 Modified Files: pkgsrc/www/zola: Makefile Log Message: zola: remove unused libsass dependency SASS support was switched to a rust crate. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/zola/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693898580204930 Content-Disposition: inline Content-Length: 927 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/zola/Makefile diff -u pkgsrc/www/zola/Makefile:1.14 pkgsrc/www/zola/Makefile:1.15 --- pkgsrc/www/zola/Makefile:1.14 Tue May 16 15:41:00 2023 +++ pkgsrc/www/zola/Makefile Tue Sep 5 07:23:00 2023 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2023/05/16 15:41:00 nikita Exp $ +# $NetBSD: Makefile,v 1.15 2023/09/05 07:23:00 wiz Exp $ DISTNAME= zola-0.17.2 +PKGREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GITHUB:=getzola/} GITHUB_PROJECT= zola @@ -21,10 +22,8 @@ TOOL_DEPENDS+= cmake-[0-9]*:../../devel/ INSTALLATION_DIRS= bin MAKE_ENV+= OPENSSL_DIR=${BUILDLINK_PREFIX.openssl:Q} -RUSTFLAGS+= -C link-arg=${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.libsass}/lib .include "../../lang/rust/cargo.mk" .include "../../security/openssl/buildlink3.mk" .include "../../graphics/libwebp/buildlink3.mk" -.include "../../www/libsass/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1693898580204930--