#
|
|
# Copyright (C) 2007-2017 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:=gunicorn
|
|
PKG_VERSION:=20.0.4
|
|
PKG_RELEASE:=2
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
|
PKG_HASH:=1904bb2b8a43658807108d59c3f3d56c2b6121a701161de0ddf9ad140073c626
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/gunicorn/Default
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=WSGI HTTP Server for UNIX
|
|
URL:=https://gunicorn.org
|
|
endef
|
|
|
|
define Package/python3-gunicorn
|
|
$(call Package/gunicorn/Default)
|
|
TITLE:=WSGI HTTP Server for UNIX (library)
|
|
DEPENDS:=+python3
|
|
endef
|
|
|
|
define Package/python3-gunicorn/description
|
|
WSGI HTTP Server for UNIX (libraries)
|
|
endef
|
|
|
|
# Make sure that the binaries are not installed with the libraries
|
|
# That means adding some empty Py3Package/gunicorn3/install rules
|
|
define Py3Package/python3-gunicorn/install
|
|
:
|
|
endef
|
|
|
|
define Package/gunicorn3
|
|
$(call Package/gunicorn/Default)
|
|
DEPENDS:=+python3 +python3-setuptools +python3-gunicorn
|
|
endef
|
|
|
|
define Package/gunicorn3/description
|
|
WSGI HTTP Server for UNIX (daemon)
|
|
endef
|
|
|
|
define Package/gunicorn3/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) \
|
|
$(PKG_INSTALL_DIR)/usr/bin/gunicorn \
|
|
$(1)/usr/bin/gunicorn3
|
|
$(LN) gunicorn3 $(1)/usr/bin/gunicorn
|
|
$(call Python3/FixShebang,$(1)/usr/bin/*)
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-gunicorn))
|
|
$(eval $(call BuildPackage,python3-gunicorn))
|
|
$(eval $(call BuildPackage,python3-gunicorn-src))
|
|
$(eval $(call BuildPackage,gunicorn3))
|