From owner-svn-doc-all@freebsd.org Mon Dec 31 08:23:14 2018 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3110142B7D3; Mon, 31 Dec 2018 08:23:13 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 98A128FB78; Mon, 31 Dec 2018 08:23:13 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 871B37F23; Mon, 31 Dec 2018 08:23:13 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBV8NDhV081643; Mon, 31 Dec 2018 08:23:13 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBV8NDqf081642; Mon, 31 Dec 2018 08:23:13 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201812310823.wBV8NDqf081642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 31 Dec 2018 08:23:13 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r52741 - head/en_US.ISO8859-1/htdocs/releases/12.0R X-SVN-Group: doc-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs/releases/12.0R X-SVN-Commit-Revision: 52741 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 98A128FB78 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Dec 2018 08:23:14 -0000 Author: gjb Date: Mon Dec 31 08:23:13 2018 New Revision: 52741 URL: https://svnweb.freebsd.org/changeset/doc/52741 Log: Do not look for 'RELEASE*' (including RELEASE-pNN) when evaluating if checksum files should be included. This case was specifically added to handle a case where a final release was a re-roll, i.e., 11.0-RELEASE was really 11.0-RELEASE-p1; this will need to be handled on a case-by-case basis. There be dragons. Here lies Link. Reported by: David Boyd Sponsored by: The FreeBSD Foundation Modified: head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile Modified: head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile ============================================================================== --- head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile Sun Dec 30 21:32:40 2018 (r52740) +++ head/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile Mon Dec 31 08:23:13 2018 (r52741) @@ -56,7 +56,11 @@ _ARM64_AARCH64?=PINE64 \ PINE64-LTS \ RPI3 -.if (${_BRANCH:MRC*} != "" || ${_BRANCH:MRELEASE*} != "") +# Do not look for checksums if BRANCH != RC* or RELEASE. +# Special handling will be needed for cases where BRANCH +# is RELEASE-pNN, for example, the 11.0-RELEASE really being +# 11.0-RELEASE-p1. +.if (${_BRANCH:MRC*} != "" || ${_BRANCH:MRELEASE} != "") .for CHECKSUM in SHA512 SHA256 . for _B in ${_BIGIRON} DATA+= CHECKSUM.${CHECKSUM}-${THISRELEASE}-${_B}.asc