2018-06-23 19:33:31 +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-formtools
|
|
|
|
PKG_VERSION:=2.1
|
2020-04-21 17:27:50 +00:00
|
|
|
PKG_RELEASE:=8
|
2019-05-16 14:48:14 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
2019-06-25 06:52:17 +00:00
|
|
|
PKG_HASH:=7703793f1675aa6e871f9fed147e8563816d7a5b9affdc5e3459899596217f7c
|
|
|
|
|
|
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
2018-06-23 19:33:31 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
2019-05-16 14:48:14 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2018-06-23 19:33:31 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2018-06-23 19:33:31 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-06-25 06:52:17 +00:00
|
|
|
include ../python3-package.mk
|
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-django-formtools
|
2018-06-23 19:33:31 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2019-05-16 14:48:14 +00:00
|
|
|
TITLE:=High-level abstractions for Django forms
|
2020-01-30 14:44:26 +00:00
|
|
|
URL:=https://django-formtools.readthedocs.io
|
2019-06-25 06:52:17 +00:00
|
|
|
DEPENDS:= \
|
2020-04-21 17:27:50 +00:00
|
|
|
+python3 \
|
|
|
|
+python3-django1
|
2019-06-25 06:52:17 +00:00
|
|
|
endef
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
define Package/python3-django-formtools/description
|
2020-04-01 14:21:16 +00:00
|
|
|
Django "formtools" is a set of high-level abstractions for Django forms.
|
|
|
|
Currently for form previews and multi-step forms.
|
2019-06-25 06:52:17 +00:00
|
|
|
endef
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
$(eval $(call Py3Package,python3-django-formtools))
|
|
|
|
$(eval $(call BuildPackage,python3-django-formtools))
|
|
|
|
$(eval $(call BuildPackage,python3-django-formtools-src))
|