VMMaker commit messages?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

VMMaker commit messages?

Andreas.Raab
 
Hi -

Does anyone know how to turn on commit messages for VMMaker on
Squeaksource? I feel like really missing out without them :-) Since the
traffic should be fairly low volume I also don't see an issue with
overload of the mailing list but it would make for a real good companion
to the SVN commit logs.

Thanks!
   - Andreas
Reply | Threaded
Open this post in threaded view
|

Re: VMMaker commit messages?

Bert Freudenberg

On 31.03.2010, at 18:56, Andreas Raab wrote:
>
> Hi -
>
> Does anyone know how to turn on commit messages for VMMaker on Squeaksource? I feel like really missing out without them :-) Since the traffic should be fairly low volume I also don't see an issue with overload of the mailing list but it would make for a real good companion to the SVN commit logs.
>
> Thanks!
>  - Andreas

Dave is admin for the project, he should be able to enable them. He also is list admin, he needs to allow mails from squeaksource (not sure which sender address it uses).

- Bert -


Reply | Threaded
Open this post in threaded view
|

Re: VMMaker commit messages?

David T. Lewis
 
On Wed, Mar 31, 2010 at 07:06:58PM +0200, Bert Freudenberg wrote:

> On 31.03.2010, at 18:56, Andreas Raab wrote:
> >
> > Does anyone know how to turn on commit messages for VMMaker on
> > Squeaksource? I feel like really missing out without them :-) Since
> > the traffic should be fairly low volume I also don't see an issue with
> > overload of the mailing list but it would make for a real good companion
> > to the SVN commit logs.
>
> Dave is admin for the project, he should be able to enable them. He
> also is list admin, he needs to allow mails from squeaksource (not
> sure which sender address it uses).

I don't know the sender address from squeaksource, but I'll take a
wild guess that it might turn out to be "[hidden email]".

So based on that I set up SqS/VMMaker to send commit messages to
vm-dev, and added [hidden email] to the list. If I guessed
the sender address right, we should start seeing notifications on
vm-dev.

Does anyone know the correct sender address?

Dave
 
Reply | Threaded
Open this post in threaded view
|

Re: VMMaker commit messages?

Bert Freudenberg

On 31.03.2010, at 20:44, David T. Lewis wrote:

>
>
> On Wed, Mar 31, 2010 at 07:06:58PM +0200, Bert Freudenberg wrote:
>> On 31.03.2010, at 18:56, Andreas Raab wrote:
>>>
>>> Does anyone know how to turn on commit messages for VMMaker on
>>> Squeaksource? I feel like really missing out without them :-) Since
>>> the traffic should be fairly low volume I also don't see an issue with
>>> overload of the mailing list but it would make for a real good companion
>>> to the SVN commit logs.
>>
>> Dave is admin for the project, he should be able to enable them. He
>> also is list admin, he needs to allow mails from squeaksource (not
>> sure which sender address it uses).
>
> I don't know the sender address from squeaksource, but I'll take a
> wild guess that it might turn out to be "[hidden email]".
>
> So based on that I set up SqS/VMMaker to send commit messages to
> vm-dev, and added [hidden email] to the list. If I guessed
> the sender address right, we should start seeing notifications on
> vm-dev.
>
> Does anyone know the correct sender address?
>
> Dave
>

You could add your private address too so on the next commit you will know it.

- Bert -


Reply | Threaded
Open this post in threaded view
|

Re: VMMaker commit messages?

Ian Piumarta
In reply to this post by David T. Lewis
 
Dave,

On Mar 31, 2010, at 11:44 AM, David T. Lewis wrote:

> I don't know the sender address from squeaksource

You configure it in <path-to-repo>/hooks/post-commit to be whatever  
you want.  For example:

#!/bin/sh

# POST-COMMIT HOOK

REPOS="$1"
REV="$2"

/usr/share/subversion/hook-scripts/commit-email.pl "$REPOS" "$REV" [hidden email]
  --from [hidden email] -s '[commit]' --summary

exit 0

(To allow posting of the above I just subscribed [hidden email]  
to the list & directed its incoming traffic to /dev/null.)

HTH.

Cheers,
Ian

Reply | Threaded
Open this post in threaded view
|

Re: VMMaker commit messages?

David T. Lewis
 
On Wed, Mar 31, 2010 at 12:33:13PM -0700, Ian Piumarta wrote:

> Dave,
>
> On Mar 31, 2010, at 11:44 AM, David T. Lewis wrote:
>
> >I don't know the sender address from squeaksource
>
> You configure it in <path-to-repo>/hooks/post-commit to be whatever  
> you want.  For example:
>
> #!/bin/sh
>
> # POST-COMMIT HOOK
>
> REPOS="$1"
> REV="$2"
>
> /usr/share/subversion/hook-scripts/commit-email.pl "$REPOS" "$REV"
> [hidden email] --from [hidden email] -s
>  '[commit]' --summary
>
> exit 0
>
> (To allow posting of the above I just subscribed [hidden email]  
> to the list & directed its incoming traffic to /dev/null.)

Ian,

Thanks, yes this helps. I think I may have it set up right (except for
the part about directing incoming traffic to /dev/null, I'll check
that). I'll wait for the next Monticello update on SqS/VMMaker and
see if anything arives on the list.

Thanks,
Dave