2018-06-23 19:48:01 +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-webpack-loader
|
|
|
|
|
PKG_VERSION:=0.6.0
|
2020-02-05 11:13:45 +00:00
|
|
|
|
PKG_RELEASE:=7
|
2018-06-23 19:48:01 +00:00
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
2018-06-23 19:48:01 +00:00
|
|
|
|
PKG_HASH:=60bab6b9a037a5346fad12d2a70a6bc046afb33154cf75ed640b93d3ebd5f520
|
|
|
|
|
|
2019-07-03 09:05:05 +00:00
|
|
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
|
include ../pypi.mk
|
2018-06-23 19:48:01 +00:00
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-07-03 09:05:05 +00:00
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
|
define Package/django-webpack-loader/Default
|
2018-06-23 19:48:01 +00:00
|
|
|
|
SUBMENU:=Python
|
|
|
|
|
SECTION:=lang
|
|
|
|
|
CATEGORY:=Languages
|
2019-05-16 14:50:47 +00:00
|
|
|
|
TITLE:=Transparently use webpack in django
|
2018-06-23 19:48:01 +00:00
|
|
|
|
URL:=https://github.com/owais/django-webpack-loader
|
2019-07-03 09:05:05 +00:00
|
|
|
|
endef
|
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
|
define Package/python3-django-webpack-loader
|
|
|
|
|
$(call Package/django-webpack-loader/Default)
|
2019-07-03 09:05:05 +00:00
|
|
|
|
DEPENDS:= \
|
2020-01-30 14:44:26 +00:00
|
|
|
|
+PACKAGE_python3-django-webpack-loader:python3 \
|
2020-02-05 11:13:45 +00:00
|
|
|
|
+PACKAGE_python3-django-webpack-loader:python3-django1
|
2019-07-03 09:05:05 +00:00
|
|
|
|
VARIANT:=python3
|
|
|
|
|
endef
|
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
|
define Package/python3-django-webpack-loader/description
|
2020-04-01 14:21:16 +00:00
|
|
|
|
Use webpack to generate your static bundles without django’s staticfiles or opaque wrappers.
|
2019-07-03 09:05:05 +00:00
|
|
|
|
.
|
|
|
|
|
(Variant for Python3)
|
|
|
|
|
endef
|
|
|
|
|
|
2020-01-30 14:44:26 +00:00
|
|
|
|
$(eval $(call Py3Package,python3-django-webpack-loader))
|
|
|
|
|
$(eval $(call BuildPackage,python3-django-webpack-loader))
|
|
|
|
|
$(eval $(call BuildPackage,python3-django-webpack-loader-src))
|