[OE-core] [PATCH 8/8] scripts/send-pull-request: Add CC selectively

Khem Raj raj.khem at gmail.com
Sat May 7 17:57:09 UTC 2011


On Sat, May 7, 2011 at 9:23 AM, Darren Hart <dvhart at linux.intel.com> wrote:
> On Sat, 2011-05-07 at 00:54 -0700, Khem Raj wrote:
>> Currently a consolidated pull request adds all the participants
>> to every patch, which in essence is good but might lose focus
>> of developers who would be interested to know about the patch
>> that developer contributed to. This patch fixes the script by
>> extracting the to and cc information from each patch one by one
>> and add it to patch mail header instead of doing a sweeping one
>> pass over all patches to collect all email addresses. It should
>> reduce some email traffic for developers.
>
> This behavior was intentional. If you don't want the CC applied to the
> entire series, you can just use git-send-email as this is its behavior.

imho git request-pull would have been sufficient for us along with git
send-mail to post all patches for review
and get acks and sign-offs then the they all can be collected using
patchwork or whatever way one likes and
then git pull-request can be sent

Right now one one sends a pull requests and publishes the tree for
pull then feedback is given and one does another round and
repulishes the tree. So having all patches sent for review using git
send-mail and then form pull-requests once they are approved
would be a way to go


> In particular, it doesn't apply any of the addresses from the patches to
> the cover letter, which was my primary objection.

yes once I did this I was sort of thinking that it would be
appropriate to CC all concerned on cover letter
Should be doable.

>
> If you would like to modify this patch to apply the entire CC list to
> the cover letter, then I think you'll have addressed both of our
> concerns and I'll add my Acked-by. As it is, please do not accept this
> patch. I will nack it for poky and we don't want the two to diverge.
>
> Please include the primary author/maintainer of sources/recipes/etc. on
> CC.

I guess this should be automated somehow too.

>
> Thanks,
>
> --
> Darren Hart
> Intel Open Source Technology Center
> Yocto Project - Linux Kernel
>
>>
>> Signed-off-by: Khem Raj <raj.khem at gmail.com>
>> ---
>>  scripts/send-pull-request |   51 +++++++++++++++++++++++++-------------------
>>  1 files changed, 29 insertions(+), 22 deletions(-)
>>
>> diff --git a/scripts/send-pull-request b/scripts/send-pull-request
>> index 3af2a9f..36a89f4 100755
>> --- a/scripts/send-pull-request
>> +++ b/scripts/send-pull-request
>> @@ -29,24 +29,38 @@ EOM
>>  # Collect To and CC addresses from the patch files if they exist
>>  # $1: Which header to add the recipients to, "TO" or "CC"
>>  # $2: The regex to match and strip from the line with email addresses
>> +# $3: The patch which we are preparing to send
>>  harvest_recipients()
>>  {
>>      TO_CC=$1
>>      REGX=$2
>> +    PATCH=$3
>>      export IFS=$',\n'
>> -    for PATCH in $PDIR/*.patch; do
>> -        # Grab To addresses
>> -        for EMAIL in $(sed '/^---$/q' $PATCH | grep -e "$REGX" | sed "s/$REGX//"); do
>> -            if [ "$TO_CC" == "TO" ] && [ "${TO/$EMAIL/}" == "$TO" ] && [ -n "$EMAIL" ]; then
>> -                if [ -z "$TO" ]; then TO=$EMAIL; else TO="$TO,$EMAIL"; fi
>> -            elif [ "$TO_CC" == "CC" ] && [ "${CC/$EMAIL/}" == "$CC" ] && [ -n "$EMAIL" ]; then
>> -                if [ -z "$CC" ]; then CC=$EMAIL; else CC="$CC,$EMAIL"; fi
>> -            fi
>> -        done
>> +    # Grab To addresses
>> +    for EMAIL in $(sed '/^---$/q' $PATCH | grep -e "$REGX" | sed "s/$REGX//"); do
>> +        if [ "$TO_CC" == "TO" ] && [ "${TO/$EMAIL/}" == "$TO" ] && [ -n "$EMAIL" ]; then
>> +           if [ -z "$TO" ]; then TO=$EMAIL; else TO="$TO,$EMAIL"; fi
>> +        elif [ "$TO_CC" == "CC" ] && [ "${CC/$EMAIL/}" == "$CC" ] && [ -n "$EMAIL" ]; then
>> +           if [ -z "$CC" ]; then CC=$EMAIL; else CC="$CC,$EMAIL"; fi
>> +        fi
>>      done
>>      unset IFS
>>  }
>>
>> +# $1: The given patch
>> +create_recipient_lists()
>> +{
>> +    THEPATCH=$1
>> +    # Harvest emails from the generated patch and populate the TO and CC variables
>> +    # In addition to To and CC headers/lines, the common Signed-off-by, Tested-by,
>> +    # etc. (*-by) will be added to CC.
>> +    if [ $AUTO -eq 1 ]; then
>> +        harvest_recipients TO "^[Tt][Oo]: *" $THEPATCH
>> +        harvest_recipients CC "^[Cc][Cc]: *" $THEPATCH
>> +        harvest_recipients CC "^.*-[Bb][Yy]: *" $THEPATCH
>> +    fi
>> +}
>> +
>>
>>  # Parse and verify arguments
>>  while getopts "af:ghp:t:" OPT; do
>> @@ -100,15 +114,6 @@ for TOKEN in SUBJECT BLURB; do
>>  done
>>
>>
>> -# Harvest emails from the generated patches and populate the TO and CC variables
>> -# In addition to To and CC headers/lines, the common Signed-off-by, Tested-by,
>> -# etc. (*-by) will be added to CC.
>> -if [ $AUTO -eq 1 ]; then
>> -    harvest_recipients TO "^[Tt][Oo]: *"
>> -    harvest_recipients CC "^[Cc][Cc]: *"
>> -    harvest_recipients CC "^.*-[Bb][Yy]: *"
>> -fi
>> -
>>  case "$PULL_MTA" in
>>      git)
>>          FROM="$(git config sendemail.from)"
>> @@ -158,11 +163,12 @@ if [ "$cont" == "y" ] || [ "$cont" == "Y" ]; then
>>      ERROR=0
>>      case "$PULL_MTA" in
>>          git)
>> -            export IFS=$','
>> -            GIT_TO=$(for R in $TO; do echo -n "--to='$R' "; done)
>> -            GIT_CC=$(for R in $CC; do echo -n "--cc='$R' "; done)
>> -            unset IFS
>>              for PATCH in $PDIR/*patch; do
>> +                create_recipient_lists $PATCH
>> +                export IFS=$','
>> +                GIT_TO=$(for R in $TO; do echo -n "--to='$R' "; done)
>> +                GIT_CC=$(for R in $CC; do echo -n "--cc='$R' "; done)
>> +                unset IFS
>>                  # We harvest the emails manually, so force git not to.
>>                  eval "git send-email $GIT_TO $GIT_CC --no-chain-reply-to --suppress-cc=all $PATCH"
>>                  if [ $? -eq 1 ]; then
>> @@ -172,6 +178,7 @@ if [ "$cont" == "y" ] || [ "$cont" == "Y" ]; then
>>              ;;
>>          sendmail)
>>              for PATCH in $PDIR/*patch; do
>> +                create_recipient_lists $PATCH
>>                  # Insert To and CC headers via formail to keep them separate and
>>                  # appending them to the sendmail command as -- $TO $CC has
>>                  # proven to be an exercise in futility.
>
> --
> Darren Hart
> Yocto Linux Kernel
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core at lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>




More information about the Openembedded-core mailing list