1. 26 Jan, 2016 7 commits
    • Kazuhiko Shiozaki's avatar
      39377206
    • Kazuhiko Shiozaki's avatar
      efda3810
    • Kirill Smelkov's avatar
      zc.recipe.egg: Support environment in :develop · dc68f3ab
      Kirill Smelkov authored
      Currently only zc.recipe.egg:custom supports setting environment
      variables, and zc.recipe.egg:develop does not.
      
      My motivation for allowing setting environment in :develop is
      wendelin.core
      
          https://lab.nexedi.cn/nexedi/slapos/blob/b5faab3b/component/wendelin.core/buildout.cfg
      
      There we have [wendelin.core] part which installs released egg from
      pypi, and [wendelin.core-dev] part which installs wendelin.core from
      its latest git version via zc.recipe.egg:develop .
      
      The problem is, wendelin.core for setup.py to work, needs git available,
      and with slapos we usually don't have git available on base system, so
      we build it by our own and do something like
      
          [wendelin.core-dev]
          recipe = zc.recipe.egg:develop
          environment = wendelin.core-dev-env
      
          [wendelin.core-dev-env]
          # wendelin.core-dev needs git to build
          PATH = ${git:location}/bin:%(PATH)s
      
      and the problem is environment does not currently work for
      zc.recipe.egg:develop, and thus git is not found -> build fails.
      
      ~~~~
      
      In order to support environment in :develop, we just move environment
      setting/restoring bits from Custom to Base, and provide Base.install() which
      uses this bits. Custom & Develop .install() becomes ._install() which gets
      hooked into Base.install() .
      
      I've tested the patch only manually, because currently automated tests are
      broken in a lot of places for slapos.buildout and zc.recipe.egg .
      
      /cc @kazuhiko, @Tyagov
      dc68f3ab
    • Kazuhiko Shiozaki's avatar
      zc.recipe.egg: Support on the fly pathces. · b38a68e4
      Kazuhiko Shiozaki authored
      - Support on the fly patches in zc.recipe.egg by ``EGGNAME-patches``,
        ``EGGNAME-patch-options``, ``EGGNAME-patch-binary`` (or
        ``patch-binary``) and ``EGGNAME-patch-revision`` options.
      
      - Support on the fly patches in zc.recipe.egg:custom by ``patches``,
        ``patch-options``, ``patch-binary`` and ``patch-revision`` options.
        (options ``EGGNAME-*`` are also supported as well).
      b38a68e4
    • Kazuhiko Shiozaki's avatar
      baa473b7
    • Łukasz Nowak's avatar
      Chomp ../ from beginging of filenames. · c19d705a
      Łukasz Nowak authored
      In order to have as canonical as possible paths, chomp ../ from filenames and
      recalculate base.
      c19d705a
    • Kazuhiko Shiozaki's avatar
      Support ${:_profile_base_location_}. · 65ec6283
      Kazuhiko Shiozaki authored
      65ec6283
  2. 29 Oct, 2015 5 commits
  3. 28 Oct, 2015 3 commits
  4. 26 Oct, 2015 3 commits
  5. 24 Oct, 2015 1 commit
  6. 15 Oct, 2015 2 commits
  7. 14 Oct, 2015 11 commits
  8. 11 Oct, 2015 2 commits
  9. 06 Oct, 2015 1 commit
  10. 02 Oct, 2015 5 commits