public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* script to send changesets per mail
@ 2005-03-03 10:59 Martin Waitz
  2005-03-03 18:23 ` Jeff Garzik
  2005-03-13 11:31 ` Sam Ravnborg
  0 siblings, 2 replies; 4+ messages in thread
From: Martin Waitz @ 2005-03-03 10:59 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2730 bytes --]

hoi :)

I just tested my little script that can send changesets per mail.
okok, it still had a bug when I first tested it but that should be
fixed now.

If anyone is interested (perhaps for Documentation/BK-usage), here it
is:


#!/usr/bin/perl -w

# after sending an announcement (created by Documentation/BK-usage/bk-make-sum)
# just pipe your mail through this script.
# It will create one new mail per Changeset, properly threaded.

# Copyright © 2005 Martin Waitz <tali@admingilde.org>

use strict;

my $from;
my $to;
my $cc;
my $references;

# all local repositories are in ~/src/.
# you have to adjust this function if you keep them elsewhere.
sub local_repository($) {
	my $repo;
	
	$repo= shift;

	$repo =~ s,.*/,"$ENV{HOME}/src/",e;
	return $repo;
}

# this checks if we are allowed to send mails with this sender
# please modify the regexp to check for your adress!
sub check_from($) {
	my $from = shift;

	exit 1 unless $from =~ /insert-your-email-here/; #FIXME
}

# send one changeset.
# Parameters: the cset number, description prefix and the actual description.
sub send_cset($$$$) {
	my ($cset, $serial, $desc, $longdesc) = @_;

	open (MAIL, "| /usr/sbin/sendmail -t") or die "fork sendmail: $!";
	print MAIL "From: $from\n";
	print MAIL "To: $to\n";
	print MAIL "Cc: $cc\n" if $cc;
	print MAIL "References: $references\n" if $references;
	print MAIL "Subject: [PATCH $serial] $desc\n";
	print MAIL "\n";
	print MAIL "$desc\n";
	print MAIL "$longdesc\n";
	print MAIL "\n";
	print MAIL `bk export -tpatch -du -r $cset`;
	close (MAIL) or die "could not send mail: error code $?";
}



# Parse header
while (<>) {
	chomp;
	last if /^$/;

	if (/^From:\s+(.+)$/i) {
		$from = $1;
	} elsif (/^To:\s+(.+)$/i) {
		$to = $1;
	} elsif (/^Cc:\s+(.+)$/i) {
		$cc = $1;
	} elsif (/^Message-Id:\s+(.+)$/i) {
		$references = $1;
	}
}

my @cset;
my @desc;
my @longdesc;

# Parse body
my $cset;
while (<>) {
	chomp;
	if (/^\s+bk pull (\S+)$/) {
		chdir local_repository($1) ||
			die "could not find local repository for $1\n";
	} elsif (/^<\S+> \(\S+ ([\d.]+)\)$/) {
		# start of new ChangeSet
		$cset = $1;
	} elsif (/^   (.*)$/ && $cset) {
		# first line of a description
		unshift @cset, $cset;
		unshift @desc, $1;
		unshift @longdesc, "";
		$cset = "";
	} elsif (/^   (.*)$/) {
		# next lines of description
		$longdesc[0] .= "$1\n";
	}
}


check_from($from);


my $i;
my $count;
$count = scalar @cset;
foreach $i (1 .. $count) {
	print "$desc[$i-1]\n";
	send_cset($cset[$i-1], "$i/$count", $desc[$i-1], $longdesc[$i-1]);
	# let sendmail process the mail...
	sleep 3;
}
exit(0);



-- 
Martin Waitz

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <fa.f2usg94.a5sd8q@ifi.uio.no>]

end of thread, other threads:[~2005-03-14 23:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-03 10:59 script to send changesets per mail Martin Waitz
2005-03-03 18:23 ` Jeff Garzik
2005-03-13 11:31 ` Sam Ravnborg
     [not found] <fa.f2usg94.a5sd8q@ifi.uio.no>
     [not found] ` <fa.hdaug7i.n7qkqg@ifi.uio.no>
2005-03-14 23:22   ` Bodo Eggert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox