mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	* Use portable /usr/bin/env/{perl,python} instead of /usr/bin/{perl,python}
* fix perl;add bash
* Fix indentation using modified scripts
* Revert "fix perl;add bash"
This reverts commit be8b9113c25f7c2fb9c8c9bad556fbca2f0c0ba2.
* python3 everywhere
* more bash
* rebase
change perl
* Linux perl; missing from last PR
* fix doxygen_space
* Use portable /usr/bin/env/{perl,python} instead of /usr/bin/{perl,python}
* fix perl;add bash
* Fix indentation using modified scripts
* Revert "fix perl;add bash"
This reverts commit be8b9113c25f7c2fb9c8c9bad556fbca2f0c0ba2.
* python3 everywhere
* more bash
* rebase
change perl
* fix doxygen_space
		
	
			
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env perl
 | 
						|
###########################################################################
 | 
						|
#    unify_includes.pl
 | 
						|
#    ---------------------
 | 
						|
#    begin                : June 2015
 | 
						|
#    copyright            : (C) 2015 by Juergen E. Fischer
 | 
						|
#    email                : jef at norbit dot de
 | 
						|
#
 | 
						|
###########################################################################
 | 
						|
#                                                                         #
 | 
						|
#   This program is free software; you can redistribute it and/or modify  #
 | 
						|
#   it under the terms of the GNU General Public License as published by  #
 | 
						|
#   the Free Software Foundation; either version 2 of the License, or     #
 | 
						|
#   (at your option) any later version.                                   #
 | 
						|
#                                                                         #
 | 
						|
###########################################################################
 | 
						|
 | 
						|
# adapted from scripts/sort_includes.sh
 | 
						|
 | 
						|
use strict;
 | 
						|
use warnings;
 | 
						|
 | 
						|
our %inc;
 | 
						|
our @inc;
 | 
						|
 | 
						|
END { die "header files not empty" if @inc; }
 | 
						|
 | 
						|
# Also fix doxygen comments
 | 
						|
s#^(\s*)/\*[*!]\s*([^\s*].*)\s*$#$1/** \u$2\n#;
 | 
						|
 | 
						|
# Convert single line doxygen blocks:
 | 
						|
#  /*!< comment */   to   //!< comment
 | 
						|
#  /** comment */    to   //! comment
 | 
						|
s#\/\*[!\*](?!\*)(<*)\h*(.*?)\h*\*\/\h*$#//!$1 $2#;
 | 
						|
 | 
						|
# Uppercase initial character in //!< comment
 | 
						|
s#\/\/!<\s*(.)(.*)#//!< \u$1$2#;
 | 
						|
 | 
						|
# Ensure that pointer members are always initialized to nullptr
 | 
						|
# We don't run this check by default, there's a high likelihood of false positives...
 | 
						|
# s#^(\s*(?!typedef|return|delete)(?:\s*(?:const)\s*)?[a-zA-Z0-9_:]+\s*\*+\s*[a-zA-Z0-9_]+)\s*;\s*$#$1 = nullptr;\n#;
 | 
						|
 | 
						|
if( /^\s*#include/ ) {
 | 
						|
	push @inc, $_ unless exists $inc{$_};
 | 
						|
	$inc{$_}=1;
 | 
						|
	next unless eof;
 | 
						|
}
 | 
						|
 | 
						|
if( %inc ) {
 | 
						|
	print foreach @inc;
 | 
						|
	undef %inc;
 | 
						|
	undef @inc;
 | 
						|
	last if eof;
 | 
						|
}
 | 
						|
 | 
						|
print;
 |