svn commit: r354552 - head/Mk/Scripts

Antoine Brodin antoine at FreeBSD.org
Mon May 19 16:09:01 UTC 2014


Author: antoine
Date: Mon May 19 16:09:00 2014
New Revision: 354552
URL: http://svnweb.freebsd.org/changeset/ports/354552
QAT: https://qat.redports.org/buildarchive/r354552/

Log:
  Add more files to orphans white list:
  - .DS_Store files
  - some VCS related files
  
  Note: it's still recommended to not extract/install those files if they are
  not needed
  
  PR:		ports/189859
  Submitted by:	adamw (first version)
  Reviewed by:	bapt
  With hat:	portmgr

Modified:
  head/Mk/Scripts/check-stagedir.sh

Modified: head/Mk/Scripts/check-stagedir.sh
==============================================================================
--- head/Mk/Scripts/check-stagedir.sh	Mon May 19 16:05:55 2014	(r354551)
+++ head/Mk/Scripts/check-stagedir.sh	Mon May 19 16:09:00 2014	(r354552)
@@ -288,6 +288,13 @@ check_orphans_from_plist() {
 		case "${path}" in
 		*.bak) ;;
 		*.orig) ;;
+		*/.DS_Store) ;;
+		*/.cvsignore) ;;
+		*/.git/*|'@dirrmtry '*/.git) ;;
+		*/.gitattributes|*/.gitignore|*/.gitmodules) ;;
+		*/.svn/*|'@dirrmtry '*/.svn) ;;
+		*/.svnignore) ;;
+		*/CVS/*|'@dirrmtry '*/CVS) ;;
 		*/info/dir|info/dir) ;;
 		lib/X11/fonts/*/fonts.dir) ;;
 		lib/X11/fonts/*/fonts.scale) ;;


More information about the svn-ports-all mailing list