Received: by mail.netbsd.org (Postfix, from userid 605) id E581284E6E; Sat, 11 Jan 2020 11:09:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6CBD484DE5 for ; Sat, 11 Jan 2020 11:09:36 +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 6nAsmcR7QrmA for ; Sat, 11 Jan 2020 11:09:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EDB5D84CD3 for ; Sat, 11 Jan 2020 11:09:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EB3BEFBF4; Sat, 11 Jan 2020 11:09:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157874097559980" MIME-Version: 1.0 Date: Sat, 11 Jan 2020 11:09:35 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200111110935.EB3BEFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157874097559980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat Jan 11 11:09:35 UTC 2020 Modified Files: pkgsrc: Makefile Added Files: pkgsrc/regress: README Removed Files: pkgsrc/regress: Makefile Log Message: regress: remove Makefile The regress/ directory does not contain pkgsrc packages, therefore it should not be listed as a SUBDIR in the top-level Makefile. This wrong impression could be caused because most of the regression tests have a Makefile that looks like an actual package Makefile. But this alone doesn't mean that these are packages. The only relevant file for a regression test is the spec file. If that test uses a package Makefile or not is an implementation detail of each test. To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87 pkgsrc/Makefile cvs rdiff -u -r1.27 -r0 pkgsrc/regress/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/regress/README Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157874097559980 Content-Disposition: inline Content-Length: 979 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/Makefile diff -u pkgsrc/Makefile:1.86 pkgsrc/Makefile:1.87 --- pkgsrc/Makefile:1.86 Mon Jun 2 10:24:05 2014 +++ pkgsrc/Makefile Sat Jan 11 11:09:35 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.86 2014/06/02 10:24:05 wiz Exp $ +# $NetBSD: Makefile,v 1.87 2020/01/11 11:09:35 rillig Exp $ # # This is the top-level Makefile of pkgsrc. It contains a list of the # categories of packages, as well as some targets that operate on the @@ -79,7 +79,6 @@ SUBDIR+= news SUBDIR+= parallel SUBDIR+= pkgtools SUBDIR+= print -#SUBDIR+= regress # regression tests must be started manually SUBDIR+= security SUBDIR+= shells SUBDIR+= sysutils Added files: Index: pkgsrc/regress/README diff -u /dev/null pkgsrc/regress/README:1.1 --- /dev/null Sat Jan 11 11:09:35 2020 +++ pkgsrc/regress/README Sat Jan 11 11:09:35 2020 @@ -0,0 +1,2 @@ +See the chapter "Regression tests" in the pkgsrc guide (doc/pkgsrc.txt) +for more information about these tests. --_----------=_157874097559980--