2016-04-30 08:37:30 +00:00
|
|
|
#
|
2017-02-13 21:03:14 +00:00
|
|
|
# Copyright (C) 2007-2017 OpenWrt.org
|
2016-04-30 08:37:30 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=django-restframework
|
2021-03-29 06:46:09 +00:00
|
|
|
PKG_VERSION:=3.12.4
|
2020-08-05 19:02:06 +00:00
|
|
|
PKG_RELEASE:=1
|
2016-04-30 08:37:30 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=djangorestframework
|
2021-03-29 06:46:09 +00:00
|
|
|
PKG_HASH:=f747949a8ddac876e879190df194b925c177cdeb725a099db1460872f7c0a7f2
|
2019-06-25 07:17:10 +00:00
|
|
|
|
2019-03-14 08:52:49 +00:00
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
2019-06-25 07:17:10 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
|
|
PKG_LICENSE_FILES:=LICENSE.md
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2016-04-30 08:37:30 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-06-25 07:17:10 +00:00
|
|
|
include ../python3-package.mk
|
2016-04-30 08:37:30 +00:00
|
|
|
|
2020-01-31 07:29:20 +00:00
|
|
|
define Package/python3-django-restframework
|
2016-04-30 08:37:30 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=Web APIs for Django, made easy.
|
2018-09-17 21:36:21 +00:00
|
|
|
URL:=https://www.django-rest-framework.org
|
2020-02-05 11:13:45 +00:00
|
|
|
DEPENDS:=+python3 +django
|
2016-04-30 08:37:30 +00:00
|
|
|
endef
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
define Package/python3-django-restframework/description
|
2020-01-31 07:29:20 +00:00
|
|
|
Web APIs for Django, made easy.
|
2016-04-30 08:37:30 +00:00
|
|
|
endef
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
$(eval $(call Py3Package,python3-django-restframework))
|
|
|
|
$(eval $(call BuildPackage,python3-django-restframework))
|
|
|
|
$(eval $(call BuildPackage,python3-django-restframework-src))
|