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 C802D158086 for ; Wed, 6 Oct 2021 01:02:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99672E092A; Wed, 6 Oct 2021 01:02:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F88AE092A for ; Wed, 6 Oct 2021 01:02:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23526343271 for ; Wed, 6 Oct 2021 01:02:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97B55114 for ; Wed, 6 Oct 2021 01:02:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1633482053.69c7a2558f6cd68a061e658b0ef709f4b9a148ad.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/uucp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/uucp/Manifest dev-ml/uucp/uucp-14.0.0.ebuild X-VCS-Directories: dev-ml/uucp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 69c7a2558f6cd68a061e658b0ef709f4b9a148ad X-VCS-Branch: master Date: Wed, 6 Oct 2021 01:02:35 +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: bcc981b8-5ffb-4a3b-a859-58bba289be82 X-Archives-Hash: 0b77e6fe03eb2b28d445a02730b7227d commit: 69c7a2558f6cd68a061e658b0ef709f4b9a148ad Author: Sam James gentoo org> AuthorDate: Wed Oct 6 00:36:39 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 6 01:00:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69c7a255 dev-ml/uucp: add 14.0.0 Signed-off-by: Sam James gentoo.org> dev-ml/uucp/Manifest | 1 + dev-ml/uucp/uucp-14.0.0.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-ml/uucp/Manifest b/dev-ml/uucp/Manifest index 08d06a8a8e9..783aec0484d 100644 --- a/dev-ml/uucp/Manifest +++ b/dev-ml/uucp/Manifest @@ -1 +1,2 @@ DIST uucp-13.0.0.tbz 466488 BLAKE2B 90b62446ed069f95b0ca8bbad8273b215f0a66f6a3d19639d60a73f440268e9274d4e98e7ac8a534bbb6a34ab485e989432894f22f2f5c1303ca49f828efe859 SHA512 24d0fc75ba337115fd6445d3c3dfa60fe5f6920b227cd8360cd60ad51b652ccc2129a47f195f7559d99635367e64855343dc03de1109987f296a280e0fefff4d +DIST uucp-14.0.0.tbz 476162 BLAKE2B 1c75b7bf98858bc60dee12bebfa99556afd6b344b65b12a4eafcbd39c57e2359f1a47aa0f28c5450f078db95d78ab545eecf84d0d5dbadb2bf1705c17e7179a4 SHA512 2d0224aed5d5accbb121624898f08598e8c74a2415942f159a54221c0cdac62ed64fc70a039c833e50110cefce77754ada9ac2d58f79a6fc9331135326fe6899 diff --git a/dev-ml/uucp/uucp-14.0.0.ebuild b/dev-ml/uucp/uucp-14.0.0.ebuild new file mode 100644 index 00000000000..ec89c6b0ae3 --- /dev/null +++ b/dev-ml/uucp/uucp-14.0.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit opam + +DESCRIPTION="Unicode character properties for OCaml" +HOMEPAGE="https://erratique.ch/software/uucp https://github.com/dbuenzli/uucp" +SRC_URI="https://erratique.ch/software/uucp/releases/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-ml/topkg + dev-ml/findlib" +RDEPEND="${DEPEND}" +BDEPEND="dev-ml/ocamlbuild" +OPAM_FILE=opam + +src_compile() { + ocaml pkg/pkg.ml build \ + --with-uutf true \ + --with-uunf false \ + --with-cmdliner true \ + || die +}