1. 08 Jan, 2015 1 commit
  2. 06 Jan, 2015 3 commits
  3. 05 Jan, 2015 1 commit
  4. 26 Dec, 2014 1 commit
  5. 25 Dec, 2014 1 commit
  6. 19 Dec, 2014 5 commits
  7. 11 Dec, 2014 2 commits
  8. 08 Dec, 2014 1 commit
  9. 21 Nov, 2014 1 commit
  10. 20 Nov, 2014 1 commit
  11. 05 Nov, 2014 1 commit
  12. 04 Nov, 2014 1 commit
  13. 29 Oct, 2014 1 commit
  14. 28 Oct, 2014 3 commits
  15. 23 Oct, 2014 1 commit
  16. 13 Oct, 2014 1 commit
  17. 12 Oct, 2014 3 commits
  18. 11 Oct, 2014 3 commits
  19. 06 Oct, 2014 1 commit
  20. 30 Sep, 2014 1 commit
  21. 26 Sep, 2014 2 commits
  22. 28 Aug, 2014 2 commits
  23. 23 Aug, 2014 3 commits
    • cclauss's avatar
      Modified to use recommended local, compact syntax · c8241573
      cclauss authored
      local PYTHON_VERSION=${1:-2.7.8}
      
      Thanks for the tip.  You learn something new every day.
      c8241573
    • cclauss's avatar
      Add download_python function to reduce repetition · ee93719b
      cclauss authored
      Create a common download_python() function that allows most other files in the build/runtimes directory to be simplified to something of the form:
      
      ```
      #!/usr/bin/env bash
      # Build Path: /app/.heroku/python/
      # Build Deps: libraries/sqlite
      
      OUT_PREFIX=$1
      
      source ./download_python
      download_python "2.7.8"
      cd src
      
      ./configure --prefix=$OUT_PREFIX
      make
      make install
      ```
      ee93719b
    • cclauss's avatar
      download_python() · 361eb532
      cclauss authored
      361eb532