diff mbox series

[OpenWrt-Devel] packages/python-idna: Add missing dependency on python(3)-codecs

Message ID 20181105020639.20813-1-daniel.santos@pobox.com
State Rejected
Delegated to: Hauke Mehrtens
Headers show
Series [OpenWrt-Devel] packages/python-idna: Add missing dependency on python(3)-codecs | expand

Commit Message

Daniel Santos Nov. 5, 2018, 2:06 a.m. UTC
Signed-off-by: Daniel Santos <daniel.santos@pobox.com>
---
 lang/python/python-idna/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Hauke Mehrtens Nov. 24, 2018, 1:40 p.m. UTC | #1
On 11/5/18 3:06 AM, Daniel Santos wrote:
> Signed-off-by: Daniel Santos <daniel.santos@pobox.com>
> ---
>  lang/python/python-idna/Makefile | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
Hi,

This package is maintained in the packages feed at github, see here:
https://github.com/openwrt/packages
Please create a pull request against the package feed on github instead.

Hauke
diff mbox series

Patch

diff --git a/lang/python/python-idna/Makefile b/lang/python/python-idna/Makefile
index 47f4b9668..1f36b21e9 100644
--- a/lang/python/python-idna/Makefile
+++ b/lang/python/python-idna/Makefile
@@ -37,14 +37,14 @@  endef
 define Package/python-idna
 $(call Package/python-idna/Default)
   TITLE:=python-idna
-  DEPENDS:=+PACKAGE_python-idna:python-light
+  DEPENDS:=+PACKAGE_python-idna:python-light +python-codecs
   VARIANT:=python
 endef
 
 define Package/python3-idna
 $(call Package/python-idna/Default)
   TITLE:=python3-idna
-  DEPENDS:=+PACKAGE_python3-idna:python3-light
+  DEPENDS:=+PACKAGE_python3-idna:python3-light +python3-codecs
   VARIANT:=python3
 endef