From owner-svn-ports-all@freebsd.org Mon Feb 1 12:37:52 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 528724FE91F; Mon, 1 Feb 2021 12:37:52 +0000 (UTC) (envelope-from rene@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 4DTnXc1tr7z3DWD; Mon, 1 Feb 2021 12:37:52 +0000 (UTC) (envelope-from rene@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 340B31B621; Mon, 1 Feb 2021 12:37:52 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 111Cbqnd059177; Mon, 1 Feb 2021 12:37:52 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 111CbqCG059176; Mon, 1 Feb 2021 12:37:52 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202102011237.111CbqCG059176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 1 Feb 2021 12:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r563569 - branches/2021Q1/Mk X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2021Q1/Mk X-SVN-Commit-Revision: 563569 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: Mon, 01 Feb 2021 12:37:52 -0000 Author: rene Date: Mon Feb 1 12:37:51 2021 New Revision: 563569 URL: https://svnweb.freebsd.org/changeset/ports/563569 Log: MFH: r563568 Mk/bsd.port.mk: Remove support for FreeBSD 12.1 which reached end-of-life today. Modified: branches/2021Q1/Mk/bsd.port.mk Directory Properties: branches/2021Q1/ (props changed) Modified: branches/2021Q1/Mk/bsd.port.mk ============================================================================== --- branches/2021Q1/Mk/bsd.port.mk Mon Feb 1 12:37:14 2021 (r563568) +++ branches/2021Q1/Mk/bsd.port.mk Mon Feb 1 12:37:51 2021 (r563569) @@ -43,9 +43,9 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # makefile is being used on. Automatically set to # "FreeBSD," "NetBSD," or "OpenBSD" as appropriate. # OSREL - The release version of the operating system as a text -# string (e.g., "12.1"). +# string (e.g., "12.2"). # OSVERSION - The operating system version as a comparable integer; -# the value of __FreeBSD_version (e.g., 1201000). +# the value of __FreeBSD_version (e.g., 1202000). # # This is the beginning of the list of all variables that need to be # defined in a port, listed in order that they should be included @@ -1177,7 +1177,7 @@ OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_ver .endif _EXPORTED_VARS+= OSVERSION -.if (${OPSYS} == FreeBSD && (${OSVERSION} < 1104000 || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1201000))) || \ +.if (${OPSYS} == FreeBSD && (${OSVERSION} < 1104000 || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1202000))) || \ (${OPSYS} == DragonFly && ${DFLYVERSION} < 400400) _UNSUPPORTED_SYSTEM_MESSAGE= Ports Collection support for your ${OPSYS} version has ended, and no ports\ are guaranteed to build on this system. Please upgrade to a supported release.