On Tuesday 30 March 2010 17:45:16 David Greene wrote:> On Tuesday 30 March 2010 16:09:03 Tanya Lattner wrote: > > Please take a look at all release blockers: > > http://llvm.org/bugs/show_bug.cgi?id=6586 > > 5893 is not release-critical according to Doug. > > 6640 appears to be a test system problem with a patch available (one of the > ones you're working on?) > > Which bugs do you have patches for? I don't want to start looking at > something if it's already being fixed.And I can't pull the 27 branch: % svn info . Path: . URL: http://llvm.org/svn/llvm-project/llvm/branches Repository Root: http://llvm.org/svn/llvm-project Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8 Revision: 99954 Node Kind: directory Schedule: normal Last Changed Author: dpatel Last Changed Rev: 99943 Last Changed Date: 2010-03-30 17:20:25 -0500 (Tue, 30 Mar 2010) % svn update release_27 svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default' svn: REPORT of '/svn/llvm-project/!svn/vcc/default': 403 Forbidden (http://llvm.org) I tried update -N release_27 (which worked), then cd release_27 && svn update but no luck. I apparently have no svn-fu. What's the magic incantation? -Dave
On Mar 30, 2010, at 4:04 PM, David Greene wrote:> On Tuesday 30 March 2010 17:45:16 David Greene wrote: >> On Tuesday 30 March 2010 16:09:03 Tanya Lattner wrote: >>> Please take a look at all release blockers: >>> http://llvm.org/bugs/show_bug.cgi?id=6586 >> >> 5893 is not release-critical according to Doug. >> >> 6640 appears to be a test system problem with a patch available (one of the >> ones you're working on?) >> >> Which bugs do you have patches for? I don't want to start looking at >> something if it's already being fixed. > > And I can't pull the 27 branch: > > % svn info . > Path: . > URL: http://llvm.org/svn/llvm-project/llvm/branches > Repository Root: http://llvm.org/svn/llvm-project > Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8 > Revision: 99954 > Node Kind: directory > Schedule: normal > Last Changed Author: dpatel > Last Changed Rev: 99943 > Last Changed Date: 2010-03-30 17:20:25 -0500 (Tue, 30 Mar 2010) > > % svn update release_27 > svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default' > svn: REPORT of '/svn/llvm-project/!svn/vcc/default': 403 Forbidden > (http://llvm.org) > > I tried update -N release_27 (which worked), then cd release_27 && svn update > but no luck. I apparently have no svn-fu. What's the magic incantation? >try just 'svn co http://llvm.org/svn/llvm-project/llvm/branches/release_27' You aren't allowed to check out all the branches, so thats probably why it gave you the 403. -Tanya
David Greene <dag at cray.com> writes:> And I can't pull the 27 branch:svn co http://llvm.org/svn/llvm-project/llvm/branches/release_27 svn up release_27 worked fine for me. [snip]
On Tuesday 30 March 2010 18:15:02 Tanya Lattner wrote:> > I tried update -N release_27 (which worked), then cd release_27 && svn > > update but no luck. I apparently have no svn-fu. What's the magic > > incantation? > > try just 'svn co http://llvm.org/svn/llvm-project/llvm/branches/release_27' > > You aren't allowed to check out all the branches, so thats probably why it > gave you the 403.Curious. When I do that in my existing directory I still get the 403, but a release_27 directory is created and if I cd release_27 && svn update, it works! Odd beast, this subversion. -Dave