Re: Setting up developer environment

2010-03-05 Thread Tony Bibbs
Easy enough, it did get Django Evolution installed even though it did error
out with the following:

No local packages or download links found for paramiko==1.7.4
error: Could not find suitable distribution for
Requirement.parse('paramiko==1.7.4')

Seems as if Ubuntu already had this installed for me so I ran

python ./contrib/internal/prepare-dev.py

...again and this time it seemed to work ok. Do I need to worry about having
a mix of Ubuntu packages and explicitly installed Python packing moving
forward?  Just trying to avoid any possible future headaches.

Also, should the docs here be updated to include the python
./contrib/internal/prepare-dev.py step?

On Thu, Mar 4, 2010 at 5:07 PM, Christian Hammond chip...@chipx86.comwrote:

 Easy_install will be your best option.

 Actually, what you probably should do is (assuming this is a developer
 machine) run:

   sudo python setup.py develop

 This will automatically grab all the dependencies from the right locations
 and install them.

 You'll also want to then run this for your Djblets tree if you have one
 installed, otherwise changes to that tree won't show up (as we'll use the
 fetched package instead).


 Christian


-- 
Tony Bibbs
Phone: (515) 554-8046
Twitter, Skype, Facebook: tonybibbs
Web: http://www.tonybibbs.com

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Re: Setting up developer environment

2010-03-05 Thread Christian Hammond
Having a mix should be okay.

The prepare-dev step is mentioned in the docs. See
http://www.reviewboard.org/docs/codebase/dev/getting-started/#review-board

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Fri, Mar 5, 2010 at 6:47 AM, Tony Bibbs t...@tonybibbs.com wrote:

 Easy enough, it did get Django Evolution installed even though it did error
 out with the following:

 No local packages or download links found for paramiko==1.7.4
 error: Could not find suitable distribution for
 Requirement.parse('paramiko==1.7.4')

 Seems as if Ubuntu already had this installed for me so I ran

 python ./contrib/internal/prepare-dev.py

 ...again and this time it seemed to work ok. Do I need to worry about
 having a mix of Ubuntu packages and explicitly installed Python packing
 moving forward?  Just trying to avoid any possible future headaches.

 Also, should the docs here be updated to include the python
 ./contrib/internal/prepare-dev.py step?

 On Thu, Mar 4, 2010 at 5:07 PM, Christian Hammond chip...@chipx86.comwrote:

 Easy_install will be your best option.

 Actually, what you probably should do is (assuming this is a developer
 machine) run:

   sudo python setup.py develop

 This will automatically grab all the dependencies from the right locations
 and install them.

 You'll also want to then run this for your Djblets tree if you have one
 installed, otherwise changes to that tree won't show up (as we'll use the
 fetched package instead).


 Christian


 --
 Tony Bibbs
 Phone: (515) 554-8046
 Twitter, Skype, Facebook: tonybibbs
 Web: http://www.tonybibbs.com

  --
 Want to help the Review Board project? Donate today at
 http://www.reviewboard.org/donate/
 Happy user? Let us know at http://www.reviewboard.org/users/
 -~--~~~~--~~--~--~---
 To unsubscribe from this group, send email to
 reviewboard+unsubscr...@googlegroups.comreviewboard%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/reviewboard?hl=en


-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Re: Setting up developer environment

2010-03-04 Thread Tony Bibbs
Seems like I have a few options:

1) Install via easy_install
2) Install via SVN
3) Install via Ubuntu's package manager

Any suggestion on the best solution? I have it pulled down via SVN but I'm
assuming I need to somehow tell ReviewBoard where it is because I get the
same error

On Mon, Feb 22, 2010 at 7:26 AM, Raja rajas...@gmail.com wrote:

 It looks like you need to get django_evolution from

 easy_install django_evolution

 or code.google.com/p/django-evolution/

 I just created a post with missing packages in the dependency list,
 but missed this one (as I had installed reviewboard earlier using
 easy_install).

 -- Raja

 On Feb 18, 12:10 am, Tony Bibbs t...@tonybibbs.com wrote:
  When I run this:
 
  python ./contrib/internal/prepare-dev.py
 
  I get that:
 
  Synchronizing database...
  Error: No module named django_evolution
 
  Did I miss a step or something?


-- 
Tony Bibbs
Phone: (515) 554-8046
Twitter, Skype, Facebook: tonybibbs
Web: http://www.tonybibbs.com

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Re: Setting up developer environment

2010-03-04 Thread Christian Hammond
Easy_install will be your best option.

Actually, what you probably should do is (assuming this is a developer
machine) run:

  sudo python setup.py develop

