Fri May 15 10:22:42 2020 UTC ()
mk/defaults: Revert PKG_DEVELOPER default change for now


(nia)
diff -r1.309 -r1.310 pkgsrc/mk/defaults/mk.conf

cvs diff -r1.309 -r1.310 pkgsrc/mk/defaults/mk.conf (expand / switch to unified diff)

--- pkgsrc/mk/defaults/mk.conf 2020/05/15 10:10:04 1.309
+++ pkgsrc/mk/defaults/mk.conf 2020/05/15 10:22:42 1.310
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: mk.conf,v 1.309 2020/05/15 10:10:04 nia Exp $ 1# $NetBSD: mk.conf,v 1.310 2020/05/15 10:22:42 nia Exp $
2# 2#
3 3
4# This file provides default values for variables that may be overridden 4# This file provides default values for variables that may be overridden
5# in the MAKECONF file, which is /etc/mk.conf by default. 5# in the MAKECONF file, which is /etc/mk.conf by default.
6# 6#
7# Note: This file is included after the MAKECONF file, so you cannot query 7# Note: This file is included after the MAKECONF file, so you cannot query
8# these default values in the MAKECONF using the ".if" and ".for" 8# these default values in the MAKECONF using the ".if" and ".for"
9# preprocessing directives. 9# preprocessing directives.
10 10
11# ************************************************************************ 11# ************************************************************************
12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS. 12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS.
13# ************************************************************************ 13# ************************************************************************
14 14
@@ -163,27 +163,28 @@ PKGSRC_SLEEPSECS?= 5 @@ -163,27 +163,28 @@ PKGSRC_SLEEPSECS?= 5
163# 163#
164# If you change it, be sure that _all_ the installed libraries and 164# If you change it, be sure that _all_ the installed libraries and
165# programs have the same API and use consistent compiler options. It is 165# programs have the same API and use consistent compiler options. It is
166# recommended that this variable be only changed directly after 166# recommended that this variable be only changed directly after
167# bootstrapping pkgsrc. 167# bootstrapping pkgsrc.
168# 168#
169# Possible values: 169# Possible values:
170# * 64 (64 bit ABI; both IRIX or Solaris) 170# * 64 (64 bit ABI; both IRIX or Solaris)
171# * 32 (SGI's N32 ABI; only IRIX) 171# * 32 (SGI's N32 ABI; only IRIX)
172# * undefined (SGI's old o32 ABI; only IRIX) 172# * undefined (SGI's old o32 ABI; only IRIX)
173# 173#
174# Default: undefined, but see above. 174# Default: undefined, but see above.
175 175
176PKG_DEVELOPER?= yes 176#PKG_DEVELOPER?= yes
 177#
177# If defined and not "no" it enables some sanity checks to raise the quality 178# If defined and not "no" it enables some sanity checks to raise the quality
178# of the installed packages. See the files pkgsrc/mk/check/check-*.mk for 179# of the installed packages. See the files pkgsrc/mk/check/check-*.mk for
179# details and further configuration options. 180# details and further configuration options.
180# 181#
181# Possible: defined, not defined, no 182# Possible: defined, not defined, no
182# Default: yes 183# Default: yes
183 184
184USE_ABI_DEPENDS?= yes 185USE_ABI_DEPENDS?= yes
185# Honor package prerequisite ABI recommendations. If this is set 186# Honor package prerequisite ABI recommendations. If this is set
186# to "yes", all entries in ABI_DEPENDS will be added to DEPENDS. 187# to "yes", all entries in ABI_DEPENDS will be added to DEPENDS.
187# If set to "no", a warning will be printed if recommendations 188# If set to "no", a warning will be printed if recommendations
188# are possibly ignored. 189# are possibly ignored.
189# 190#