<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0">

    <channel>

        <title>QuickStart Buildout</title>
        <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout</link>
        <description>Quick Steps required to be done to get a fully working Cyn.in buildout development environment</description>

        <generator>basesyndication</generator>

        <image>
            <title>QuickStart Buildout</title>
            <url>http://www.cynapse.com/community/logo.jpg</url>
            <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout</link>
        </image>

        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1325097072</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1325097072</link>
                <description>Okay, &lt;br /&gt;&lt;br /&gt;i see that this error was reported above.&lt;br /&gt;The recompilation of python with &lt;br /&gt;&amp;nbsp;&amp;nbsp;./configure --enable-unicode=ucs4&lt;br /&gt;got me the error in make install:&lt;br /&gt;&amp;gt; Compiling /opt/Python-2.4.6/lib/python2.4/zipfile.py ...&lt;br /&gt;&amp;gt; make: *** [libinstall] Error 1&lt;br /&gt;This could be ignored with:&lt;br /&gt;make -i install&lt;br /&gt;so, i got now a python-2.4.6. with UCS4:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;gt;&amp;gt;&amp;gt; import sys&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;gt;&amp;gt;&amp;gt; print sys.maxunicode&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1114111&lt;br /&gt;&lt;br /&gt;Then i got the &amp;quot;archetypes.schemaextender&amp;quot;-error reported above and with thiss correction the buildout and the start of the instance works fine.&lt;br /&gt;&lt;br /&gt;I will wrote later a conclusion of all modifications to be done for a succesfull installation based on the svn-tag cynin_3_1_3.&lt;br /&gt;&lt;br /&gt;@cynin: Ist the tag &amp;quot;cynin_3_2_2&amp;quot; free for public use?&lt;br /&gt;If i try it, i get the same error like &amp;quot;earpnet&amp;quot; 16:48: &lt;br /&gt;&lt;br /&gt;OSError: [Errno 2] No such file or directory: '/tmp/cynin_3_2_2/eggs/tmp7gQneU'&lt;br /&gt;&lt;br /&gt;I prefer to use the Canin 3.2.2., becaus the new buildout-configuration is much better structured as the older one. I see, that you evolve the software... Thanks!&lt;br /&gt;&lt;br /&gt;When you plan to publish this new version?&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Thomas&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
                <author>Thomas HÃ¤ny</author>


                <pubDate>Wed, 28 Dec 2011 18:31:13 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title>QuickStart Buildout</title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout</link>
                <description>
