diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-07-13 13:39:35 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2023-08-25 01:47:42 +0800 |
commit | 329f9a139157840ad129991e961a63f7f4362d62 (patch) | |
tree | 47a01927cb38c4ce931ba7f1d5c3b5be9a318f22 /lang/python/python3/files/python3-package-asyncio.mk | |
parent | 87631ecdd4ece794ae600d35e259cc1227795313 (diff) |
python3: Fix package descriptions
* Fix default Python package description not included in individual
package descriptions
* Update default Python package description text (from General Python
FAQ, "What is Python?")
* Add package descriptions for Python module packages
* Reduce duplication in package titles
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python/python3/files/python3-package-asyncio.mk')
-rw-r--r-- | lang/python/python3/files/python3-package-asyncio.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/python/python3/files/python3-package-asyncio.mk b/lang/python/python3/files/python3-package-asyncio.mk index 52eccae92..c4c313940 100644 --- a/lang/python/python3/files/python3-package-asyncio.mk +++ b/lang/python/python3/files/python3-package-asyncio.mk @@ -7,10 +7,16 @@ define Package/python3-asyncio $(call Package/python3/Default) - TITLE:=Python $(PYTHON3_VERSION) asyncio module + TITLE+= asyncio module DEPENDS:=+python3-light endef +define Package/python3-asyncio/description +$(call Package/python3/Default/description) + +This package contains the asyncio module. +endef + $(eval $(call Py3BasePackage,python3-asyncio, \ /usr/lib/python$(PYTHON3_VERSION)/asyncio \ )) |