django-constance: convert to python pkg format + add python3 variant
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
parent
f026dba26e
commit
1b2936a2d0
2 changed files with 31 additions and 13 deletions
|
@ -17,31 +17,49 @@ PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/d/django-constanc
|
||||||
PKG_HASH:=a49735063b2c30015d2e52a90609ea9798da722ed070f091de51714758a5d018
|
PKG_HASH:=a49735063b2c30015d2e52a90609ea9798da722ed070f091de51714758a5d018
|
||||||
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-django-constance-$(PKG_VERSION)
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include ../python-package.mk
|
include ../python-package.mk
|
||||||
|
include ../python3-package.mk
|
||||||
|
|
||||||
define Package/django-constance
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
||||||
|
|
||||||
|
define Package/python-django-constance/Default
|
||||||
SUBMENU:=Python
|
SUBMENU:=Python
|
||||||
SECTION:=lang
|
SECTION:=lang
|
||||||
CATEGORY:=Languages
|
CATEGORY:=Languages
|
||||||
TITLE:=Django live settings with pluggable backends, including Redis.
|
TITLE:=Django live settings with pluggable backends, including Redis.
|
||||||
URL:=https://github.com/jazzband/django-constance
|
URL:=https://github.com/jazzband/django-constance
|
||||||
DEPENDS:=+python +python-django
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/django-constance/description
|
define Package/python-django-constance
|
||||||
|
$(call Package/python-django-constance/Default)
|
||||||
|
DEPENDS:= \
|
||||||
|
+PACKAGE_python-django-constance:python \
|
||||||
|
+PACKAGE_python-django-constance:python-django
|
||||||
|
VARIANT:=python
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/python-django-constance/description
|
||||||
Django live settings with pluggable backends, including Redis.
|
Django live settings with pluggable backends, including Redis.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Package/python3-django-constance
|
||||||
$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
|
$(call Package/python-django-constance/Default)
|
||||||
|
DEPENDS:= \
|
||||||
|
+PACKAGE_python3-django-constance:python3 \
|
||||||
|
+PACKAGE_python3-django-constance:python3-django
|
||||||
|
VARIANT:=python3
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/django-constance/install
|
define Package/python3-django-constance/description
|
||||||
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
$(call define Package/python-django-constance/description)
|
||||||
$(CP) \
|
.
|
||||||
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
(Variant for Python3)
|
||||||
$(1)$(PYTHON_PKG_DIR)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,django-constance))
|
$(eval $(call PyPackage,python-django-constance))
|
||||||
|
$(eval $(call BuildPackage,python-django-constance))
|
||||||
|
$(eval $(call Py3Package,python3-django-constance))
|
||||||
|
$(eval $(call BuildPackage,python3-django-constance))
|
||||||
|
|
|
@ -24,7 +24,7 @@ include ../../lang/python/python-package.mk
|
||||||
|
|
||||||
SEAFILE_PYTHON_DEPENDS:= \
|
SEAFILE_PYTHON_DEPENDS:= \
|
||||||
simplejson chardet dateutil mysql pytz qrcode requests requests-oauthlib \
|
simplejson chardet dateutil mysql pytz qrcode requests requests-oauthlib \
|
||||||
django
|
django django-constance
|
||||||
|
|
||||||
define Package/seafile-seahub
|
define Package/seafile-seahub
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
|
@ -32,7 +32,7 @@ define Package/seafile-seahub
|
||||||
TITLE:=Seafile server - seahub component
|
TITLE:=Seafile server - seahub component
|
||||||
URL:=https://seafile.com/
|
URL:=https://seafile.com/
|
||||||
DEPENDS:=+python +pillow +django-appconf \
|
DEPENDS:=+python +pillow +django-appconf \
|
||||||
+django-compressor +django-constance +django-formtools +django-jsonfield \
|
+django-compressor +django-formtools +django-jsonfield \
|
||||||
+django-picklefield +django-postoffice +django-restframework \
|
+django-picklefield +django-postoffice +django-restframework \
|
||||||
+django-simple-captcha +django-statici18n +django-webpack-loader \
|
+django-simple-captcha +django-statici18n +django-webpack-loader \
|
||||||
+flup +gunicorn +openpyxl \
|
+flup +gunicorn +openpyxl \
|
||||||
|
|
Loading…
Reference in a new issue