diff options
author | crees <crees@FreeBSD.org> | 2012-09-01 02:40:40 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2012-09-01 02:40:40 +0800 |
commit | e037bf388fa502273edd55c327d448e455fe067d (patch) | |
tree | 52b750cfa6f54d57a37e329a7597969cad4cf6eb /Tools | |
parent | fb6f94feea16f40a52620f7e76b22095fe18be35 (diff) | |
download | freebsd-ports-gnome-e037bf388fa502273edd55c327d448e455fe067d.tar.gz freebsd-ports-gnome-e037bf388fa502273edd55c327d448e455fe067d.tar.zst freebsd-ports-gnome-e037bf388fa502273edd55c327d448e455fe067d.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"; |