Re: [Zope] [buildout] bootstrap and develop

2008-02-06 Thread Tarek Ziadé


Maurits van Rees-3 wrote:
 
 ...
 2. What would be alternatives or how can this be changed?
 
 You can use the z3c.recipe.egg:editable recipe.  I briefly tried that,
 but it did not work for our (Zest Software) internal password
 protected subversion repository, where we keep the code for our
 clients.  The recipe tries to easy_install a package but it fails as
 it cannot use our repository without a password.
 

You can use the #egg trick within the [buildout] find-links variable,
then add lovely.buildouthttp to take care of the svn login.

You will need a simple .httpauth file in your HOME/.buildout directory
 
++
Tarek
-- 
View this message in context: 
http://www.nabble.com/-buildout--bootstrap-and-develop-tp15119239p15309668.html
Sent from the Zope - General mailing list archive at Nabble.com.

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] [buildout] bootstrap and develop

2008-02-06 Thread Janko Hauser


Am 06.02.2008 um 19:07 schrieb Tarek Ziadé:




Maurits van Rees-3 wrote:


...

2. What would be alternatives or how can this be changed?


You can use the z3c.recipe.egg:editable recipe.  I briefly tried  
that,

but it did not work for our (Zest Software) internal password
protected subversion repository, where we keep the code for our
clients.  The recipe tries to easy_install a package but it fails as
it cannot use our repository without a password.



You can use the #egg trick within the [buildout] find-links variable,
then add lovely.buildouthttp to take care of the svn login.


Thanks for yours and Maurits hints. I actually tried the recipe  
Maurits mentioned without success, but just yesterday an extension was  
published at pypi, which does exactly solves this problem.


http://pypi.python.org/pypi/gp.svndevelop/0.1

Besides I didn't know that there is an extension mechanism besides  
recipes.


One of our repositories is also password protected, but after the  
first successful login with an interactive svn session on the console  
this is not an actual issue.


With regards and appreciation for the help

__Janko Hauser

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] [buildout] bootstrap and develop

2008-02-06 Thread Tarek Ziadé


Janko Hauser-2 wrote:
 
 Besides I didn't know that there is an extension mechanism besides  
 recipes.
 
 One of our repositories is also password protected, but after the  
 first successful login with an interactive svn session on the console  
 this is not an actual issue.
 

Yes that's how lovely.buildouthttp is hooked (a extension), to add
authentication.
So no interactive session is required at all. You should try it, it's very
handy.

For svndevelop, beware that your buildout syntax will therefore depend on
this
extension. Regular develop are fine, if you have a buildout-friendly layout
in your subversion: you can checkout a whole tree and use relative paths
in your buildout.

++
Tarek

-- 
View this message in context: 
http://www.nabble.com/-buildout--bootstrap-and-develop-tp15119239p15324086.html
Sent from the Zope - General mailing list archive at Nabble.com.

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )