PageRenderTime 37ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/src/ports/oses/_template.tt_data

http://github.com/perlorg/cpanorg
Unknown | 67 lines | 52 code | 15 blank | 0 comment | 0 complexity | 8a412e4e3dbe5179315f4a563ffdb88e MD5 | raw file
  1. [%
  2. # Setup information
  3. os_config = {
  4. # Name of the OS
  5. name => '',
  6. # URL of the OS (e.g. http://www.microsoft.com/windows/)
  7. url => '',
  8. # Is it a specific vendor who runs the OS?
  9. vendor => '',
  10. # Specifying linux will add a 'see also'
  11. kernel => 'linux',
  12. # Only needed for Windows so far
  13. # not_included_in_os_packages => 1,
  14. # When was this file last reviewed (yyyy-mm-dd)?
  15. information_last_verified => '2011-03-26',
  16. }
  17. %]
  18. [% BLOCK show_os %]
  19. <p>Some basic copy, can go here</p>
  20. [% PROCESS binary_view binary_source => [
  21. {
  22. name => 'ActiveState',
  23. url => activestate_url,
  24. notes => ''
  25. },
  26. {
  27. name => '',
  28. url => '',
  29. notes => ''
  30. },
  31. ]
  32. %]
  33. [% PROCESS version_view os_versions => {
  34. versions => [
  35. {
  36. # name and/or version
  37. os_name => '',
  38. os_version => '',
  39. os_release => '', # optional release date of the os (yyyy-mm-dd)
  40. # include '+patches' if applicable please (e.g. Debian)
  41. # (so people know they would not get the same by just building themselves)
  42. perl_version => '',
  43. },
  44. {
  45. os_name => '',
  46. os_version => '',
  47. perl_version => '',
  48. },
  49. ],
  50. } %]
  51. <p>Add specific instructions for building from source here</a>
  52. [% END %]