Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F0A8A84F98 for ; Fri, 25 Aug 2023 17:14:07 +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 iuq7liCtEynp for ; Fri, 25 Aug 2023 17:14:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5758484C2C for ; Fri, 25 Aug 2023 17:14:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 50B2FFBDB; Fri, 25 Aug 2023 17:14:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169298364774940" MIME-Version: 1.0 Date: Fri, 25 Aug 2023 17:14:07 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/meta-pkgs To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20230825171407.50B2FFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169298364774940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Fri Aug 25 17:14:07 UTC 2023 Modified Files: pkgsrc/meta-pkgs: Makefile Added Files: pkgsrc/meta-pkgs/bulk-test-rust: DESCR Makefile Log Message: bulk-test-rust: Add 20230825.0 This is a test package for rust. Surely things are left out; I added merely what I use, know about, and know is important. Please feel free to add other stable programs. To generate a diff of this commit: cvs rdiff -u -r1.125 -r1.126 pkgsrc/meta-pkgs/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/meta-pkgs/bulk-test-rust/DESCR \ pkgsrc/meta-pkgs/bulk-test-rust/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169298364774940 Content-Disposition: inline Content-Length: 2743 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/meta-pkgs/Makefile diff -u pkgsrc/meta-pkgs/Makefile:1.125 pkgsrc/meta-pkgs/Makefile:1.126 --- pkgsrc/meta-pkgs/Makefile:1.125 Wed Aug 16 22:17:55 2023 +++ pkgsrc/meta-pkgs/Makefile Fri Aug 25 17:14:07 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.125 2023/08/16 22:17:55 markd Exp $ +# $NetBSD: Makefile,v 1.126 2023/08/25 17:14:07 gdt Exp $ # COMMENT= Collections of other packages @@ -12,6 +12,7 @@ SUBDIR+= bulk-test-boost SUBDIR+= bulk-test-essential SUBDIR+= bulk-test-go SUBDIR+= bulk-test-llvm +SUBDIR+= bulk-test-rust SUBDIR+= compiz-fusion SUBDIR+= courier SUBDIR+= deforaos-desktop Added files: Index: pkgsrc/meta-pkgs/bulk-test-rust/DESCR diff -u /dev/null pkgsrc/meta-pkgs/bulk-test-rust/DESCR:1.1 --- /dev/null Fri Aug 25 17:14:07 2023 +++ pkgsrc/meta-pkgs/bulk-test-rust/DESCR Fri Aug 25 17:14:07 2023 @@ -0,0 +1,8 @@ +Meta-package to help in testing rust updates. It intends to depend on +all maintained packages that use rust, if those packages going missing +would be considered serious. + +Note that this package can test rust or rust-bin, depending on one's +RUST_TYPE. + +This package does not attempt to test crossbuilding rust itself. Index: pkgsrc/meta-pkgs/bulk-test-rust/Makefile diff -u /dev/null pkgsrc/meta-pkgs/bulk-test-rust/Makefile:1.1 --- /dev/null Fri Aug 25 17:14:07 2023 +++ pkgsrc/meta-pkgs/bulk-test-rust/Makefile Fri Aug 25 17:14:07 2023 @@ -0,0 +1,39 @@ +# $NetBSD: Makefile,v 1.1 2023/08/25 17:14:07 gdt Exp $ + +DISTNAME= bulk-test-rust-20230825.0 +CATEGORIES= meta-pkgs +MASTER_SITES= # empty +DISTFILES= # empty + +# Feel free to add packages without asking me. +MAINTAINER= gdt@NetBSD.org +COMMENT= Meta-package for testing rust + +META_PACKAGE= yes + +RESTRICTED= Just for test build purposes +NO_BIN_ON_CDROM= ${RESTRICTED} +NO_BIN_ON_FTP= ${RESTRICTED} + +# Prorams should be listed here if they are maintained upstream and +# updated reasonably promptly in pkgsrc. (Alternatively, programs +# that are actively maintained in pkgsrc despite being unmaintained +# upstream are acceptable.) (This package is about catching +# regressions, and not about pressuring programs that have not +# recently and usually been healthy.) + +# enormous programs +DEPENDS+= thunderbird-[0-9]*:../../mail/thunderbird +DEPENDS+= firefox-[0-9]*:../../www/firefox + +# moderate programs +DEPENDS+= matrix-synapse-[0-9]*:../../chat/matrix-synapse +DEPENDS+= vaultwarden-[0-9]*:../../security/vaultwarden +DEPENDS+= arti-[0-9]*:../../net/arti + +# libraries +DEPENDS+= libimagequant-[0-9]*:../../graphics/libimagequant +DEPENDS+= librsvg-[0-9]*:../../graphics/librsvg +DEPENDS+= py-cryptography-[0-9]*:../../security/py-cryptography + +.include "../../mk/bsd.pkg.mk" --_----------=_169298364774940--