svn commit: r419923 - head/Mk

Mathieu Arnold mat at FreeBSD.org
Tue Aug 9 14:29:06 UTC 2016


Author: mat
Date: Tue Aug  9 14:29:04 2016
New Revision: 419923
URL: https://svnweb.freebsd.org/changeset/ports/419923

Log:
  Don't overquote the DEPRECATED message, it ended up looking silly.
  
  Something like:
  
  -----------
  This port is deprecated; you may wish to reconsider installing it:
  
  EOL\ upstream\ since\ 10\ Jul\ 2016.
  
  It is scheduled to be removed on or after 2016-08-20.
  -----------
  
  PR:		211421
  Reported by:	Miroslav Lachman
  Sponsored by:	Absolight

Modified:
  head/Mk/bsd.port.mk   (contents, props changed)

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Tue Aug  9 14:28:53 2016	(r419922)
+++ head/Mk/bsd.port.mk	Tue Aug  9 14:29:04 2016	(r419923)
@@ -4240,7 +4240,7 @@ create-manifest:
 			dp_CATEGORIES='${CATEGORIES:u:S/$/,/}'                \
 			dp_COMMENT=${COMMENT:Q}                               \
 			dp_COMPLETE_OPTIONS_LIST='${COMPLETE_OPTIONS_LIST}'   \
-			dp_DEPRECATED='${DEPRECATED:Q}'                       \
+			dp_DEPRECATED=${DEPRECATED:Q}                         \
 			dp_DESCR='${DESCR}'                                   \
 			dp_EXPIRATION_DATE='${EXPIRATION_DATE}'               \
 			dp_GROUPS='${GROUPS:u:S/$/,/}'                        \


More information about the svn-ports-all mailing list