|
|
Alan Gates 2010-10-05, 23:22
As part of our move to a TLP we need to move our code base out of svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/asf/ pig/
I plan to do this move tomorrow. It should not affect any of your outstanding checkouts (including ones where you have made changes), as there is a simple SVN command that will change your checkout to be based on the new repository. Once I do this all checkouts will need to happen from the new repo.
I'll send another message once it's done which will include info on how to update your existing checkouts.
Alan.
+
Alan Gates 2010-10-05, 23:22
Russell Jurney 2010-10-06, 06:29
Just curious - are apache projects allowed to use git as the 'repo of record' ?
Russ
On Tuesday, October 5, 2010, Alan Gates <[EMAIL PROTECTED]> wrote: > As part of our move to a TLP we need to move our code base out of svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/asf/pig/ > > I plan to do this move tomorrow. It should not affect any of your outstanding checkouts (including ones where you have made changes), as there is a simple SVN command that will change your checkout to be based on the new repository. Once I do this all checkouts will need to happen from the new repo. > > I'll send another message once it's done which will include info on how to update your existing checkouts. > > Alan. >
+
Russell Jurney 2010-10-06, 06:29
Alan Gates 2010-10-06, 13:40
I don't think so, but I'll check and find out.
Alan.
On Oct 5, 2010, at 11:29 PM, Russell Jurney wrote:
> Just curious - are apache projects allowed to use git as the 'repo > of record' ? > > Russ > > On Tuesday, October 5, 2010, Alan Gates <[EMAIL PROTECTED]> wrote: >> As part of our move to a TLP we need to move our code base out of >> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ >> asf/pig/ >> >> I plan to do this move tomorrow. It should not affect any of your >> outstanding checkouts (including ones where you have made changes), >> as there is a simple SVN command that will change your checkout to >> be based on the new repository. Once I do this all checkouts will >> need to happen from the new repo. >> >> I'll send another message once it's done which will include info on >> how to update your existing checkouts. >> >> Alan. >>
+
Alan Gates 2010-10-06, 13:40
Alan Gates 2010-10-06, 14:14
The answer is no, SVN has to be the official repo. The git repository Apache maintains is a read only replica. However, they have set it up so that you can use git entirely to checkout, make changes, and generate patches. See http://git.apache.org/, http://www.apache.org/dev/git.html , and http://wiki.apache.org/general/GitAtApache. So if you prefer git you should be able to forget the official repository is in SVN and just live in the git world. Alan. On Oct 6, 2010, at 6:40 AM, Alan Gates wrote: > I don't think so, but I'll check and find out. > > Alan. > > On Oct 5, 2010, at 11:29 PM, Russell Jurney wrote: > >> Just curious - are apache projects allowed to use git as the 'repo >> of record' ? >> >> Russ >> >> On Tuesday, October 5, 2010, Alan Gates <[EMAIL PROTECTED]> wrote: >>> As part of our move to a TLP we need to move our code base out of >>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ >>> asf/pig/ >>> >>> I plan to do this move tomorrow. It should not affect any of your >>> outstanding checkouts (including ones where you have made changes), >>> as there is a simple SVN command that will change your checkout to >>> be based on the new repository. Once I do this all checkouts will >>> need to happen from the new repo. >>> >>> I'll send another message once it's done which will include info on >>> how to update your existing checkouts. >>> >>> Alan. >>> >
+
Alan Gates 2010-10-06, 14:14
Ashutosh Chauhan 2010-10-06, 15:14
A read only replica only gives half the benefit of DVCS. Consider a scenario where developer is working on a relatively large feature (like load-restore redesign, new logical plan, turing complete, new parser etc.) There are three possible routes here: 1) As in case of load-restore redesign, create a new branch in svn, keep manually merging with trunk and then recommend to any one wanting to use that feature to use that branch instead of mainline. 2) In case of new logical plan, create a new package hierarchy and then start committing there. For the lifetime of development of feature, it will be in "partially committed" state on mainline. 3) To keep working in a private local copy and then generate a MB worth of patch. Obviously, all three are far from perfect solution and thats where a DVCS like git is useful. In such scenarios with git developer can fork the mainline, work on the fork for lifetime of the feature can merge with mainline with ease and when feature completes can offer his fork to be merged back into mainline. This eases life of both feature developer as well as committer who is working with developer to get it committed. All this praise of git may still not buy much :) as I believe getting full git support from Apache Infra is non-trivial effort. Ashutosh On Wed, Oct 6, 2010 at 07:14, Alan Gates <[EMAIL PROTECTED]> wrote: > The answer is no, SVN has to be the official repo. The git repository > Apache maintains is a read only replica. However, they have set it up so > that you can use git entirely to checkout, make changes, and generate > patches. See http://git.apache.org/, http://www.apache.org/dev/git.html, > and http://wiki.apache.org/general/GitAtApache. So if you prefer git you > should be able to forget the official repository is in SVN and just live in > the git world. > > Alan. > > On Oct 6, 2010, at 6:40 AM, Alan Gates wrote: > >> I don't think so, but I'll check and find out. >> >> Alan. >> >> On Oct 5, 2010, at 11:29 PM, Russell Jurney wrote: >> >>> Just curious - are apache projects allowed to use git as the 'repo >>> of record' ? >>> >>> Russ >>> >>> On Tuesday, October 5, 2010, Alan Gates <[EMAIL PROTECTED]> wrote: >>>> >>>> As part of our move to a TLP we need to move our code base out of >>>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ >>>> asf/pig/ >>>> >>>> I plan to do this move tomorrow. It should not affect any of your >>>> outstanding checkouts (including ones where you have made changes), >>>> as there is a simple SVN command that will change your checkout to >>>> be based on the new repository. Once I do this all checkouts will >>>> need to happen from the new repo. >>>> >>>> I'll send another message once it's done which will include info on >>>> how to update your existing checkouts. >>>> >>>> Alan. >>>> >> > >
+
Ashutosh Chauhan 2010-10-06, 15:14
Alan Gates 2010-10-06, 19:52
I'm starting the move now. You should hold off on any checkins until its done, as you may not know where to check it in. :)
Alan.
On Oct 5, 2010, at 4:22 PM, Alan Gates wrote:
> As part of our move to a TLP we need to move our code base out of > svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ > asf/ > pig/ > > I plan to do this move tomorrow. It should not affect any of your > outstanding checkouts (including ones where you have made changes), as > there is a simple SVN command that will change your checkout to be > based on the new repository. Once I do this all checkouts will need > to happen from the new repo. > > I'll send another message once it's done which will include info on > how to update your existing checkouts. > > Alan.
+
Alan Gates 2010-10-06, 19:52
Alan Gates 2010-10-06, 20:24
The move is finished. If you have outstanding checkouts (including ones with changes) you can update them using svn switch: svn switch https://svn.apache.org/repos/asf/pig/trunkThe above assumes you have trunk checked out. If you have site, branches, or tags checked out change the above URL accordingly. And remember, from this point forward checkouts will need to come from https://svn.apache.org/repos/asf/pig/ and not https://svn.apache.org/repos/asf/hadoop/pig/Alan. On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: > I'm starting the move now. You should hold off on any checkins until > its done, as you may not know where to check it in. :) > > Alan. > > On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: > >> As part of our move to a TLP we need to move our code base out of >> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ >> asf/ >> pig/ >> >> I plan to do this move tomorrow. It should not affect any of your >> outstanding checkouts (including ones where you have made changes), >> as >> there is a simple SVN command that will change your checkout to be >> based on the new repository. Once I do this all checkouts will need >> to happen from the new repo. >> >> I'll send another message once it's done which will include info on >> how to update your existing checkouts. >> >> Alan. >
+
Alan Gates 2010-10-06, 20:24
Thejas M Nair 2010-10-07, 00:16
Replace https with http in the commands below if your repository is checked out using http. (sending this because it took me a few minutes to figure out why the command didn't work for me) -Thejas On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: > The move is finished. If you have outstanding checkouts (including > ones with changes) you can update them using svn switch: > > svn switch https://svn.apache.org/repos/asf/pig/trunk> > The above assumes you have trunk checked out. If you have site, > branches, or tags checked out change the above URL accordingly. > > And remember, from this point forward checkouts will need to come from > https://svn.apache.org/repos/asf/pig/> and not https://svn.apache.org/repos/asf/hadoop/pig/> > Alan. > > On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: > >> I'm starting the move now. You should hold off on any checkins until >> its done, as you may not know where to check it in. :) >> >> Alan. >> >> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: >> >>> As part of our move to a TLP we need to move our code base out of >>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ >>> asf/ >>> pig/ >>> >>> I plan to do this move tomorrow. It should not affect any of your >>> outstanding checkouts (including ones where you have made changes), >>> as >>> there is a simple SVN command that will change your checkout to be >>> based on the new repository. Once I do this all checkouts will need >>> to happen from the new repo. >>> >>> I'll send another message once it's done which will include info on >>> how to update your existing checkouts. >>> >>> Alan. >> > >
+
Thejas M Nair 2010-10-07, 00:16
Jeff Zhang 2010-10-07, 01:17
Alan, The official site's svn address has not been updated. http://hadoop.apache.org/pig/version_control.htmlOn Thu, Oct 7, 2010 at 8:16 AM, Thejas M Nair <[EMAIL PROTECTED]> wrote: > Replace https with http in the commands below if your repository is checked > out using http. (sending this because it took me a few minutes to figure out > why the command didn't work for me) > > -Thejas > > > > > On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: > >> The move is finished. If you have outstanding checkouts (including >> ones with changes) you can update them using svn switch: >> >> svn switch https://svn.apache.org/repos/asf/pig/trunk>> >> The above assumes you have trunk checked out. If you have site, >> branches, or tags checked out change the above URL accordingly. >> >> And remember, from this point forward checkouts will need to come from >> https://svn.apache.org/repos/asf/pig/>> and not https://svn.apache.org/repos/asf/hadoop/pig/>> >> Alan. >> >> On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: >> >>> I'm starting the move now. You should hold off on any checkins until >>> its done, as you may not know where to check it in. :) >>> >>> Alan. >>> >>> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: >>> >>>> As part of our move to a TLP we need to move our code base out of >>>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ >>>> asf/ >>>> pig/ >>>> >>>> I plan to do this move tomorrow. It should not affect any of your >>>> outstanding checkouts (including ones where you have made changes), >>>> as >>>> there is a simple SVN command that will change your checkout to be >>>> based on the new repository. Once I do this all checkouts will need >>>> to happen from the new repo. >>>> >>>> I'll send another message once it's done which will include info on >>>> how to update your existing checkouts. >>>> >>>> Alan. >>> >> >> > > > -- Best Regards Jeff Zhang
+
Jeff Zhang 2010-10-07, 01:17
Alan Gates 2010-10-07, 16:10
It has been on the new pig.apache.org site. I haven't gotten the old site updated yet. I hope to get to it today. Alan. On Oct 6, 2010, at 6:17 PM, Jeff Zhang wrote: > Alan, > > The official site's svn address has not been updated. > > http://hadoop.apache.org/pig/version_control.html> > > > On Thu, Oct 7, 2010 at 8:16 AM, Thejas M Nair <[EMAIL PROTECTED]> > wrote: >> Replace https with http in the commands below if your repository is >> checked >> out using http. (sending this because it took me a few minutes to >> figure out >> why the command didn't work for me) >> >> -Thejas >> >> >> >> >> On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: >> >>> The move is finished. If you have outstanding checkouts (including >>> ones with changes) you can update them using svn switch: >>> >>> svn switch https://svn.apache.org/repos/asf/pig/trunk>>> >>> The above assumes you have trunk checked out. If you have site, >>> branches, or tags checked out change the above URL accordingly. >>> >>> And remember, from this point forward checkouts will need to come >>> from >>> https://svn.apache.org/repos/asf/pig/>>> and not https://svn.apache.org/repos/asf/hadoop/pig/>>> >>> Alan. >>> >>> On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: >>> >>>> I'm starting the move now. You should hold off on any checkins >>>> until >>>> its done, as you may not know where to check it in. :) >>>> >>>> Alan. >>>> >>>> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: >>>> >>>>> As part of our move to a TLP we need to move our code base out of >>>>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/ >>>>> repos/ >>>>> asf/ >>>>> pig/ >>>>> >>>>> I plan to do this move tomorrow. It should not affect any of your >>>>> outstanding checkouts (including ones where you have made >>>>> changes), >>>>> as >>>>> there is a simple SVN command that will change your checkout to be >>>>> based on the new repository. Once I do this all checkouts will >>>>> need >>>>> to happen from the new repo. >>>>> >>>>> I'll send another message once it's done which will include info >>>>> on >>>>> how to update your existing checkouts. >>>>> >>>>> Alan. >>>> >>> >>> >> >> >> > > > > -- > Best Regards > > Jeff Zhang
+
Alan Gates 2010-10-07, 16:10
Giridharan Kesavan 2010-10-09, 01:33
Now that we have pig as a TLP the pom file has to updated to the new group id: org.apache.pig. Also we need to gain access on the nexus maven repo for publishing artifacts as org.apache.pig. Giri > It has been on the new pig.apache.org site. I haven't gotten the old > site updated yet. I hope to get to it today. > > Alan. > > On Oct 6, 2010, at 6:17 PM, Jeff Zhang wrote: > >> Alan, >> >> The official site's svn address has not been updated. >> >> http://hadoop.apache.org/pig/version_control.html>> >> >> >> On Thu, Oct 7, 2010 at 8:16 AM, Thejas M Nair <[EMAIL PROTECTED]> >> wrote: >>> Replace https with http in the commands below if your repository is >>> checked >>> out using http. (sending this because it took me a few minutes to >>> figure out >>> why the command didn't work for me) >>> >>> -Thejas >>> >>> >>> >>> >>> On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: >>> >>>> The move is finished. If you have outstanding checkouts (including >>>> ones with changes) you can update them using svn switch: >>>> >>>> svn switch https://svn.apache.org/repos/asf/pig/trunk>>>> >>>> The above assumes you have trunk checked out. If you have site, >>>> branches, or tags checked out change the above URL accordingly. >>>> >>>> And remember, from this point forward checkouts will need to come >>>> from >>>> https://svn.apache.org/repos/asf/pig/>>>> and not https://svn.apache.org/repos/asf/hadoop/pig/>>>> >>>> Alan. >>>> >>>> On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: >>>> >>>>> I'm starting the move now. You should hold off on any checkins >>>>> until >>>>> its done, as you may not know where to check it in. :) >>>>> >>>>> Alan. >>>>> >>>>> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: >>>>> >>>>>> As part of our move to a TLP we need to move our code base out of >>>>>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/ >>>>>> repos/ >>>>>> asf/ >>>>>> pig/ >>>>>> >>>>>> I plan to do this move tomorrow. It should not affect any of your >>>>>> outstanding checkouts (including ones where you have made >>>>>> changes), >>>>>> as >>>>>> there is a simple SVN command that will change your checkout to be >>>>>> based on the new repository. Once I do this all checkouts will >>>>>> need >>>>>> to happen from the new repo. >>>>>> >>>>>> I'll send another message once it's done which will include info >>>>>> on >>>>>> how to update your existing checkouts. >>>>>> >>>>>> Alan. >>>>> >>>> >>>> >>> >>> >>> >> >> >> >> -- >> Best Regards >> >> Jeff Zhang >
+
Giridharan Kesavan 2010-10-09, 01:33
Giridharan Kesavan 2010-10-12, 00:42
jira requesting access for publishing pig artifact to the nexus repo with the new group id: org.apache.pig. https://issues.apache.org/jira/browse/INFRA-3062Giri On Oct 8, 2010, at 6:33 PM, Giridharan Kesavan wrote: > > Now that we have pig as a TLP the pom file has to updated to the new group id: org.apache.pig. > Also we need to gain access on the nexus maven repo for publishing artifacts as org.apache.pig. > > Giri > >> It has been on the new pig.apache.org site. I haven't gotten the old >> site updated yet. I hope to get to it today. >> >> Alan. >> >> On Oct 6, 2010, at 6:17 PM, Jeff Zhang wrote: >> >>> Alan, >>> >>> The official site's svn address has not been updated. >>> >>> http://hadoop.apache.org/pig/version_control.html>>> >>> >>> >>> On Thu, Oct 7, 2010 at 8:16 AM, Thejas M Nair <[EMAIL PROTECTED]> >>> wrote: >>>> Replace https with http in the commands below if your repository is >>>> checked >>>> out using http. (sending this because it took me a few minutes to >>>> figure out >>>> why the command didn't work for me) >>>> >>>> -Thejas >>>> >>>> >>>> >>>> >>>> On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: >>>> >>>>> The move is finished. If you have outstanding checkouts (including >>>>> ones with changes) you can update them using svn switch: >>>>> >>>>> svn switch https://svn.apache.org/repos/asf/pig/trunk>>>>> >>>>> The above assumes you have trunk checked out. If you have site, >>>>> branches, or tags checked out change the above URL accordingly. >>>>> >>>>> And remember, from this point forward checkouts will need to come >>>>> from >>>>> https://svn.apache.org/repos/asf/pig/>>>>> and not https://svn.apache.org/repos/asf/hadoop/pig/>>>>> >>>>> Alan. >>>>> >>>>> On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: >>>>> >>>>>> I'm starting the move now. You should hold off on any checkins >>>>>> until >>>>>> its done, as you may not know where to check it in. :) >>>>>> >>>>>> Alan. >>>>>> >>>>>> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: >>>>>> >>>>>>> As part of our move to a TLP we need to move our code base out of >>>>>>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/ >>>>>>> repos/ >>>>>>> asf/ >>>>>>> pig/ >>>>>>> >>>>>>> I plan to do this move tomorrow. It should not affect any of your >>>>>>> outstanding checkouts (including ones where you have made >>>>>>> changes), >>>>>>> as >>>>>>> there is a simple SVN command that will change your checkout to be >>>>>>> based on the new repository. Once I do this all checkouts will >>>>>>> need >>>>>>> to happen from the new repo. >>>>>>> >>>>>>> I'll send another message once it's done which will include info >>>>>>> on >>>>>>> how to update your existing checkouts. >>>>>>> >>>>>>> Alan. >>>>>> >>>>> >>>>> >>>> >>>> >>>> >>> >>> >>> >>> -- >>> Best Regards >>> >>> Jeff Zhang >> >
+
Giridharan Kesavan 2010-10-12, 00:42
Dmitriy Ryaboy 2010-10-11, 21:25
Is the 0.8 branch compiling for you guys? I just switched, and Ivy re-downloaded all dependencies, then croaked on pulling joda-time and guava. The common denominator there is that I added both of them at some point, so I probably ivified them wrong.. but I really don't see how they are different than other entries in ivy.xml -D On Wed, Oct 6, 2010 at 5:16 PM, Thejas M Nair <[EMAIL PROTECTED]> wrote: > Replace https with http in the commands below if your repository is checked > out using http. (sending this because it took me a few minutes to figure > out > why the command didn't work for me) > > -Thejas > > > > > On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: > > > The move is finished. If you have outstanding checkouts (including > > ones with changes) you can update them using svn switch: > > > > svn switch https://svn.apache.org/repos/asf/pig/trunk> > > > The above assumes you have trunk checked out. If you have site, > > branches, or tags checked out change the above URL accordingly. > > > > And remember, from this point forward checkouts will need to come from > > https://svn.apache.org/repos/asf/pig/> > and not https://svn.apache.org/repos/asf/hadoop/pig/> > > > Alan. > > > > On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: > > > >> I'm starting the move now. You should hold off on any checkins until > >> its done, as you may not know where to check it in. :) > >> > >> Alan. > >> > >> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: > >> > >>> As part of our move to a TLP we need to move our code base out of > >>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ > >>> asf/ > >>> pig/ > >>> > >>> I plan to do this move tomorrow. It should not affect any of your > >>> outstanding checkouts (including ones where you have made changes), > >>> as > >>> there is a simple SVN command that will change your checkout to be > >>> based on the new repository. Once I do this all checkouts will need > >>> to happen from the new repo. > >>> > >>> I'll send another message once it's done which will include info on > >>> how to update your existing checkouts. > >>> > >>> Alan. > >> > > > > > > >
+
Dmitriy Ryaboy 2010-10-11, 21:25
Olga Natkovich 2010-10-11, 21:43
I just switched and build 0.8 branch myself and clean build worked just fine. Olga -----Original Message----- From: Dmitriy Ryaboy [mailto:[EMAIL PROTECTED]] Sent: Monday, October 11, 2010 2:25 PM To: [EMAIL PROTECTED] Subject: Re: Moving Pig's code Is the 0.8 branch compiling for you guys? I just switched, and Ivy re-downloaded all dependencies, then croaked on pulling joda-time and guava. The common denominator there is that I added both of them at some point, so I probably ivified them wrong.. but I really don't see how they are different than other entries in ivy.xml -D On Wed, Oct 6, 2010 at 5:16 PM, Thejas M Nair <[EMAIL PROTECTED]> wrote: > Replace https with http in the commands below if your repository is checked > out using http. (sending this because it took me a few minutes to figure > out > why the command didn't work for me) > > -Thejas > > > > > On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: > > > The move is finished. If you have outstanding checkouts (including > > ones with changes) you can update them using svn switch: > > > > svn switch https://svn.apache.org/repos/asf/pig/trunk> > > > The above assumes you have trunk checked out. If you have site, > > branches, or tags checked out change the above URL accordingly. > > > > And remember, from this point forward checkouts will need to come from > > https://svn.apache.org/repos/asf/pig/> > and not https://svn.apache.org/repos/asf/hadoop/pig/> > > > Alan. > > > > On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: > > > >> I'm starting the move now. You should hold off on any checkins until > >> its done, as you may not know where to check it in. :) > >> > >> Alan. > >> > >> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: > >> > >>> As part of our move to a TLP we need to move our code base out of > >>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ > >>> asf/ > >>> pig/ > >>> > >>> I plan to do this move tomorrow. It should not affect any of your > >>> outstanding checkouts (including ones where you have made changes), > >>> as > >>> there is a simple SVN command that will change your checkout to be > >>> based on the new repository. Once I do this all checkouts will need > >>> to happen from the new repo. > >>> > >>> I'll send another message once it's done which will include info on > >>> how to update your existing checkouts. > >>> > >>> Alan. > >> > > > > > > >
+
Olga Natkovich 2010-10-11, 21:43
Dmitriy Ryaboy 2010-10-11, 22:10
It worked for me after I blew away the local ivy cache. Dmitriy On Mon, Oct 11, 2010 at 2:43 PM, Olga Natkovich <[EMAIL PROTECTED]> wrote: > I just switched and build 0.8 branch myself and clean build worked just > fine. > > Olga > > -----Original Message----- > From: Dmitriy Ryaboy [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 11, 2010 2:25 PM > To: [EMAIL PROTECTED] > Subject: Re: Moving Pig's code > > Is the 0.8 branch compiling for you guys? I just switched, and Ivy > re-downloaded all dependencies, then croaked on pulling joda-time and > guava. > The common denominator there is that I added both of them at some point, so > I probably ivified them wrong.. but I really don't see how they are > different than other entries in ivy.xml > > -D > > On Wed, Oct 6, 2010 at 5:16 PM, Thejas M Nair <[EMAIL PROTECTED]> wrote: > > > Replace https with http in the commands below if your repository is > checked > > out using http. (sending this because it took me a few minutes to figure > > out > > why the command didn't work for me) > > > > -Thejas > > > > > > > > > > On 10/6/10 1:24 PM, "Alan Gates" <[EMAIL PROTECTED]> wrote: > > > > > The move is finished. If you have outstanding checkouts (including > > > ones with changes) you can update them using svn switch: > > > > > > svn switch https://svn.apache.org/repos/asf/pig/trunk> > > > > > The above assumes you have trunk checked out. If you have site, > > > branches, or tags checked out change the above URL accordingly. > > > > > > And remember, from this point forward checkouts will need to come from > > > https://svn.apache.org/repos/asf/pig/> > > and not https://svn.apache.org/repos/asf/hadoop/pig/> > > > > > Alan. > > > > > > On Oct 6, 2010, at 12:52 PM, Alan Gates wrote: > > > > > >> I'm starting the move now. You should hold off on any checkins until > > >> its done, as you may not know where to check it in. :) > > >> > > >> Alan. > > >> > > >> On Oct 5, 2010, at 4:22 PM, Alan Gates wrote: > > >> > > >>> As part of our move to a TLP we need to move our code base out of > > >>> svn.apache.org/repos/asf/hadoop/pig/ and into svn.apache.org/repos/ > > >>> asf/ > > >>> pig/ > > >>> > > >>> I plan to do this move tomorrow. It should not affect any of your > > >>> outstanding checkouts (including ones where you have made changes), > > >>> as > > >>> there is a simple SVN command that will change your checkout to be > > >>> based on the new repository. Once I do this all checkouts will need > > >>> to happen from the new repo. > > >>> > > >>> I'll send another message once it's done which will include info on > > >>> how to update your existing checkouts. > > >>> > > >>> Alan. > > >> > > > > > > > > > > > > >
+
Dmitriy Ryaboy 2010-10-11, 22:10
|
|