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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BDB1B158042 for ; Sat, 16 Nov 2024 21:39:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9595DE0965; Sat, 16 Nov 2024 21:39:53 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA11DE0965 for ; Sat, 16 Nov 2024 21:39:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C688C342F8D for ; Sat, 16 Nov 2024 21:39:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DADED81 for ; Sat, 16 Nov 2024 21:39:49 +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: <1731793144.a67b483e5caee3d56205b59a0a87b4ff1a09b481.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/clipper2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/clipper2/Manifest sci-mathematics/clipper2/clipper2-1.4.0.ebuild X-VCS-Directories: sci-mathematics/clipper2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a67b483e5caee3d56205b59a0a87b4ff1a09b481 X-VCS-Branch: master Date: Sat, 16 Nov 2024 21:39:49 +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: f6774df7-cbb6-47fe-9c74-a1ef6699e997 X-Archives-Hash: d8942e3543e142a8805cfa2c95b2c8a5 commit: a67b483e5caee3d56205b59a0a87b4ff1a09b481 Author: Chris Mayo gmail com> AuthorDate: Thu Sep 26 18:21:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 16 21:39:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67b483e sci-mathematics/clipper2: new package, add 1.4.0 Signed-off-by: Chris Mayo gmail.com> Signed-off-by: Sam James gentoo.org> sci-mathematics/clipper2/Manifest | 1 + sci-mathematics/clipper2/clipper2-1.4.0.ebuild | 30 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/sci-mathematics/clipper2/Manifest b/sci-mathematics/clipper2/Manifest new file mode 100644 index 000000000000..025aefaf6771 --- /dev/null +++ b/sci-mathematics/clipper2/Manifest @@ -0,0 +1 @@ +DIST Clipper2_1.4.0.tar.gz 600352 BLAKE2B 0ba268ba691fde4aef456d8f6ef1810a8c13b77c5bb932296b11b5f0d96dfe70f2d617d7ba013f85817dbc01a800d0ab1fba566e4ab56efde6541c00f3d7f359 SHA512 91036e81244f3615095d7cd8522f9c4a32ea66f802e3d190393eb8939e1a706b69c69c3a5b7c6522235c075dd6ecd45f21bffb47448ba72191ddcf05e9e93128 diff --git a/sci-mathematics/clipper2/clipper2-1.4.0.ebuild b/sci-mathematics/clipper2/clipper2-1.4.0.ebuild new file mode 100644 index 000000000000..530396047bdf --- /dev/null +++ b/sci-mathematics/clipper2/clipper2-1.4.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="Clipper2" +MY_P=${MY_PN}_${PV} + +inherit cmake + +DESCRIPTION="Polygon Clipping and Offsetting" +HOMEPAGE="https://www.angusj.com/clipper2/Docs/Overview.htm" +SRC_URI="https://github.com/AngusJohnson/Clipper2/archive/refs/tags/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${MY_P}/CPP" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64" + +RESTRICT="mirror" + +src_configure() { + local mycmakeargs=( + -DCLIPPER2_UTILS=OFF + -DCLIPPER2_EXAMPLES=OFF + -DCLIPPER2_TESTS=OFF + -DCLIPPER2_USINGZ=OFF # manifold src/third_party/CMakeLists.txt + ) + cmake_src_configure +}