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 04CD4158094 for ; Fri, 23 Sep 2022 03:07:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFC1CE0D04; Fri, 23 Sep 2022 03:06:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 93637E0D04 for ; Fri, 23 Sep 2022 03:06:58 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0066340B54 for ; Fri, 23 Sep 2022 03:06:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 430725E0 for ; Fri, 23 Sep 2022 03:06:56 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1663902401.f2ccf7a0d791c7fa222ab4b1c5556d11eeb9a812.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nsync/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nsync/Manifest dev-libs/nsync/nsync-1.25.0.ebuild X-VCS-Directories: dev-libs/nsync/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: f2ccf7a0d791c7fa222ab4b1c5556d11eeb9a812 X-VCS-Branch: master Date: Fri, 23 Sep 2022 03:06:56 +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: 59f2cc2b-68ed-4f2f-a128-c36321acf0a7 X-Archives-Hash: 2f16d180d90a15b7e30d455e70074a40 commit: f2ccf7a0d791c7fa222ab4b1c5556d11eeb9a812 Author: Jason Zaman gentoo org> AuthorDate: Sun Sep 18 18:51:27 2022 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri Sep 23 03:06:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ccf7a0 dev-libs/nsync: add 1.25.0 Signed-off-by: Jason Zaman gentoo.org> dev-libs/nsync/Manifest | 1 + dev-libs/nsync/nsync-1.25.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-libs/nsync/Manifest b/dev-libs/nsync/Manifest index eae75e833d61..4779ea248761 100644 --- a/dev-libs/nsync/Manifest +++ b/dev-libs/nsync/Manifest @@ -1 +1,2 @@ DIST nsync-1.24.0.tar.gz 155132 BLAKE2B 9a914b408faf8fff96a57fd3868c34aa96b4243ef2acd30dbdbe1fc90a1818d58ffc96bc6d016f5539c0e266fc1fb633952edba0a51b115904c9d6b06a35f7f8 SHA512 14dd582488072123a353c967664ed9a3f636865bb35e64d7256dcc809539129fa47c7979a4009fd45c9341cac537a4ca6b4b617ba2cae1d3995a7c251376339f +DIST nsync-1.25.0.tar.gz 155250 BLAKE2B e30e9a72d999e589a1422014f81fbab29f61802b0ebeb9f08793d3a4d50fb5f66e404558cb7f46f2a2c499c1804cd013c12604038222121680988c85b7e186ff SHA512 8e7a3b99237fb68bf3fd85490394e3fe2b73ff805b1bc885549856908599b98c86600c71888d19d9d36a56caa91cad176a1e9fc413686e5018cefe3908364c6b diff --git a/dev-libs/nsync/nsync-1.25.0.ebuild b/dev-libs/nsync/nsync-1.25.0.ebuild new file mode 100644 index 000000000000..9f9a537adafb --- /dev/null +++ b/dev-libs/nsync/nsync-1.25.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="C library that exports various synchronization primitives, such as mutexes" +HOMEPAGE="https://github.com/google/nsync" +SRC_URI="https://github.com/google/nsync/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +src_configure() { + local mycmakeargs=( + -DNSYNC_ENABLE_TESTS=$(usex test) + ) + cmake_src_configure +}