From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 61C7A1382C5 for ; Sun, 10 Jan 2021 17:16:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68753E0AC1; Sun, 10 Jan 2021 17:16:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D449E0AC1 for ; Sun, 10 Jan 2021 17:16:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A475734101E for ; Sun, 10 Jan 2021 17:16:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E935B8 for ; Sun, 10 Jan 2021 17:16:34 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1610298978.cf9b688efe201def8de51a4cd233e4763e0c138a.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/uunf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/uunf/Manifest dev-ml/uunf/metadata.xml dev-ml/uunf/uunf-13.0.0.ebuild X-VCS-Directories: dev-ml/uunf/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: cf9b688efe201def8de51a4cd233e4763e0c138a X-VCS-Branch: master Date: Sun, 10 Jan 2021 17:16:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 09243d43-e9d5-42b4-8537-5cb01a2d16d1 X-Archives-Hash: 0963d437404235ae3f9c2a3b0e558d60 commit: cf9b688efe201def8de51a4cd233e4763e0c138a Author: Alfredo Tupone gentoo org> AuthorDate: Sun Jan 10 17:16:18 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sun Jan 10 17:16:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9b688e dev-ml/uunf: Copying from aballier overlay Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/uunf/Manifest | 1 + dev-ml/uunf/metadata.xml | 11 +++++++++++ dev-ml/uunf/uunf-13.0.0.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-ml/uunf/Manifest b/dev-ml/uunf/Manifest new file mode 100644 index 00000000000..7f4a79e2e13 --- /dev/null +++ b/dev-ml/uunf/Manifest @@ -0,0 +1 @@ +DIST uunf-13.0.0.tbz 39387 BLAKE2B fa8c46f63e2f8cf44cffe0db8c0aea73a0ffb6449f4a3c7c59baf4750db8e2364686276e6e5f284b2a528a45f02400274669c4e081533fbb25cdd36c6eb8fcb0 SHA512 ade9815b1d620a055a63dd0f8c5d5c54544eacfdcf0c6059cd20f1004a1319287f71021018fbc7e652bde738a97fae7e9d0963d5b192a4b0bb6e5b95456012a8 diff --git a/dev-ml/uunf/metadata.xml b/dev-ml/uunf/metadata.xml new file mode 100644 index 00000000000..434a612f282 --- /dev/null +++ b/dev-ml/uunf/metadata.xml @@ -0,0 +1,11 @@ + + + + + tupone@gentoo.org + Alfredo Tupone + + + dbuenzli/uunf + + diff --git a/dev-ml/uunf/uunf-13.0.0.ebuild b/dev-ml/uunf/uunf-13.0.0.ebuild new file mode 100644 index 00000000000..fcccf0d182d --- /dev/null +++ b/dev-ml/uunf/uunf-13.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit opam + +DESCRIPTION="Unicode text normalization" +HOMEPAGE="https://erratique.ch/software/uunf https://github.com/dbuenzli/uunf" +SRC_URI="https://erratique.ch/software/uunf/releases/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" +OPAM_FILE=opam + +src_compile() { + ocaml pkg/pkg.ml build \ + || die +}