Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E65E684EEC for ; Wed, 12 Jul 2023 21:30:42 +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 agGigKs-UhUF for ; Wed, 12 Jul 2023 21:30:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5C69184C2C for ; Wed, 12 Jul 2023 21:30:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 502ABFBDB; Wed, 12 Jul 2023 21:30:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689197442116670" MIME-Version: 1.0 Date: Wed, 12 Jul 2023 21:30:42 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/security/rvault To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230712213042.502ABFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689197442116670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jul 12 21:30:42 UTC 2023 Modified Files: pkgsrc/security/rvault: Makefile distinfo Added Files: pkgsrc/security/rvault/patches: patch-Makefile Log Message: rvault: Do not force -O2, -g, or -Werror. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/security/rvault/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/security/rvault/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/security/rvault/patches/patch-Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689197442116670 Content-Disposition: inline Content-Length: 2028 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/rvault/Makefile diff -u pkgsrc/security/rvault/Makefile:1.15 pkgsrc/security/rvault/Makefile:1.16 --- pkgsrc/security/rvault/Makefile:1.15 Wed Apr 19 08:11:25 2023 +++ pkgsrc/security/rvault/Makefile Wed Jul 12 21:30:42 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2023/04/19 08:11:25 adam Exp $ +# $NetBSD: Makefile,v 1.16 2023/07/12 21:30:42 nia Exp $ DISTNAME= rvault-0.3 -PKGREVISION= 8 +PKGREVISION= 9 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GITHUB:=rmind/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/security/rvault/distinfo diff -u pkgsrc/security/rvault/distinfo:1.9 pkgsrc/security/rvault/distinfo:1.10 --- pkgsrc/security/rvault/distinfo:1.9 Sat Dec 24 00:10:26 2022 +++ pkgsrc/security/rvault/distinfo Wed Jul 12 21:30:42 2023 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.9 2022/12/24 00:10:26 wiz Exp $ +$NetBSD: distinfo,v 1.10 2023/07/12 21:30:42 nia Exp $ BLAKE2s (rvault-0.3.tar.gz) = 4ff52e5edf6156c4c9cc0046f02ef8845e9678a2c4719c64a1f7e83a040bd1b6 SHA512 (rvault-0.3.tar.gz) = 0687d14cf646adccb3c09a3d5a16e771ef9b046bd4e596a487413e83e06709b27a62c2f08a9a23d47f6253cadc1fb7cbe53262455faa6628d5b23d8539f12271 Size (rvault-0.3.tar.gz) = 76921 bytes +SHA1 (patch-Makefile) = 2dff59157d80a067b46ebda143eb15aa64b08252 SHA1 (patch-core_cli.c) = 8214fe7f75273a0d434751b600d89d70f735a24c Added files: Index: pkgsrc/security/rvault/patches/patch-Makefile diff -u /dev/null pkgsrc/security/rvault/patches/patch-Makefile:1.1 --- /dev/null Wed Jul 12 21:30:42 2023 +++ pkgsrc/security/rvault/patches/patch-Makefile Wed Jul 12 21:30:42 2023 @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile,v 1.1 2023/07/12 21:30:42 nia Exp $ + +Do not force -O2, -g, or -Werror. + +--- Makefile.orig 2020-04-22 16:11:18.000000000 +0000 ++++ Makefile +@@ -23,7 +23,7 @@ USE_OPENSSL?= 1 + # + # Common C compiler flags. + # +-CFLAGS+= -std=gnu11 -O2 -g -Wall -Wextra -Werror ++CFLAGS+= -std=gnu11 -Wall -Wextra + CFLAGS+= -I core/ -I fuse/ -I sys/ -I crypto/ -I lua/ -I misc/ + + # --_----------=_1689197442116670--