Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id A14567A220 for ; Wed, 15 Mar 2017 18:52:57 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1BF438557C; Wed, 15 Mar 2017 18:52:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A037684CEA for ; Wed, 15 Mar 2017 18:52:56 +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 jO--kGSnwU4k for ; Wed, 15 Mar 2017 18:52:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 30AF284CE1 for ; Wed, 15 Mar 2017 18:52:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2BDABFBE4; Wed, 15 Mar 2017 18:52:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1489603976218500" MIME-Version: 1.0 Date: Wed, 15 Mar 2017 18:52:56 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/security/mozilla-rootcerts To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170315185256.2BDABFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1489603976218500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Mar 15 18:52:56 UTC 2017 Modified Files: pkgsrc/security/mozilla-rootcerts: Makefile pkgsrc/security/mozilla-rootcerts/files: mozilla-rootcerts.sh Log Message: Limit broken openssl.cnf handling to NetBSD only after no response from bsiegert@. There's no reason to pollute other operating systems. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/security/mozilla-rootcerts/Makefile cvs rdiff -u -r1.12 -r1.13 \ pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1489603976218500 Content-Disposition: inline Content-Length: 1690 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/mozilla-rootcerts/Makefile diff -u pkgsrc/security/mozilla-rootcerts/Makefile:1.25 pkgsrc/security/mozilla-rootcerts/Makefile:1.26 --- pkgsrc/security/mozilla-rootcerts/Makefile:1.25 Fri Mar 3 15:46:27 2017 +++ pkgsrc/security/mozilla-rootcerts/Makefile Wed Mar 15 18:52:55 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2017/03/03 15:46:27 bsiegert Exp $ +# $NetBSD: Makefile,v 1.26 2017/03/15 18:52:55 jperkin Exp $ DISTNAME= mozilla-rootcerts-1.0.${CERTDATA_DATE} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= -https://hg.mozilla.org/mozilla-central/raw-file/052b90b5414f/security/nss/lib/ckfw/builtins/certdata.txt DISTFILES= ${CERTDATA} Index: pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh diff -u pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh:1.12 pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh:1.13 --- pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh:1.12 Fri Mar 3 15:46:27 2017 +++ pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh Wed Mar 15 18:52:56 2017 @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: mozilla-rootcerts.sh,v 1.12 2017/03/03 15:46:27 bsiegert Exp $ +# $NetBSD: mozilla-rootcerts.sh,v 1.13 2017/03/15 18:52:56 jperkin Exp $ # # This script is meant to be used as follows: # @@ -188,9 +188,10 @@ extract) }' ;; install) - # quell warnings for a missing config file - touch $destdir$conffile - + if [ `uname -s` = "NetBSD" ]; then + # quell warnings for a missing config file + touch $destdir$conffile + fi if [ ! -d $destdir$SSLDIR ]; then ${ECHO} 1>&2 "ERROR: $destdir$SSLDIR does not exist, aborting." exit 1 --_----------=_1489603976218500--