2019-02-12 05:45:31 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2019 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-pytz
|
2022-10-31 01:32:19 +08:00
|
|
|
PKG_VERSION:=2022.5
|
2021-10-04 20:12:12 +08:00
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
2019-02-12 05:45:31 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
PYPI_NAME:=pytz
|
2022-10-31 01:32:19 +08:00
|
|
|
PKG_HASH:=c4d88f472f54d615e9cd582a5004d1e5f624854a6a27a6211591c251f22a6914
|
2019-04-11 20:03:52 +08:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
include ../pypi.mk
|
2019-02-12 05:45:31 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
2020-04-22 01:27:50 +08:00
|
|
|
define Package/python3-pytz
|
2019-02-12 05:45:31 +08:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2020-04-22 01:27:50 +08:00
|
|
|
TITLE:=World timezone definitions, modern and historical
|
2019-04-11 20:03:52 +08:00
|
|
|
URL:=https://pythonhosted.org/pytz/
|
2020-04-22 01:27:50 +08:00
|
|
|
DEPENDS:=+python3-light
|
2019-02-12 05:45:31 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-pytz/description
|
2020-04-01 22:21:16 +08:00
|
|
|
World timezone definitions, modern and historical
|
2019-02-12 05:45:31 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-pytz))
|
|
|
|
$(eval $(call BuildPackage,python3-pytz))
|
|
|
|
$(eval $(call BuildPackage,python3-pytz-src))
|