mirror of
https://github.com/openwrt/packages.git
synced 2026-06-17 21:20:21 +04:00
9c97b73b1a
Add a HostBuild variant so it can be used as a /host build dependency, mirroring python-certifi/idna/urllib3. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2023 Jeffery To
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-charset-normalizer
|
|
PKG_VERSION:=3.4.7
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=charset-normalizer
|
|
PYPI_SOURCE_NAME:=charset_normalizer
|
|
PKG_HASH:=ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
HOST_BUILD_DEPENDS:= \
|
|
python3/host \
|
|
python-build/host \
|
|
python-installer/host \
|
|
python-wheel/host \
|
|
python-setuptools/host
|
|
PKG_BUILD_DEPENDS:=python-setuptools/host
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include ../python3-package.mk
|
|
include ../python3-host-build.mk
|
|
|
|
define Package/python3-charset-normalizer
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Real First Universal Charset Detector
|
|
URL:=https://github.com/Ousret/charset_normalizer
|
|
DEPENDS:=+python3-light +python3-codecs +python3-logging
|
|
endef
|
|
|
|
define Package/python3-charset-normalizer/description
|
|
A library that helps you read text from an unknown charset encoding.
|
|
Motivated by chardet, I'm trying to resolve the issue by taking a new
|
|
approach. All IANA character set names for which the Python core library
|
|
provides codecs are supported.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-charset-normalizer))
|
|
$(eval $(call BuildPackage,python3-charset-normalizer))
|
|
$(eval $(call BuildPackage,python3-charset-normalizer-src))
|
|
$(eval $(call HostBuild))
|