<br>
<div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div class="im"><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">


<br>
I&#39;m actually not going to have any time to look at this for a couple<br>
weeks, so please edit away.<br>
<br>
Ok, i will. I&#39;m not very good at build building generally, and which steps certain pd sources need, but i&#39;ll experiment. I&#39;ll bug you if something fails and i really don&#39;t know why.<br>
<br>
<br>
<br>
<br>
I&#39;ll still be on email, so I can contribute here and there.  Yeah, I was also thinking that the libs wouldn&#39;t stop the whole build.<br>
<br>
.hc<br>
<br>
Could you help me with these?<br>
- What is the &quot;svn update&quot; meant to do after rsync? Right now it just fails...<br>
<br>
The rsync server is updated 2-3 times a day, the &quot;svn update&quot; is meant to get any more recent changes.  I fixed that so it should fail anymore.<br>
<br>
<br>
- Pdx &quot;make package&quot; fails on linux with &quot;dpkg-deb: control directory has bad permissions 700 (must be &gt;=0755 and &lt;=0775)&quot;, i suppose it&#39;s easy to come around this, but i guess from the Makefile...<br>


<br>
Yeah, this is annoying because builtbot sets the umask so that group and other get no permissions.  but to build a .deb package you need to have the files at least 0755 (user-rwx, group-rx, other-rx). I&#39;m not quite sure how to handle it.  My guess is that it would make sense to set the umask on the buildbot builds to have group/other read/execute perms.  I think that&#39;s umask 022.<br>


<br>
<br>
Seems that slaves can have their own umask set in /var/lib/buildbot/slavename/buildbot.tac<br>
Set 022 on my box, let&#39;s see if it helps.<br>
ps: cannot see because an older compile error came back: &quot;cannot find install-sh, install.sh, or shtool&quot;<br>
</blockquote>
<br></div>
Arg, yes, stupid mistake, should be fixed.</blockquote><div><br>and umask settings works, now it&#39;s set on all linux boxes (on macs it seems no problem)<br> </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<div class="im">
<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
- Git update fails with &quot;fatal: ambiguous argument &#39;14159&#39;: unknown revision or path not in the working tree. Use &#39;--&#39; to separate paths from revisions&quot;. Is it a buldbot bug (tries to use svn version for git?) or do you have another idea?<br>


<br>
<br>
Sounds like git and svn are fighting ;-) Sounds like the buildbot is running git with the SVN revision number: &quot;/usr/bin/git reset --hard 14165&quot;.  I guess that happens when a new SVN checkin triggers a git build.  I think we need to remove the SVN tracking for a PBChangeSources style.<br>


<br>
<br>
Done. buildbot 0.8.1 has GitPoller() so one day we may be able to set it up. Meanwhile we could take a look how this PBChangeSource() can be triggered from the sourceforge git. One way is contrib/git_buildbot.py, another a commit script calling &quot;buildbot sendchange&quot; and the last resort is parsing commit mails (&quot;post-receive-email&quot; for git) with a MaildirSource() which is to be written up. Knowing that GitPoller() already exists i&#39;d recommend the simplest solution but which one is that? :)<br>


<br>
Andras<br>
</blockquote>
<br></div>
The pollers are nice, but we can&#39;t use them because they assume that all builds are coming from that single git source.  If we want to setup multiple masters, then we could.  It sounds like the thing to do is investigate the PBChangeSource stuff to see if we can have the pure-data SVN and multiple git sources<br>


<br clear="all"></blockquote></div><br>Alrite, it&#39;s a whole new world for me... We have git sources, and it seems we&#39;ll continue having some svn sources, and is rsync a different source then?<br>They&#39;ll have to trigger the &quot;buildbot sendchange --plus lots of args&quot; command on any box that has buildbot installed.<br>

There  are some examples in /usr/share/buildbot/contrib/, but i think the first thing to figure out is how we gonna hook post-receive on each of these source. If we cannot hook (is it possible at all on sourceforge?) we&#39;ll have to use mails.<br>

<br>Andras<br>