meta.yaml.template 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {% set version = "2023c" %}
  2. package:
  3. name: tzdata
  4. version: {{ version }}
  5. source:
  6. - url: https://data.iana.org/time-zones/releases/tzdata{{ version }}.tar.gz
  7. sha256: 3f510b5d1b4ae9bb38e485aa302a776b317fb3637bdb6404c4adf7b6cadd965c
  8. - url: https://data.iana.org/time-zones/releases/tzcode{{ version }}.tar.gz
  9. sha256: 46d17f2bb19ad73290f03a203006152e0fa0d7b11e5b71467c4a823811b214e7
  10. build:
  11. number: 0
  12. noarch: generic
  13. # This package needs to be noarch because it uses POSIX system APIs.
  14. # The Windows build will be skipped when built to avoid Prefect failures.
  15. # There is no Windows port available and porting to Windows is not trivial.
  16. # However, the compiled package can be used on Windows.
  17. # Tzdata is utilizing system header files which is not
  18. # compatible with macOS.
  19. # Since we are using using a noarch build, we can
  20. # simply focus linux as our main build
  21. skip: True # [not (linux and x86_64)]
  22. ignore_run_exports:
  23. - libgcc-ng
  24. requirements:
  25. build:
  26. - {{ compiler('c') }}
  27. - make
  28. host:
  29. run:
  30. about:
  31. home: https://www.iana.org/time-zones
  32. dev_url: https://github.com/eggert/tz
  33. doc_url: https://data.iana.org/time-zones/tz-link.html
  34. license: CC-PDDC OR BSD-3-Clause
  35. license_file: LICENSE
  36. license_family: BSD
  37. summary: The Time Zone Database (called tz, tzdb or zoneinfo)
  38. description: |
  39. The Time Zone Database (called tz, tzdb or zoneinfo) contains code and
  40. data that represent the history of local time for many representative
  41. locations around the globe. It is updated periodically to reflect
  42. changes made by political bodies to time zone boundaries, UTC offsets,
  43. and daylight-saving rules.
  44. extra:
  45. recipe-maintainers:
  46. - ocefpaf
  47. - mbargull
  48. - pganssle