&lt;h2&gt;Cyn.in Dependency installation using Package Managers&lt;/h2&gt;
&lt;h3&gt;Ubuntu 8.0.4 (Hardy)&lt;/h3&gt;
&lt;pre&gt;sudo apt-get build-dep python-ldap python-lxml&lt;/pre&gt;
&lt;pre&gt;sudo apt-get install build-essential gcc g++ libc6-dev libssl-dev zlib1g-dev libjpeg62-dev libreadline5-dev readline-common wv python2.4-dev poppler-utils python-imaging python-libxml2 libxml2-dev libxslt1-dev subversion libdb4.4-dev libldap2-dev libsasl2-dev libssl-dev python-ldap python-setuptools&lt;/pre&gt;
&lt;h3&gt;Ubuntu 8.1.0 (Intrepid) and Debian 5.0 (Lenny)&lt;/h3&gt;
&lt;pre&gt;sudo apt-get install build-essential gcc g++ libc6-dev libssl-dev zlib1g-dev libjpeg62-dev libreadline5-dev readline-common wv python2.4-dev poppler-utils python-imaging python-libxml2 libxml2-dev libxslt1-dev subversion libsasl2-dev libssl-dev python-ldap libdb-dev libldap2-dev python-setuptools&lt;/pre&gt;
&lt;h3&gt;Ubuntu 9.04 (Jaunty)&lt;/h3&gt;
&lt;pre&gt;sudo apt-get install build-essential libssl-dev libjpeg62-dev libreadline5-dev wv libxml2-dev libxslt1-dev libsasl2-dev poppler-utils libdb4.4-dev libldap2-dev python2.4-dev&lt;/pre&gt;
&lt;h3&gt;Ubuntu 9.10 (Karmic)&lt;/h3&gt;
&lt;pre&gt;sudo apt-get install build-essential libssl-dev libjpeg62-dev libreadline5-dev wv libxml2-dev libxslt1-dev libsasl2-dev poppler-utils libdb-dev libldap2-dev python2.4-dev&lt;/pre&gt;
&lt;h3&gt;Ubuntu 10.04 (Lucid)&lt;/h3&gt;
&lt;pre&gt;sudo apt-get install build-essential libssl-dev libjpeg62-dev libreadline5-dev wv libxml2-dev libxslt1-dev libsasl2-dev poppler-utils libdb-dev libldap2-dev&lt;/pre&gt;
Ubuntu 10.04 &lt;em&gt;&lt;strong&gt;does not ship&lt;/strong&gt;&lt;/em&gt; with a package for python2.4, so we'll build it from source, like this:
&lt;p&gt;Go to home directory:&lt;/p&gt;
&lt;pre&gt;cd ~&lt;/pre&gt;
&lt;p&gt;Make a folder for storing python source&lt;/p&gt;
&lt;pre&gt;mkdir src&lt;/pre&gt;
&lt;p&gt;Go to src folder&lt;/p&gt;
&lt;pre&gt;cd src&lt;/pre&gt;
&lt;p&gt;Download last python 2.4 source tarball&lt;/p&gt;
&lt;pre&gt;wget http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tgz&lt;/pre&gt;
&lt;p&gt;Extract the source and cd to the new folder&lt;/p&gt;
&lt;pre&gt;tar -zxf Python-2.4.6.tgz
cd Python-2.4.6&lt;/pre&gt;
&lt;p&gt;Run the configure script which will create a makefile to compile Python (lots of output with yes and no, this is normal)&lt;/p&gt;
&lt;pre&gt;./configure --with-threads --enable-unicode=ucs4 --with-readline&lt;/pre&gt;
&lt;p&gt;Run make to compile Python (lots of output, with pretty much unreadable stuff, again this is normal)&lt;/p&gt;
&lt;pre&gt;make&lt;/pre&gt;
Run make test to ensure that there are no major problems (missing modules are generally okay, no test should &lt;em&gt;fail&lt;/em&gt;)
&lt;pre&gt;make test&lt;/pre&gt;
&lt;p&gt;Install to your system with sudo&lt;/p&gt;
&lt;pre&gt;sudo make install&lt;/pre&gt;
&lt;p&gt;Test that it got installed properly:&lt;/p&gt;
&lt;pre&gt;python2.4 -V&lt;/pre&gt;
&lt;p&gt;Output from above command should be:&lt;/p&gt;
&lt;pre&gt;Python 2.4.6&lt;/pre&gt;
&lt;p&gt;That's it, you've got a running python that you can use for below. :)&lt;/p&gt;
&lt;div class="attention"&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are doing above on a &lt;em&gt;&lt;strong&gt;desktop&lt;/strong&gt;&lt;/em&gt; edition of Ubuntu 10.04 then you will possibly have a problem with Ubuntu UI apps' default python getting clobbered with your new, compiled python version. To prevent this, you should remove the new python binary that landed in your /usr/local/bin folder:&lt;/div&gt;
&lt;pre&gt;sudo su
cd /usr/local/bin
rm python
exit
cd ~
python -V&lt;/pre&gt;
&lt;p&gt;The output from last command should be (where your x is whatever system default python is prevalent, as per last Ubuntu 2.6 package):&lt;/p&gt;
&lt;pre&gt;Python 2.6.x&lt;/pre&gt;
&lt;h3&gt;Debian 5.0.4 (Lenny)&lt;/h3&gt;
&lt;p&gt;Contributed by @&lt;a class="avatarlink username" rel="http://www.cynapse.com/community/userinfo?userid=macagua"&gt;macagua&lt;/a&gt; from a &lt;a class="external-link" href="http://www.coactivate.org/projects/ploneve/gestion-de-proyectos-con-buildout"&gt;Buildout Manual (Spanish version)&lt;/a&gt;.&lt;a class="avatarlink username" rel="http://www.cynapse.com/community/userinfo?userid=macagua"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The following should work for Debian 5.0.4 (Lenny) x86 for the 'Cyn.in Dependency installation using Package Managers' section:&lt;/p&gt;
&lt;pre&gt;# aptitude install build-essential python2.4-dev libssl-dev libjpeg62-dev libreadline5-dev libxml2-dev libxslt1-dev libsasl2-dev libdb4.5-dev libldap2-dev zlib1g zlib1g-dev poppler-utils wv xpdf&lt;/pre&gt;
&lt;h3&gt;CentOS 5.4&lt;/h3&gt;
&lt;p&gt;Contributed by &lt;a class="avatarlink username" rel="http://www.cynapse.com/community/userinfo?userid=millisa"&gt;@millisa&lt;/a&gt; and here's where &lt;a class="external-link" href="/community/home/cyn.in-developers/installing-cyn.in-from-source-on-centos-5/view"&gt;CentOS is most discussed&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The following should work for CentOS 5.4 x86 for the 'Cyn.in Dependency installation using Package Managers' section:&lt;/p&gt;
&lt;pre&gt;sudo yum install openssl-devel libjpeg-devel readline-devel libgsf libxml2-devel libxslt-devel cyrus-sasl-devel poppler poppler-utils db4-devel openldap-devel python-devel gcc gcc-c++ glibc-devel python-imaging subversion python-ldap python-setuptools cvs&lt;/pre&gt;
&lt;p&gt;Obtain the wv package from the Dag repository at: &lt;a href="http://dag.wieers.com/rpm/packages/wv/" rel="nofollow"&gt;http://dag.wieers.com/rpm/packages/wv/&lt;/a&gt; for your CPU architecture&lt;/p&gt;
&lt;h4&gt;for x86:&lt;/h4&gt;
&lt;pre&gt;wget http://dag.wieers.com/rpm/packages/wv/wv-1.2.4-1.el5.rf.i386.rpm
sudo rpm -ivh wv-1.2.4-1.el5.rf.i386.rpm&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;For Arch Linux&lt;/h3&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Arch Linux has a rolling release model, so surely when you installed your system and make the first upgrade you are almost on the last "release". Here is what you need for your installation of Cynin on Arch Linux (taken from the &lt;a class="external-link" href="http://69.164.213.154:8080/narratopedia/home/desarrolladores/cynin/instalacion-de-cynin"&gt;Spanish Installation Instructions in Narratopedia&lt;/a&gt;):&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;First install and configure &lt;a class="external-link" href="http://wiki.archlinux.org/index.php/Clyde"&gt;Clyde&lt;/a&gt; or another package manager that let you access to the packages in AUR (Arch User Repository), then do:&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;pre&gt;sudo clyde -S python24 python24-ldap python24-pil python24-setuptools libjpeg6 wv libxml2 libxslt libsasl&amp;nbsp;poppler&lt;/pre&gt;
&lt;/div&gt;
&lt;h3&gt;Mac OS X 10.6.4 (Snow Leopard)&lt;/h3&gt;
&lt;p&gt;Mac OS X 10.6.4 with the latest update has Python 2.6.1; we want 2.4. So we will build python using the plone collective python buildout, and then build a virtualenv from that. So for Mac OS X ignore the Make a new VirtualEnv for your login section, instead use the one outlined in this section.&lt;/p&gt;
&lt;h6&gt;Install XCode&lt;/h6&gt;
&lt;p&gt;You need to install XCode IDE to be able to compile, it installs gcc and cc1 etc., so pop in your Mac OS X cd and install that first.&lt;/p&gt;
&lt;div class="information"&gt;&lt;strong&gt;Note&lt;/strong&gt;: These instructions &lt;em&gt;might&lt;/em&gt; work for other versions of Mac OS X. Let us know if it does. or if you have problems.&lt;/div&gt;
&lt;h6&gt;Export the python buildout from Plone collective&lt;/h6&gt;
&lt;pre&gt;cd ~
svn export&amp;nbsp;http://svn.plone.org/svn/collective/buildout/python pythonbuildout
cd pythonbuildout&lt;/pre&gt;
&lt;h6&gt;Comment out python25 and python26&lt;/h6&gt;
&lt;p&gt;Edit the buildout.cfg file to comment out the python25 and python26 parts, because we don't need/want them. Make it look like follows (Note: the # character *must* be the first character in the line):&lt;/p&gt;
&lt;pre&gt;# This is here just for backward compatibility
[buildout]
extends =
&amp;nbsp;&amp;nbsp; &amp;nbsp;src/base.cfg
&amp;nbsp;&amp;nbsp; &amp;nbsp;src/readline.cfg
&amp;nbsp;&amp;nbsp; &amp;nbsp;src/libjpeg.cfg
&amp;nbsp;&amp;nbsp; &amp;nbsp;src/python24.cfg
# &amp;nbsp; &amp;nbsp;src/python25.cfg
# &amp;nbsp; &amp;nbsp;src/python26.cfg
&amp;nbsp;&amp;nbsp; &amp;nbsp;src/links.cfg

