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 287C6138359 for ; Thu, 8 Oct 2020 21:23:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51B5CE085B; Thu, 8 Oct 2020 21:23:57 +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 38B17E085B for ; Thu, 8 Oct 2020 21:23:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B81FC33BEF4 for ; Thu, 8 Oct 2020 21:23:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 326C433A for ; Thu, 8 Oct 2020 21:23:53 +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: <1602188168.adb952e04174d932eb899f64892b2ff5ce0463fc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/robin-map/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/robin-map/Manifest dev-cpp/robin-map/metadata.xml dev-cpp/robin-map/robin-map-0.6.3.ebuild dev-cpp/robin-map/robin-map-9999.ebuild X-VCS-Directories: dev-cpp/robin-map/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: adb952e04174d932eb899f64892b2ff5ce0463fc X-VCS-Branch: master Date: Thu, 8 Oct 2020 21:23:53 +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: 69610375-7cb8-4524-9d81-00152f59d89f X-Archives-Hash: b76542b4ea3bd4abaf1133a771b76149 commit: adb952e04174d932eb899f64892b2ff5ce0463fc Author: Aisha Tammy aisha cc> AuthorDate: Wed Sep 30 21:19:39 2020 +0000 Commit: Sam James gentoo org> CommitDate: Thu Oct 8 20:16:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb952e0 dev-cpp/robin-map: new package (fast robinhood hashing in c++) new dependency for media-libs/openimageio Closes: https://bugs.gentoo.org/678292 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> Signed-off-by: Sam James gentoo.org> dev-cpp/robin-map/Manifest | 1 + dev-cpp/robin-map/metadata.xml | 12 ++++++++++++ dev-cpp/robin-map/robin-map-0.6.3.ebuild | 20 ++++++++++++++++++++ dev-cpp/robin-map/robin-map-9999.ebuild | 20 ++++++++++++++++++++ 4 files changed, 53 insertions(+) diff --git a/dev-cpp/robin-map/Manifest b/dev-cpp/robin-map/Manifest new file mode 100644 index 00000000000..fbc684a3677 --- /dev/null +++ b/dev-cpp/robin-map/Manifest @@ -0,0 +1 @@ +DIST robin-map-0.6.3.tar.gz 64506 BLAKE2B 46a2b5b47346016695db0c49f73cfbf8530b7db0a31527030eb00f3b6f0695325ab6fe16de1e60d6b1d0793818bdd1e31e50117f2e2e4c50154f65b38ac66d84 SHA512 485557f300d33bda62bb8accdf246819ee8ffe956bc022e7ddca54ff6ad1a9fdb8db8d80690add3ef238e834d1eb8e2905920cb0a0674e7df010f6946d01297b diff --git a/dev-cpp/robin-map/metadata.xml b/dev-cpp/robin-map/metadata.xml new file mode 100644 index 00000000000..8238cc0570c --- /dev/null +++ b/dev-cpp/robin-map/metadata.xml @@ -0,0 +1,12 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + sci@gentoo.org + Gentoo Science Project + + diff --git a/dev-cpp/robin-map/robin-map-0.6.3.ebuild b/dev-cpp/robin-map/robin-map-0.6.3.ebuild new file mode 100644 index 00000000000..99255a6ea18 --- /dev/null +++ b/dev-cpp/robin-map/robin-map-0.6.3.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="C++ fast hash map and hash set using robin hood hashing" +HOMEPAGE="https://github.com/Tessil/robin-map" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Tessil/robin-map" +else + SRC_URI="https://github.com/Tessil/robin-map/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" diff --git a/dev-cpp/robin-map/robin-map-9999.ebuild b/dev-cpp/robin-map/robin-map-9999.ebuild new file mode 100644 index 00000000000..99255a6ea18 --- /dev/null +++ b/dev-cpp/robin-map/robin-map-9999.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="C++ fast hash map and hash set using robin hood hashing" +HOMEPAGE="https://github.com/Tessil/robin-map" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Tessil/robin-map" +else + SRC_URI="https://github.com/Tessil/robin-map/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +fi + +LICENSE="MIT" +SLOT="0"