1. 28 Sep, 2016 5 commits
    • Alain Takoudjou's avatar
      slapos softwaretype: fix parse error on '+ =' when using buildout 2 · e473ed69
      Alain Takoudjou authored
      Add a class SlapConfigParser which overrite ConfigParser.write method to fix parse problem when
      configuration like:
      [section]
      foo += bar
      
      is included in buildout file. softwaretype recipe will generate
      buildout file with foo + = bar because ConfigParser doesn't reconize +=
      delimiter and read key as "foo +", value as "bar".
      Then ConfigParser.write method generate
      
      [section]
      foo + = bar
      ...
      
      This is invalid with buildout version 2
      
      /reviewed-on !100
      e473ed69
    • Douglas's avatar
      wendelin: custom test runner to load our own libstdc++ · 82df050e
      Douglas authored
      @Tyagov, please review.
      
      Now the test runners use the LD_PRELOAD environment variable to load
      the correct libstdc++ built by slapos and restart themselves.
      
      The restart is necessary because LD_PRELOAD is only taken into account
      at the time the process is started. Changing this environment variable
      in runtime has no effects.
      
      Tests results are available at Nexedi's ERP5 and are 100% ok: https://nexedi.erp5.net/test_result_module/20160927-3FA05624.
      
      /reviewed-on !99
      82df050e
    • Vincent Pelletier's avatar
      erp5: Improve replication setup support. · 5ff0a4e0
      Vincent Pelletier authored
      Document how to setup replication.
      Add support for no-zope ERP5 instance, so it is possible to setup a
      replicating, full-featured ERP5 Cluster instance tree without providing
      service until it needs to take over its upstream, or to become
      otherwise independent.
      5ff0a4e0
    • Vincent Pelletier's avatar
      publish: Access "-extends"-referenced sections during __init__ · a50c91ef
      Vincent Pelletier authored
      Buildout expects all needed sections to have been accessed during the
      sectoin initialisation pass. It does not like having them accessed during
      the "install" pass, and emits a very cryptic error:
        While:
          Installing publish.
        Error: Missing option: publish-early:__buildout_signature__
      a50c91ef
    • Vincent Pelletier's avatar
      publish: Remove unused global. · db9c68f9
      Vincent Pelletier authored
      db9c68f9
  2. 27 Sep, 2016 6 commits
  3. 26 Sep, 2016 4 commits
  4. 23 Sep, 2016 2 commits
  5. 22 Sep, 2016 2 commits
  6. 21 Sep, 2016 7 commits
  7. 20 Sep, 2016 4 commits
  8. 19 Sep, 2016 7 commits
  9. 16 Sep, 2016 3 commits