parts =
&amp;nbsp;&amp;nbsp; &amp;nbsp;${buildout:base-parts}
&amp;nbsp;&amp;nbsp; &amp;nbsp;${buildout:readline-parts}
&amp;nbsp;&amp;nbsp; &amp;nbsp;${buildout:libjpeg-parts}
&amp;nbsp;&amp;nbsp; &amp;nbsp;${buildout:python24-parts}
# &amp;nbsp; &amp;nbsp;${buildout:python25-parts}
# &amp;nbsp; &amp;nbsp;${buildout:python26-parts}
&amp;nbsp;&amp;nbsp; &amp;nbsp;${buildout:links-parts}

python-buildout-root = ${buildout:directory}/src
# we want our own eggs directory and nothing shared from a
# ~/.buildout/default.cfg to prevent any errors and interference
eggs-directory = eggs

[install-links]
prefix = /opt/local&lt;/pre&gt;
&lt;h6&gt;Bootstrap Python with Buildout egg&lt;/h6&gt;
&lt;p&gt;Check that the Buildout egg is installed and if not, install it.&lt;/p&gt;
&lt;h6&gt;&lt;span class="Apple-style-span"&gt;
&lt;pre&gt;python bootstrap.py&lt;/pre&gt;
&lt;/span&gt;&lt;/h6&gt;
&lt;h6&gt;Build the python buildout&lt;/h6&gt;
&lt;div&gt;After modifying the file like above, run:&lt;/div&gt;
&lt;pre&gt;./bin/buildout&lt;/pre&gt;
&lt;div&gt;This will take some time, (okay a lot of time, please be patient if you have low bandwidth or less CPU, python will be downloaded and built!). At the end of it, you'll have a ready python2.4 to use in the pythonbuildout/python-2.4 folder. We'll use this one to build the virtualenv folder at ~/venv.&lt;/div&gt;
&lt;h6&gt;Make a new VirtualEnv from this built python&lt;/h6&gt;
&lt;pre&gt;./bin/virtualenv -p python-2.4/bin/python2.4 ~/venv&lt;/pre&gt;
&lt;div&gt;That command should give you a new python2.4 virtualenv ready to use, in further steps as per below (next is Install python dependencies to your VirtualEnv).&lt;/div&gt;
&lt;h2&gt;Make a new VirtualEnv for your login&lt;/h2&gt;
&lt;p&gt;After getting dependencies using your package manager, checkout any
cyninsrc branch/trunk. From this, you'll find a file, ez_setup.py, you
have to run this to install easy_install:&lt;/p&gt;
&lt;pre&gt;sudo python2.4 ez_setup.py -U setuptools&lt;/pre&gt;
&lt;p&gt;Next, we install virtualenv which will be used for installing required python dependencies of cyn.in:&lt;/p&gt;
&lt;pre&gt;sudo easy_install-2.4 -U virtualenv&lt;/pre&gt;
&lt;p&gt;Lets start by making a virtualenv based virtual python environment for our own usermode python installation:&lt;/p&gt;
&lt;pre&gt;virtualenv --python=python2.4 ~/venv&lt;/pre&gt;
&lt;p&gt;This makes a local python install at ~venv which we will now use to
do the buildout. First we need to easy_install the dependencies.&lt;/p&gt;
&lt;h2&gt;Install python dependencies to your VirtualEnv&lt;/h2&gt;
&lt;p&gt;Use this concatenated command that will easy_install all dependencies together.&lt;/p&gt;
&lt;pre&gt;~/venv/bin/easy_install-2.4 ZopeSkel &amp;amp;&amp;amp; ~/venv/bin/easy_install-2.4 lxml &amp;amp;&amp;amp; ~/venv/bin/easy_install-2.4 python-ldap &amp;amp;&amp;amp; ~/venv/bin/easy_install-2.4 http://dist.plone.org/thirdparty/PIL-1.1.7.tar.gz &amp;amp;&amp;amp; ~/venv/bin/easy_install-2.4 ftp://xmlsoft.org/libxml2/python/libxml2-python-2.4.30.tar.gz&lt;/pre&gt;
&lt;h2&gt;Do Bootstrap&lt;/h2&gt;
&lt;p&gt;That's it for the dependencies, you're ready to do the buildout,
just take care to use the venv python2.4 instead of the system-wide
one.&lt;/p&gt;
&lt;p&gt;cd to your buildout directory (it must have bootstrap.py, buildout.cfg, versions.cfg and user.cfg in it) and:&lt;/p&gt;
&lt;pre&gt;~/venv/bin/python2.4 bootstrap.py&lt;/pre&gt;
&lt;h2&gt;Do Buildout&lt;/h2&gt;
&lt;p&gt;Now you can proceed as normal by running your buildout as always:&lt;/p&gt;
&lt;pre&gt;./bin/buildout -c user.cfg&lt;/pre&gt;
Remember to open user.cfg in your text editor and change the effective-user setting to the linux user you want to run the Cyn.in instance with (typically &lt;strong&gt;your&lt;/strong&gt; username), first!</description>
                <author>Dhiraj Gupta</author>

                
                    <category>virtualenv</category>
                
                
                    <category>source code</category>
                
                
                    <category>buildout</category>
                
                
                    <category>centos</category>
                
                
                    <category>documentation</category>
                
                
                    <category>ubuntu</category>
                
                
                    <category>debian</category>
                

                <pubDate>Wed, 28 Dec 2011 18:31:13 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1325079874</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1325079874</link>
                <description>Hi Cynin&lt;br /&gt;&lt;br /&gt;Now, the buildout runs without error...&lt;br /&gt;But i get another error, if i start the instance in the foreground:&lt;br /&gt;&amp;gt;  ./bin/instance fg&lt;br /&gt;Traceback (most recent call last):&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/Zope2/Startup/run.py&amp;quot;, line 56, in ?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/Zope2/Startup/run.py&amp;quot;, line 21, in run&lt;br /&gt;...&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/Python-2.4.6/lib/python2.4/xml/sax/expatreader.py&amp;quot;, line 348, in end_element_ns&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;self._cont_handler.endElementNS(pair, None)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/zope/configuration/xmlconfig.py&amp;quot;, line 349, in endElementNS&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;self.context.end()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/zope/configuration/config.py&amp;quot;, line 544, in end&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;self.stack.pop().finish()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/zope/configuration/config.py&amp;quot;, line 691, in finish&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;args = toargs(context, *self.argdata)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/zope/configuration/config.py&amp;quot;, line 1383, in toargs&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;args[str(name)] = field.fromUnicode(s)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/zope/configuration/fields.py&amp;quot;, line 139, in fromUnicode&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;value = self.context.resolve(name)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/parts/zope2/lib/python/zope/configuration/config.py&amp;quot;, line 184, in resolve&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mod = __import__(mname, *_import_chickens)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/src/ubify.viewlets/ubify/viewlets/browser/custommethods.py&amp;quot;, line 39, in ?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;import jsonlib&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/eggs/jsonlib-1.3.10-py2.4-linux-i686.egg/jsonlib.py&amp;quot;, line 7, in ?&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/eggs/jsonlib-1.3.10-py2.4-linux-i686.egg/jsonlib.py&amp;quot;, line 6, in __bootstrap__&lt;br /&gt;zope.configuration.xmlconfig.ZopeXMLConfigurationError: File &amp;quot;/opt/cynin_3_1_3/parts/instance/etc/site.zcml&amp;quot;, line 14.2-14.55&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ZopeXMLConfigurationError: File &amp;quot;/opt/cynin_3_1_3/parts/instance/etc/package-includes/004-ubify.viewlets-configure.zcml&amp;quot;, line 1.0-1.58&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ZopeXMLConfigurationError: File &amp;quot;/opt/cynin_3_1_3/src/ubify.viewlets/ubify/viewlets/configure.zcml&amp;quot;, line 46.4-46.34&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ZopeXMLConfigurationError: File &amp;quot;/opt/cynin_3_1_3/src/ubify.viewlets/ubify/viewlets/browser/configure.zcml&amp;quot;, line 624.4-630.10&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ImportError: /opt/cynin_3_1_3/var/.python-eggs/jsonlib-1.3.10-py2.4-linux-i686.egg-tmp/jsonlib.so: undefined symbol: PyUnicodeUCS4_FromObject&lt;br /&gt;&lt;br /&gt;Have sombody any ideas? cynin?&lt;br /&gt;... &lt;br /&gt;</description>
                <author>Thomas HÃ¤ny</author>


                <pubDate>Wed, 28 Dec 2011 13:44:37 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1325079018</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1325079018</link>
                <description>Hi Folks&lt;br /&gt;&lt;br /&gt;i spent a hole day for searching and found it...&lt;br /&gt;The problem is, that the version off &amp;quot;plone.reload&amp;quot;  is not pinned in the version.cfg (or the buildout.cfg). In this case, the newest version &amp;gt;2.0 for plone.reload will be installed, which requires Zope &amp;gt;2.12 (and a lot og newer zope-eggs/five-eggs, see the list of lincolntlng).&lt;br /&gt;For the Plone 3.3.5-buildout, which ist the base for cynin, Zope in 2.10.x will be installed. To solve the error, pin the version for plone.reload in the buildout.cfg (two &amp;quot;==&amp;quot; needed):&lt;br /&gt;plone.reload==1.5&lt;br /&gt;OR in the version.cfg (only one &amp;quot;=&amp;quot;)&lt;br /&gt;plone.reload = 1.5&lt;br /&gt;&lt;br /&gt;Source of solution: &lt;a href="http://plone.293351.n2.nabble.com/Beware-plone-reload-not-pinned-td6265328.html" rel="nofollow"&gt;http://plone.293351.n2.nabb[&amp;hellip;]d-not-pinned-td6265328.html&lt;/a&gt;&lt;br /&gt;and: &lt;a href="http://pypi.python.org/pypi/plone.reload" rel="nofollow"&gt;http://pypi.python.org/pypi/plone.reload&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This will solve the error with&lt;br /&gt;&amp;nbsp;&amp;nbsp;UnknownExtra: zope.i18n 0.0 has no such extra feature 'zcml'&lt;br /&gt;&lt;br /&gt;@cynin: Why you include the egg &amp;quot;plone.reload&amp;quot; in your public buildout? It should be used only for developement...&lt;br /&gt;&lt;br /&gt;regards&lt;br /&gt;Thomas&lt;br /&gt;&lt;br /&gt;</description>
                <author>Thomas HÃ¤ny</author>


                <pubDate>Wed, 28 Dec 2011 13:30:22 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318668648</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318668648</link>
                <description>Finally it concludes, but &amp;quot;./bin/instance start&amp;quot; will fail. The code:&lt;br /&gt;&lt;br /&gt;[zope2]&lt;br /&gt;fake-zope-eggs = true&lt;br /&gt;skip-fake-eggs =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.testing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.component&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.i18n&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.interface&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.proxy&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.schema&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.security&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.lifecycleevent&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.traversing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.publisher&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.contenttype&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.pagetemplate&lt;br /&gt;&lt;br /&gt;additional-fake-eggs =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;five.localsitemanager&lt;br /&gt;&lt;br /&gt;[versions]&lt;br /&gt;five.localsitemanager = 2.0</description>
                <author>Thor Lincoln</author>


                <pubDate>Sat, 15 Oct 2011 08:50:48 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318662085</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318662085</link>
                <description>I made a progress, but it still fail... I added the following lines in my user.cfg:&lt;br /&gt;&lt;br /&gt;[zope2]&lt;br /&gt;fake-zope-eggs = true&lt;br /&gt;skip-fake-eggs =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.testing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.component&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.i18n &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.interface&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.proxy&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.schema&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.security&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.lifecycleevent&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.traversing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.publisher&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.contenttype&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.pagetemplate&lt;br /&gt;&lt;br /&gt;additional-fake-eggs =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Plone&lt;br /&gt;&lt;br /&gt;[versions]&lt;br /&gt;Plone = 0.0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It works until a message saying something about &amp;quot;five.localsitemanager&amp;quot; and its conflict with &amp;quot;zope.component&amp;quot;'s version.</description>
                <author>Thor Lincoln</author>


                <pubDate>Sat, 15 Oct 2011 07:01:25 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318655250</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318655250</link>
                <description>The error happens because of a change in Plone. If you wanna know more, follow this: &lt;a href="http://plone.293351.n2.nabble.com/Error-running-buildout-td339436.html" rel="nofollow"&gt;http://plone.293351.n2.nabb[&amp;hellip;]ning-buildout-td339436.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;What I tried to solve this was edit the user.cfg and add the following:&lt;br /&gt;&lt;br /&gt;[zope2] &lt;br /&gt;fake-zope-eggs = true&lt;br /&gt;skip-fake-eggs =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.testing&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.component&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;zope.i18n &lt;br /&gt;&lt;br /&gt;Then you'll get another error.</description>
                <author>Thor Lincoln</author>


                <pubDate>Sat, 15 Oct 2011 05:07:32 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318653182</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1318653182</link>
                <description>Any ideas about that error?</description>
                <author>Thor Lincoln</author>


                <pubDate>Sat, 15 Oct 2011 04:33:05 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1313501599</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1313501599</link>
                <description>Is their any news about the error above?&lt;br /&gt;Or is the cyn.in-project dead?</description>
                <author>Thomas HÃ¤ny</author>


                <pubDate>Tue, 16 Aug 2011 13:33:22 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1310311542</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1310311542</link>
                <description>Hi - I'm using Ubuntu 10.04 LTS and 3.1.3 from SVN. I've followed instructions perfectly but get this error:&lt;br /&gt;&lt;br /&gt;Getting distribution for 'zope.ptresource'.&lt;br /&gt;Got zope.ptresource 3.9.0.&lt;br /&gt;While:&lt;br /&gt;&amp;nbsp;&amp;nbsp;Installing instance.&lt;br /&gt;&lt;br /&gt;An internal error occured due to a bug in either zc.buildout or in a&lt;br /&gt;recipe being used:&lt;br /&gt;Traceback (most recent call last):&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/zc.buildout-1.4.3-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1660, in main&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;getattr(buildout, command)(args)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/zc.buildout-1.4.3-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 532, in install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;installed_files = self[part]._call(recipe.install)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/zc.buildout-1.4.3-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1204, in _call&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return f()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/plone.recipe.zope2instance-3.6-py2.4.egg/plone/recipe/zope2instance/__init__.py&amp;quot;, line 51, in install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;requirements, ws = self.egg.working_set()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/zc.recipe.egg-1.2.2-py2.4.egg/zc/recipe/egg/egg.py&amp;quot;, line 89, in working_set&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;allow_hosts=self.allow_hosts,&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/zc.buildout-1.4.3-py2.4.egg/zc/buildout/easy_install.py&amp;quot;, line 800, in install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return installer.install(specs, working_set)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/trunk/eggs/zc.buildout-1.4.3-py2.4.egg/zc/buildout/easy_install.py&amp;quot;, line 660, in install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ws.resolve(requirements)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/venv/lib/python2.4/site-packages/distribute-0.6.15-py2.4.egg/pkg_resources.py&amp;quot;, line 557, in resolve&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;requirements.extend(dist.requires(req.extras)[::-1])&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/home/cynin/venv/lib/python2.4/site-packages/distribute-0.6.15-py2.4.egg/pkg_resources.py&amp;quot;, line 2179, in requires&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;raise UnknownExtra(&lt;br /&gt;UnknownExtra: zope.i18n 0.0 has no such extra feature 'zcml'&lt;br /&gt;&lt;br /&gt;Any ideas please?&lt;br /&gt;&lt;br /&gt;Thanks</description>
                <author>Essential Logic</author>


                <pubDate>Sun, 10 Jul 2011 15:25:46 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1310132490</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1310132490</link>
                <description>I get the following Error while running the buildout&lt;br /&gt;/opt/cynin_3_1_3# ./bin/buildout -c user.cfg&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;Got zope.ptresource 3.9.0.&lt;br /&gt;While:&lt;br /&gt;&amp;nbsp;&amp;nbsp;Installing instance.&lt;br /&gt;&lt;br /&gt;An internal error occured due to a bug in either zc.buildout or in a&lt;br /&gt;recipe being used:&lt;br /&gt;Traceback (most recent call last):&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/opt/cynin_3_1_3/eggs/zc.buildout-1.4.3-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1660, in main&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;getattr(buildout, command)(args)&lt;br /&gt;...&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;build/bdist.linux-i686/egg/pkg_resources.py&amp;quot;, line 2216, in requires&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;def load_entry_point(self, group, name):&lt;br /&gt;UnknownExtra: zope.i18n 0.0 has no such extra feature 'zcml'&lt;br /&gt;&lt;br /&gt;Have you any idea, what should be wrong?&lt;br /&gt;&lt;br /&gt;I installed cywin like you wrote in the top of teh page (with venv) under a fresh new installed Debian Lenny in a Xen-VM...&lt;br /&gt;&lt;br /&gt;</description>
                <author>Thomas HÃ¤ny</author>


                <pubDate>Fri, 08 Jul 2011 13:41:33 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1308847719</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1308847719</link>
                <description>if i do the bootstrap on the 3.2.2 branch, i get following errors:&lt;br /&gt;&lt;br /&gt;Downloading &lt;a href="http://pypi.python.org/packages/source/d/distribute/distribute-0.6.19.tar.gz" rel="nofollow"&gt;http://pypi.python.org/[&amp;hellip;]/distribute-0.6.19.tar.gz&lt;/a&gt;&lt;br /&gt;Extracting in /tmp/tmpZ5Nfca&lt;br /&gt;Now working in /tmp/tmpZ5Nfca/distribute-0.6.19&lt;br /&gt;Building a Distribute egg in /tmp/tmpmy8wXf&lt;br /&gt;/tmp/tmpmy8wXf/distribute-0.6.19-py2.4.egg&lt;br /&gt;While:&lt;br /&gt;&amp;nbsp;&amp;nbsp;Initializing.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Getting section buildout.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Initializing section buildout.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Getting option buildout:eggs.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Getting section libxml.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Initializing section libxml.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Installing recipe zc.recipe.egg==1.2.2.&lt;br /&gt;&amp;nbsp;&amp;nbsp;Getting distribution for 'zc.recipe.egg==1.2.2'.&lt;br /&gt;&lt;br /&gt;An internal error occurred due to a bug in either zc.buildout or in a&lt;br /&gt;recipe being used:&lt;br /&gt;Traceback (most recent call last):&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1804, in main&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;user_defaults, windows_restart, command)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 252, in __init__&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;options = self['buildout']&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1056, in __getitem__&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;options._initialize()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1130, in _initialize&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;self._dosub(k, v)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1177, in _dosub&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;v = '$$'.join([self._sub(s, seen) for s in v.split('$$')])&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1241, in _sub&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;v = self.buildout[section].get(option, None, seen)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1056, in __getitem__&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;options._initialize()&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1141, in _initialize&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;recipe_class = _install_and_load(reqs, 'zc.buildout', entry, buildout)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/buildout.py&amp;quot;, line 1097, in _install_and_load&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;prefer_final=not buildout.accept_buildout_test_releases)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/easy_install.py&amp;quot;, line 1090, in install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return installer.install(specs, working_set)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/easy_install.py&amp;quot;, line 896, in install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for dist in self._get_dist(requirement, ws, self._always_unzip):&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/easy_install.py&amp;quot;, line 790, in _get_dist&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dists = self._call_easy_install(&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/tmp/tmpmy8wXf/zc.buildout-1.5.2-py2.4.egg/zc/buildout/easy_install.py&amp;quot;, line 538, in _call_easy_install&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tmp = tempfile.mkdtemp(dir=dest)&lt;br /&gt;&amp;nbsp;&amp;nbsp;File &amp;quot;/usr/lib/python2.4/tempfile.py&amp;quot;, line 328, in mkdtemp&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;_os.mkdir(file, 0700)&lt;br /&gt;OSError: [Errno 2] No such file or directory: '/tmp/cynin_3_2_2/eggs/tmp7gQneU'&lt;br /&gt;&lt;br /&gt;can someone help, please?</description>
                <author>rob bob</author>


                <pubDate>Thu, 23 Jun 2011 16:48:42 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1307625322</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1307625322</link>
                <description>yes I had the same issue. The only solution is to do a buildout on the new 3.2.x branch. The new one works. </description>
                <author>Uemit Seren</author>


                <pubDate>Thu, 09 Jun 2011 13:15:23 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1306778194</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1306778194</link>
                <description>Hi everyone!&lt;br /&gt;&lt;br /&gt;I installed a Cyn.in instance months ago and it went perfectly smooth, but now i'm trying to install it again in a production environment and i get the following error:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://pastebin.com/iTSUF06Y" rel="nofollow"&gt;http://pastebin.com/iTSUF06Y&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks in advance for any help.</description>
                <author>HÃ©ctor Cen</author>


                <pubDate>Mon, 30 May 2011 17:56:37 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1299603306</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/quickstart-buildout/view/#1299603306</link>
                <description>Hey.&lt;br /&gt;That error was because I missed the &amp;quot;archetypes.schemaextender==1.5&amp;quot;&lt;br /&gt;&lt;br /&gt;Sorry. You guys had already mentioned it in here.&lt;br /&gt;&lt;br /&gt;So keeping sharp!&lt;br /&gt;Thanks again</description>
                <author>a</author>


                <pubDate>Tue, 08 Mar 2011 16:55:07 +0000</pubDate>

                
            </item>
        

    </channel>
</rss>