This will automatically grab all the dependencies from the right locations
and install them.

You'll also want to then run this for your Djblets tree if you have one
installed, otherwise changes to that tree won't show up (as we'll use the
fetched package instead).

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
VMware, Inc. - http://www.vmware.com


On Thu, Mar 4, 2010 at 11:56 AM, Tony Bibbs t...@tonybibbs.com wrote:

 Seems like I have a few options:

 1) Install via easy_install
 2) Install via SVN
 3) Install via Ubuntu's package manager

 Any suggestion on the best solution? I have it pulled down via SVN but I'm
 assuming I need to somehow tell ReviewBoard where it is because I get the
 same error


 On Mon, Feb 22, 2010 at 7:26 AM, Raja rajas...@gmail.com wrote:

 It looks like you need to get django_evolution from

 easy_install django_evolution

 or code.google.com/p/django-evolution/

 I just created a post with missing packages in the dependency list,
 but missed this one (as I had installed reviewboard earlier using
 easy_install).

 -- Raja

 On Feb 18, 12:10 am, Tony Bibbs t...@tonybibbs.com wrote:
  When I run this:
 
  python ./contrib/internal/prepare-dev.py
 
  I get that:
 
  Synchronizing database...
  Error: No module named django_evolution
 
  Did I miss a step or something?


 --
 Tony Bibbs
 Phone: (515) 554-8046
 Twitter, Skype, Facebook: tonybibbs
 Web: http://www.tonybibbs.com

  --
 Want to help the Review Board project? Donate today at
 http://www.reviewboard.org/donate/
 Happy user? Let us know at http://www.reviewboard.org/users/
 -~--~~~~--~~--~--~---
 To unsubscribe from this group, send email to
 reviewboard+unsubscr...@googlegroups.comreviewboard%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/reviewboard?hl=en


-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en

Re: Setting up developer environment

2010-03-04 Thread Paul
On Thu, Mar 4, 2010 at 15:07, Christian Hammond chip...@chipx86.com wrote:
 Easy_install will be your best option.

 Actually, what you probably should do is (assuming this is a developer
 machine) run:

   sudo python setup.py develop

 This will automatically grab all the dependencies from the right locations
 and install them.

 You'll also want to then run this for your Djblets tree if you have one
 installed, otherwise changes to that tree won't show up (as we'll use the
 fetched package instead).

I don't know about the development environment stuff, but here's a
list of packages you need from the debian repository to run
reviewboard:

apache2, libapache2-mod-python, libmemcache-dev, memcached,
mysql-server, patch, pylucene, python-dev, python-django (=1.1.1),
python-django-djblets (=0.5.7), python-django-evolution, python-flup,
python-imaging, python-ldap, python-memcache, python-mysqldb,
python-paramiko, python-pygments, python-setuptools, python-svn,
python-tz, python-recaptcha, subversion,

I actually have debian package definitions for reviewboard,
reviewboard-tools, python-django-djblets, python-django-evolution and
python-recaptcha (none of these are in the Lenny repository and you'll
need to get pylucene from unstable, it works fine on Lenny).

If others would find them useful, I can post them.

Chip, if you want to include them in the reviewboard releases let me
know how you'd like to handle that and I can make that happen too.

Paul

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Re: Setting up developer environment

2010-02-22 Thread Raja
It looks like you need to get django_evolution from

easy_install django_evolution

or code.google.com/p/django-evolution/

I just created a post with missing packages in the dependency list,
but missed this one (as I had installed reviewboard earlier using
easy_install).

-- Raja

On Feb 18, 12:10 am, Tony Bibbs t...@tonybibbs.com wrote:
 When I run this:

 python ./contrib/internal/prepare-dev.py

 I get that:

 Synchronizing database...
 Error: No module named django_evolution

 Did I miss a step or something?

 --
 Tony Bibbs
 Phone: (515) 554-8046
 Twitter, Skype, Facebook: tonybibbs
 Web:http://www.tonybibbs.com

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en


Setting up developer environment

2010-02-17 Thread Tony Bibbs
When I run this:

python ./contrib/internal/prepare-dev.py

I get that:

Synchronizing database...
Error: No module named django_evolution

Did I miss a step or something?

-- 
Tony Bibbs
Phone: (515) 554-8046
Twitter, Skype, Facebook: tonybibbs
Web: http://www.tonybibbs.com

-- 
Want to help the Review Board project? Donate today at 
http://www.reviewboard.org/donate/
Happy user? Let us know at http://www.reviewboard.org/users/
-~--~~~~--~~--~--~---
To unsubscribe from this group, send email to 
reviewboard+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard?hl=en