summaryrefslogtreecommitdiff
path: root/mu-aux/gencl
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2017-04-04 12:25:40 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2017-04-04 12:25:40 +0300
commit7c939cbc9b2c68f50cbb4b7103f483180a93982d (patch)
treeb52998a54cfeb111c947126ac54c8aec7ff2b245 /mu-aux/gencl
parent7ed1178111e1a266b8a14ca806f7bcf84f8caf70 (diff)
downloadmailutils-7c939cbc9b2c68f50cbb4b7103f483180a93982d.tar.gz
mailutils-7c939cbc9b2c68f50cbb4b7103f483180a93982d.tar.bz2
Another improvement in gencl
* mu-aux/gencl: New option --email. * Makefile.am: Simplify the ChangeLog command. Use the --email option.
Diffstat (limited to 'mu-aux/gencl')
-rwxr-xr-xmu-aux/gencl45
1 files changed, 42 insertions, 3 deletions
diff --git a/mu-aux/gencl b/mu-aux/gencl
index 82ebcce68..6e7ca5844 100755
--- a/mu-aux/gencl
+++ b/mu-aux/gencl
@@ -25,6 +25,7 @@ my $amend_file;
my %amendment;
my $append_dot;
my $ignore_errors;
+my $email;
my $exit_status = 0;
@@ -37,10 +38,12 @@ gencl - generate ChangeLog from git log output
B<gencl>
[B<-fiv>]
[B<-a> I<FILE>]
+[B<-m> I<EMAIL>]
[B<-F> I<FILE>]
[B<--amend=>I<FILE>]
[B<--append-dot>]
[B<--append=>I<FILE>]
+[B<--email=>I<EMAIL>]
[B<--file=>I<FILE>]
[B<--force>]
[B<--ignore-errors>]
@@ -86,7 +89,13 @@ Append I<FILE> to the end of the generated file. Multiple B<--append>
are processed in the order of their occurrence on the command line.
The content of I<FILE> is appended verbatim, except that the line beginning
with the text B<Local Variables:> is taken to mark the end of file.
-
+
+=item B<-m>, B<--email=>I<EMAIL>
+
+Sets email address to use in the topmost automatically generated entry.
+In the absense of this option, B<gencl> constructs the email from the
+current user name and the domain (or host) name.
+
=item B<-F>, B<--file=>I<FILE>
Create I<FILE> instead of the B<ChangeLog>.
@@ -225,13 +234,40 @@ GetOptions(
'strip-cherry-pick' => \$strip_cherry_pick,
'amend=s' => \$amend_file,
'append-dot' => \$append_dot,
- 'ignore-errors|i' => \$ignore_errors
+ 'ignore-errors|i' => \$ignore_errors,
+ 'email|m=s' => \$email
) or exit(1);
if (! -d '.git') {
exit 0;
}
+unless (defined($email)) {
+ if (exists($ENV{EMAIL})) {
+ $email = $ENV{EMAIL};
+ } else {
+ my ($user, $domain);
+ if (exists($ENV{USER})) {
+ $user = $ENV{USER};
+ } elsif (my ($name) = getpwuid(getuid())) {
+ $user = $name;
+ } else {
+ die "can't get user name";
+ }
+
+ if (chomp($domain = `domainname`) && $domain ne "(none)") {
+ ;
+ } elsif (exists($ENV{HOSTNAME})) {
+ $domain = $ENV{HOSTNAME};
+ } elsif ($domain = `hostname`) {
+ chomp $domain;
+ } else {
+ $domain = 'localhost';
+ }
+ $email = $user . '@' . $domain;
+ }
+}
+
read_amend_file($amend_file) if $amend_file;
$Text::Wrap::columns = 72;
@@ -258,7 +294,7 @@ sub toplevel_entry {
my @header;
- push @header, "$date Automatically generated <bug-mailutils\@gnu.org>";
+ push @header, "$date Automatically generated <$email>";
push @header, '';
push @header, "\tHEAD $hash.";
push @header, '';
@@ -289,6 +325,9 @@ sub toplevel_entry {
sub headcmp {
my $file = shift;
if (open(my $fd, '<', $changelog_file)) {
+ # Skip first line
+ $_ = <$fd>;
+ shift;
while (<$fd>) {
my $line = shift;
last unless defined($line);

Return to:

Send suggestions and report system problems to the System administrator.