summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Schmaus <flow@gentoo.org>2024-10-27 18:11:27 +0100
committerFlorian Schmaus <flow@gentoo.org>2024-10-27 18:18:34 +0100
commitb2a7619385d82abfcc6bdcd8bf5f91f0216d6f82 (patch)
treed23665594f44602431e5bb4845999145a2555988 /dev-erlang
parentapp-containers/distrobuilder: add optfeature info for building win iso (diff)
downloadgentoo-b2a7619385d82abfcc6bdcd8bf5f91f0216d6f82.tar.gz
gentoo-b2a7619385d82abfcc6bdcd8bf5f91f0216d6f82.tar.bz2
gentoo-b2a7619385d82abfcc6bdcd8bf5f91f0216d6f82.zip
dev-erlang/idna: add 6.1.1
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'dev-erlang')
-rw-r--r--dev-erlang/idna/Manifest2
-rw-r--r--dev-erlang/idna/idna-6.1.1.ebuild26
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-erlang/idna/Manifest b/dev-erlang/idna/Manifest
index 7d3a68b0157c..bc64c4329106 100644
--- a/dev-erlang/idna/Manifest
+++ b/dev-erlang/idna/Manifest
@@ -1 +1,3 @@
DIST idna-6.0.0.tar.gz 740802 BLAKE2B 91bc6ee4031450b00659415125e8cec3f034f988bb7d307d323b0a7ca53450d42f0e84a044ccb6c198107c253b70e54466e77b2b0b4e9dd7f7051da49872be33 SHA512 59f8996199f7e3391b1da1b8fb1ebb70e442838eab1f26af9a8a8545f3e1b9f72f0afd65108272a51d846b34e0e8abe9623f10c89156ebca3d87b6b3eb63a066
+DIST idna-6.1.1-remove-unicode_util_compat.patch 4649 BLAKE2B 3b288f8b45f11ded2562102ce7635f10e9efb469fe24a2ad1dd773bdf1f96b91895483c34a90dc4ba05a83a1bc94b0c6e1073551b9ee182224df6360177a2ef5 SHA512 8c9fcbf6b49ac939074416dcb218730dbfe02567ecb324cc2255b1398c9d870c12616b2087c31ae9a819cf27f76cf19d355ae6ab1e77f07e8711a3fbfe0d19d8
+DIST idna-6.1.1.tar.gz 765828 BLAKE2B 78dfd67df85773644b09a909819bae3f79bfa7df55dd7e958841867281b7b9e6ded72b6e07d8787223eb82e414e33ef71bff89af45b9f9880b3a5c654353e838 SHA512 aa1c4321e1925c8eb6b9cbab61c0216ed2837027382a1a0c36de10959a428a52443f225f901d64740f8b8b3d755990651fa74594d13b36e4131a5d0223a58608
diff --git a/dev-erlang/idna/idna-6.1.1.ebuild b/dev-erlang/idna/idna-6.1.1.ebuild
new file mode 100644
index 000000000000..180f95ec3aba
--- /dev/null
+++ b/dev-erlang/idna/idna-6.1.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit rebar
+
+DESCRIPTION="Erlang IDNA implementation"
+HOMEPAGE="https://github.com/benoitc/erlang-idna"
+SRC_URI="
+ https://github.com/benoitc/erlang-idna/archive/${PV}.tar.gz
+ -> ${P}.tar.gz
+ https://github.com/benoitc/erlang-idna/commit/230a9175a5edb1b1a47fb09af2f4341eab93b1b0.patch
+ -> idna-6.1.1-remove-unicode_util_compat.patch
+"
+S="${WORKDIR}/erlang-idna-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~sparc ~x86"
+
+DEPEND=">=dev-lang/erlang-21.0"
+
+PATCHES=(
+ "${DISTDIR}"/idna-6.1.1-remove-unicode_util_compat.patch
+)