#! /usr/bin/perl -w # # $FreeBSD$ # # This hack is to sanitise the results of what the user may have # "done" while editing the commit log message.. :-) Peter Wemm. # # Note: this uses an enhancement to cvs's verifymsg functionality. # Normally, the check is advisory only, the FreeBSD version reads # back the file after the verifymsg file so that this script can # make changes. # use strict; use lib $ENV{CVSROOT}; use CVSROOT::cfg; ############################################################# # # Main Body # ############################################################ my $filename = shift; die "Usage: logcheck filename\n" unless $filename; # Read the log file in, stripping 'CVS:' lines and removing trailing # white spaces. open IN, "< $filename" or die "logcheck: Cannot open for reading: $filename: $!\n"; my @log_in = map { s/^(.*?)\s*$/$1/; $1 } grep { !/^CVS:/ } ; close IN; # Remove duplicate blank lines. my $i = 0; while ($i < scalar(@log_in) - 1) { if ($log_in[$i] eq "" && $log_in[$i + 1] eq "") { splice(@log_in, $i, 1); next; } ++$i; } # Remove leading and trailing blank lines. (There will be at most # one because of the duplicate removal above). shift @log_in if $log_in[0] eq ""; pop @log_in if $log_in[-1] eq ""; # Scan through the commit message looking for templated headers # as defined in the configuration file, and rcstemplate. # Assume that these only exist in the last paragraph. # Filter out blank entries, and type check if necessary. my $j = $#log_in; # The index of the last entry in the commit msg. my $error = 0; while ($j >= 0) { my $logline = $log_in[$j]; --$j; # Hitting a blank line means that we've seen all of the last paragraph. last if $logline eq ""; unless ($logline =~ /^(.*?):\s*(.*)$/) { ### XXX # We're here because we saw a line that didn't match # a template header (no ':'). This could be a continuation # line from the previous header, or the log message proper. # We don't know, so run the risk of checking the last paragraph # of the log message for headers. next; } my $header = $1; my $value = $2; my $pattern = $cfg::TEMPLATE_HEADERS{$header}; # Ignore unrecognised headers. unless (defined($pattern)) { ### print "Warning: unknown template header: $header\n"; next; } # Filter out the template header if it's blank. if ($value eq "") { splice(@log_in, $j + 1, 1); next; } # Type check the header unless ($value =~ /^$pattern$/) { print "Error: $header: should match '$pattern'.\n"; ++$error; next; } } # Make sure that there is some content in the log message. # XXX Note that logcheck isn't evoked if the log message is # completely empty. This is a bug in cvs. my $log = "@log_in"; die "Log message contains no content!\n" if $log =~ /^\s*$/; # Write the modified log file back out. my $tmpfile = $filename . "tmp"; open OUT, "> $tmpfile" or die "logcheck: Cannot open for writing: $tmpfile: $!\n"; print OUT map { "$_\n" } @log_in; close OUT; # Stop the commit if there was a problem with the template headers. if ($error) { print "There were $error errors in the template headers.\n"; print "Please fix the log message and commit again.\n"; print "A copy of your log message was saved in $tmpfile.\n"; exit 1; } # Nuke likely editor backups. unlink "$filename.~"; unlink "$filename.bak"; # Overwrite the log message with our sanitised one. (See the comment # block at the top of this script for an explaination of why.) rename($tmpfile, $filename) or die "logcheck: Could not rename $tmpfile to $filename: $!"; exit 0; rn/devel/electron6/files/lodash.merge-4.6.2'>dependabot/npm_and_yarn/devel/electron6/files/lodash.merge-4.6.2 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits/p5-Gtk2-TrayIcon
Commit message (Expand)AuthorAgeFilesLines
* Fix every instance of RUN_DEPENDS:=${BUILD_DEPENDS} in p5 ports, exceptdes2018-10-061-2/+2
* Update WWWsunpoet2018-05-281-1/+1
* Remove libintl.so.9 compatibility link that was added in r374303 totijl2016-12-091-1/+1
* - Fix trailing whitespace in pkg-descrs, categories [p-x]*amdmi32016-05-191-1/+1
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.mat2016-04-011-4/+4
* Change the way Perl modules are installed, update the default Perl to 5.18.mat2014-11-262-12/+6
* Remove all the bootstrap files (.bs) from the plists.mat2014-06-101-1/+0
* - support STAGEDIRaz2013-11-032-3/+1
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-1/+1
* - Convert to new perl frameworkmat2013-08-031-6/+3
* - Fix INDEXaz2012-06-041-1/+1
* - Remove SITE_PERL from *_DEPENDSaz2012-06-041-4/+4
* - update png to 1.5.10dinoex2012-06-011-1/+1
* At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450eadler2012-01-221-1/+1
* - Change PERL_CONFIGURE to "yes" for all values less than or equal to 5.8.0+sunpoet2011-09-171-1/+1