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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C2943158086 for ; Sun, 5 Dec 2021 03:22:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 243582BC087; Sun, 5 Dec 2021 03:22:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F23D2BC069 for ; Sun, 5 Dec 2021 03:22:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4864F3434D3 for ; Sun, 5 Dec 2021 03:22:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A14FD10C for ; Sun, 5 Dec 2021 03:22:33 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1638674549.a82f801bd1dfa5b72e922407d7973de0101cc815.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-stdint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/ocaml-stdint/Manifest dev-ml/ocaml-stdint/metadata.xml dev-ml/ocaml-stdint/ocaml-stdint-0.7.0.ebuild X-VCS-Directories: dev-ml/ocaml-stdint/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: a82f801bd1dfa5b72e922407d7973de0101cc815 X-VCS-Branch: master Date: Sun, 5 Dec 2021 03:22:33 +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: 1e0afd11-f2b2-447e-8e8b-7a2130ae5e0f X-Archives-Hash: 25c7d7344900a2048692f56584461815 commit: a82f801bd1dfa5b72e922407d7973de0101cc815 Author: Maciej Barć gentoo org> AuthorDate: Sun Dec 5 02:07:56 2021 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Dec 5 03:22:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82f801b dev-ml/ocaml-stdint: new package; add version 0.7.0 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> dev-ml/ocaml-stdint/Manifest | 1 + dev-ml/ocaml-stdint/metadata.xml | 24 ++++++++++++++++++++++++ dev-ml/ocaml-stdint/ocaml-stdint-0.7.0.ebuild | 18 ++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-ml/ocaml-stdint/Manifest b/dev-ml/ocaml-stdint/Manifest new file mode 100644 index 000000000000..59e578b0df1e --- /dev/null +++ b/dev-ml/ocaml-stdint/Manifest @@ -0,0 +1 @@ +DIST ocaml-stdint-0.7.0.tar.gz 34507 BLAKE2B d06768911798a6a3736b68395fc5ca2d53288fe0056953ed189938b10aeeb9469511fc1ece39e49c403954f4bd88034d63ec53d7e8b63d8e8c41ff0761ccb2e6 SHA512 5e0c4164cb1f55a63f0928f5c1868cc2bba61d356b63cc20cb6b066fd09824eb99d6d1fd577f52678155d6744a591fdd8377b4c44bbe015918462f4576b43529 diff --git a/dev-ml/ocaml-stdint/metadata.xml b/dev-ml/ocaml-stdint/metadata.xml new file mode 100644 index 000000000000..a4c37e9a3e5a --- /dev/null +++ b/dev-ml/ocaml-stdint/metadata.xml @@ -0,0 +1,24 @@ + + + + + + ml@gentoo.org + ML + + + The stdint library provides signed and unsigned integer types of various + fixed widths: 8, 16, 24, 32, 40, 48, 56, 64 and 128 bit. + This interface is similar to Int32 and Int64 from the base library but + provides more functions and constants like arithmetic and bit-wise + operations, constants like maximum and minimum values, infix operators + conversion to and from every other integer type (including int, float and + nativeint), parsing from and conversion to readable strings (binary, octal, + decimal, hexademical), conversion to and from buffers in both big endian + and little endian byte order. + + + https://github.com/andrenth/ocaml-stdint/issues/ + andrenth/ocaml-stdint + + diff --git a/dev-ml/ocaml-stdint/ocaml-stdint-0.7.0.ebuild b/dev-ml/ocaml-stdint/ocaml-stdint-0.7.0.ebuild new file mode 100644 index 000000000000..6772aba07058 --- /dev/null +++ b/dev-ml/ocaml-stdint/ocaml-stdint-0.7.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DUNE_PKG_NAME="stdint" + +inherit dune + +DESCRIPTION="Signed and unsigned integer types having specified widths" +HOMEPAGE="https://github.com/andrenth/ocaml-stdint" +SRC_URI="https://github.com/andrenth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+ocamlopt" +RESTRICT="test" # qcheck not yet packaged