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 90C6C1382C5 for ; Sat, 13 Mar 2021 15:26:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5450EE08A2; Sat, 13 Mar 2021 15:26:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 382B9E08A2 for ; Sat, 13 Mar 2021 15:26:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D835C340BB9 for ; Sat, 13 Mar 2021 15:26:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCC495FC for ; Sat, 13 Mar 2021 15:26:19 +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: <1615649017.8be04c1f1884b59da47602d0ed384f575abfde4a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/num/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/num/num-1.3.ebuild X-VCS-Directories: dev-ml/num/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8be04c1f1884b59da47602d0ed384f575abfde4a X-VCS-Branch: master Date: Sat, 13 Mar 2021 15:26:19 +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: 533bb717-e160-4d1a-8d5d-829fc29988c6 X-Archives-Hash: 4a0560e65a43e4e8f561b6972a6408d3 commit: 8be04c1f1884b59da47602d0ed384f575abfde4a Author: Sam James gentoo org> AuthorDate: Sat Mar 13 13:21:34 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 13 15:23:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8be04c1f dev-ml/num: drop 1.3 Signed-off-by: Sam James gentoo.org> dev-ml/num/num-1.3.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-ml/num/num-1.3.ebuild b/dev-ml/num/num-1.3.ebuild deleted file mode 100644 index 8cea1449708..00000000000 --- a/dev-ml/num/num-1.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit multilib findlib - -DESCRIPTION="Library for arbitrary-precision integer and rational arithmetic" -HOMEPAGE="https://github.com/ocaml/num" -SRC_URI="https://github.com/ocaml/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1-with-linking-exception" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=">=dev-lang/ocaml-4.09.0[ocamlopt] - >=dev-ml/findlib-1.8.1[ocamlopt]" -RDEPEND="${DEPEND}" -BDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-cflags.patch -) - -src_compile() { - emake CFLAGS="${CFLAGS}" -} - -src_install() { - findlib_src_preinst - OCAMLPATH="${OCAMLFIND_DESTDIR}" emake install DESTDIR="${D}" -}