pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/firefox



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Thu May  2 01:16:28 UTC 2019

Modified Files:
        pkgsrc/www/firefox: mozilla-common.mk

Log Message:
firefox: remove lingering references to Python 3.5

Remove lingering references to Python 3.5 in mozilla-common.mk. (This
code could perhaps be condensed, but, though Python 3.7 is now the
default, soon enough there'll be a Python 3.8, and so on.)


To generate a diff of this commit:
cvs rdiff -u -r1.130 -r1.131 pkgsrc/www/firefox/mozilla-common.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/firefox/mozilla-common.mk
diff -u pkgsrc/www/firefox/mozilla-common.mk:1.130 pkgsrc/www/firefox/mozilla-common.mk:1.131
--- pkgsrc/www/firefox/mozilla-common.mk:1.130  Wed Mar 20 14:38:17 2019
+++ pkgsrc/www/firefox/mozilla-common.mk        Thu May  2 01:16:28 2019
@@ -1,4 +1,4 @@
-# $NetBSD: mozilla-common.mk,v 1.130 2019/03/20 14:38:17 tsutsui Exp $
+# $NetBSD: mozilla-common.mk,v 1.131 2019/05/02 01:16:28 gutteridge Exp $
 #
 # common Makefile fragment for mozilla packages based on gecko 2.0.
 #
@@ -7,11 +7,10 @@
 
 .include "../../mk/bsd.prefs.mk"
 
-# Python 2.7 and Python 3.5 or later are required simultaneously.
+# Python 2.7 and Python 3.6 or later are required simultaneously.
 PYTHON_VERSIONS_ACCEPTED=      27
 PYTHON_FOR_BUILD_ONLY=         tool
-.if !empty(PYTHON_VERSION_DEFAULT:M37) || !empty(PYTHON_VERSION_DEFAULT:M36) \
-       || !empty(PYTHON_VERSION_DEFAULT:M35)
+.if !empty(PYTHON_VERSION_DEFAULT:M37) || !empty(PYTHON_VERSION_DEFAULT:M36)
 TOOL_DEPENDS+=         python${PYTHON_VERSION_DEFAULT}-[0-9]*:../../lang/python${PYTHON_VERSION_DEFAULT}
 ALL_ENV+=      PYTHON3=${LOCALBASE}/bin/python${PYTHON_VERSION_DEFAULT:S/3/3./}
 .else



Home | Main Index | Thread Index | Old Index