diff options
author | Chris Rees <crees@FreeBSD.org> | 2012-09-01 02:40:40 +0800 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2012-09-01 02:40:40 +0800 |
commit | 800b5d1d408f880192e5a28f00fe83d83af32479 (patch) | |
tree | 52b750cfa6f54d57a37e329a7597969cad4cf6eb /Tools | |
parent | aef06eda7d3950bd25bdd3edf8938d7d42c4808c (diff) | |
download | freebsd-ports-gnome-800b5d1d408f880192e5a28f00fe83d83af32479.tar.gz freebsd-ports-gnome-800b5d1d408f880192e5a28f00fe83d83af32479.tar.zst freebsd-ports-gnome-800b5d1d408f880192e5a28f00fe83d83af32479.zip |
Now that the headers have been removed, we no longer get the Whom line from
which to acquire the Submitted by: line.
It should be reasonable to simply use the MAINTAINER line; unfortunately we
lose the real name and only get the email address.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/addport | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport index 0ef5527e1988..07193a2c7b5b 100755 --- a/Tools/scripts/addport +++ b/Tools/scripts/addport @@ -106,7 +106,7 @@ my $rm = "rm"; my $keyword = '\$FreeBSD\\\$'; # vars required for commitfile my $descr; my $portversion; my $pkgcomment; -my $tmp; my $pkgcommentlen; my $comment; my $orig; +my $tmp; my $pkgcommentlen; my $comment; my $maintainer; my $tmp2; my $offset; my $commitfile = ""; my $moved = ""; $tmp = $tmp2 = $offset = 0; @@ -271,7 +271,7 @@ foreach my $thisdir (@dirs) { open(MAKEFILE, "Makefile") or die("Can't open Makefile for reading: $!"); while(<MAKEFILE>) { chomp; - ($orig) = (m/^# Whom:\s+(\w.*)$/) if (/^# Whom:/); + ($maintainer) = (m/^MAINTAINER=\s+(\w.*)$/) if (/^MAINTAINER=/); ($portversion) = (m/^PORTVERSION=\s+(\w.*)$/) if (/^PORTVERSION=/); } close(MAKEFILE); @@ -293,7 +293,7 @@ foreach my $thisdir (@dirs) { } print AUTOFILL $tmp; print AUTOFILL "PR: ports/$autofill\n" if ($autofill != -1); - print AUTOFILL "Submitted by: $orig" if ($autofill != -1); + print AUTOFILL "Submitted by: $maintainer" if ($autofill != -1); close(AUTOFILL); print "Okay, a commit log message was automatically generated for you.\n"; print "Now you will have a chance to edit it to make sure it's OK to use.\n"; |