From owner-svn-ports-all@freebsd.org Fri Jan 22 09:48:07 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0D8374EF42A; Fri, 22 Jan 2021 09:48:07 +0000 (UTC) (envelope-from antoine@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DMZFL7145z4ckB; Fri, 22 Jan 2021 09:48:06 +0000 (UTC) (envelope-from antoine@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 DF3711C890; Fri, 22 Jan 2021 09:48:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10M9m6ii024965; Fri, 22 Jan 2021 09:48:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10M9m67O024964; Fri, 22 Jan 2021 09:48:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202101220948.10M9m67O024964@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 22 Jan 2021 09:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562285 - head/Tools/scripts X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/Tools/scripts X-SVN-Commit-Revision: 562285 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jan 2021 09:48:07 -0000 Author: antoine Date: Fri Jan 22 09:48:06 2021 New Revision: 562285 URL: https://svnweb.freebsd.org/changeset/ports/562285 Log: Update tindex for FreeBSD 14 Modified: head/Tools/scripts/tindex Modified: head/Tools/scripts/tindex ============================================================================== --- head/Tools/scripts/tindex Fri Jan 22 09:38:58 2021 (r562284) +++ head/Tools/scripts/tindex Fri Jan 22 09:48:06 2021 (r562285) @@ -30,6 +30,7 @@ export PORTSDIR=${BASEDIR}/ports export SRCDIR11=${BASEDIR}/src.11 export SRCDIR12=${BASEDIR}/src.12 export SRCDIR13=${BASEDIR}/src.13 +export SRCDIR14=${BASEDIR}/src.14 export OUTDIR=${BASEDIR}/out # Target architecture if not set in the environment @@ -125,8 +126,11 @@ OSVERSION12=$(awk '/^#define[[:blank:]]__FreeBSD_versi ${GIT} -C ${SRCDIR13} pull --rebase -q OSVERSION13=$(awk '/^#define[[:blank:]]__FreeBSD_version/ {print $3}' < ${SRCDIR13}/sys/sys/param.h) +${GIT} -C ${SRCDIR14} pull --rebase -q +OSVERSION14=$(awk '/^#define[[:blank:]]__FreeBSD_version/ {print $3}' < ${SRCDIR14}/sys/sys/param.h) + cd ${PORTSDIR} -rm -f INDEX-11 INDEX-11.bz2 INDEX-12 INDEX-12.bz2 INDEX-13 INDEX-13.bz2 +rm -f INDEX-11 INDEX-11.bz2 INDEX-12 INDEX-12.bz2 INDEX-13 INDEX-13.bz2 INDEX-14 INDEX-14.bz2 (${SVN} up 2>1 ) > svn.log if grep -q ^C svn.log ; then (echo "svn update failed with conflicts:"; @@ -134,7 +138,7 @@ if grep -q ^C svn.log ; then exit 1 fi -for branch in 11.x 12.x 13.x; do +for branch in 11.x 12.x 13.x 14.x; do release=$(echo $branch | sed -e 's,.x,,') eval _osver=\$OSVERSION${release}