summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/libidn/libidn_1.36.bb
diff options
context:
space:
mode:
authorZang Ruochen <zangrc.fnst@cn.fujitsu.com>2020-08-27 21:17:04 +0800
committerKhem Raj <raj.khem@gmail.com>2020-08-27 00:03:51 -0700
commit33a1714050e655040beab7cf2199a6821d17b2b1 (patch)
treeb021eb09aa9e125b4cfff07466a0a0ca526af21a /meta-oe/recipes-extended/libidn/libidn_1.36.bb
parent8340965ac6baa74b6cf986be9fcd03a469a2048a (diff)
downloadmeta-openembedded-33a1714050e655040beab7cf2199a6821d17b2b1.tar.gz
libidn: upgrade 1.35 -> 1.36
-License-Update: Copyright year updated to 2020. Refresh the following patch: 0001-idn-format-security-warnings.patch Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/libidn/libidn_1.36.bb')
-rw-r--r--meta-oe/recipes-extended/libidn/libidn_1.36.bb40
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libidn/libidn_1.36.bb b/meta-oe/recipes-extended/libidn/libidn_1.36.bb
new file mode 100644
index 000000000..4c6c8fde4
--- /dev/null
+++ b/meta-oe/recipes-extended/libidn/libidn_1.36.bb
@@ -0,0 +1,40 @@
1SUMMARY = "Internationalized Domain Name support library"
2DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group."
3HOMEPAGE = "http://www.gnu.org/software/libidn/"
4SECTION = "libs"
5LICENSE = "(LGPLv2.1+ | LGPLv3) & GPLv3+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=df4be47940a91ee69556f5f71eed4aec \
7 file://COPYING.LESSERv2;md5=4fbd65380cdd255951079008b364516c \
8 file://COPYING.LESSERv3;md5=e6a600fd5e1d9cbde2d983680233ad02 \
9 file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
10 file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \
11 file://lib/idna.h;endline=21;md5=c381d797e2d7fbdace7c147b1285d076 \
12 file://src/idn.c;endline=20;md5=7d88aa87b0494d690bdf7748fe08d536"
13DEPENDS = "virtual/libiconv autoconf-archive"
14
15inherit pkgconfig autotools gettext texinfo gtk-doc
16
17SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \
18 file://dont-depend-on-help2man.patch \
19 file://0001-idn-format-security-warnings.patch \
20 "
21
22SRC_URI[md5sum] = "813c7b268d1051ca02c3610986126f38"
23SRC_URI[sha256sum] = "14b67108344d81ba844631640df77c9071d9fb0659b080326ff5424e86b14038"
24
25# command tool is under GPLv3+, while libidn itself is under LGPLv2.1+ or LGPLv3
26# so package command into a separate package
27PACKAGES =+ "idn"
28FILES_idn = "${bindir}/*"
29
30LICENSE_${PN} = "LGPLv2.1+ | LGPLv3"
31LICENSE_idn = "GPLv3+"
32
33EXTRA_OECONF = "--disable-csharp"
34
35do_install_append() {
36 rm -rf ${D}${datadir}/emacs
37}
38
39BBCLASSEXTEND = "native nativesdk"
40