You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2019 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-astral
  9. PKG_VERSION:=1.10.1
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=astral
  12. PKG_HASH:=d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1
  13. PKG_LICENSE:=Apache-2.0
  14. PKG_LICENSE_FILES:=LICENSE
  15. PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python-package.mk
  19. include ../python3-package.mk
  20. define Package/python-astral/Default
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=Calculations for the position of the sun and moon
  25. URL:=https://github.com/sffjunkie/astral
  26. endef
  27. define Package/python-astral
  28. $(call Package/python-astral/Default)
  29. DEPENDS+= \
  30. +PACKAGE_python-astral:python-light \
  31. +PACKAGE_python-astral:python-pytz
  32. VARIANT:=python
  33. endef
  34. define Package/python3-astral
  35. $(call Package/python-astral/Default)
  36. DEPENDS+= \
  37. +PACKAGE_python3-astral:python3-light \
  38. +PACKAGE_python3-astral:python3-pytz
  39. VARIANT:=python3
  40. endef
  41. define Package/python-astral/description
  42. Astral is a python module for calculating the times of various aspects of the sun and moon.
  43. endef
  44. define Package/python3-astral/description
  45. $(call Package/python-astral/description)
  46. .
  47. (Variant for Python3)
  48. endef
  49. $(eval $(call PyPackage,python-astral))
  50. $(eval $(call BuildPackage,python-astral))
  51. $(eval $(call BuildPackage,python-astral-src))
  52. $(eval $(call Py3Package,python3-astral))
  53. $(eval $(call BuildPackage,python3-astral))
  54. $(eval $(call BuildPackage,python3-astral-src))