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 245081382C5 for ; Wed, 2 Dec 2020 20:29:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D6DCE081B; Wed, 2 Dec 2020 20:29:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3D4A7E081B for ; Wed, 2 Dec 2020 20:29:32 +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 032AB34106B for ; Wed, 2 Dec 2020 20:29:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98E9D38A for ; Wed, 2 Dec 2020 20:29:29 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1606940963.d009a3cf4cf566092e31f1afa04b4aea6b10cbd8.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysimdjson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pysimdjson/Manifest dev-python/pysimdjson/metadata.xml dev-python/pysimdjson/pysimdjson-3.1.1.ebuild X-VCS-Directories: dev-python/pysimdjson/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: d009a3cf4cf566092e31f1afa04b4aea6b10cbd8 X-VCS-Branch: master Date: Wed, 2 Dec 2020 20:29:29 +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: 79f22993-8c0c-41c1-83af-701dc8851a0d X-Archives-Hash: 7f6c2b0bf2dd9221686c0a12b0f45b9a commit: d009a3cf4cf566092e31f1afa04b4aea6b10cbd8 Author: Patrick McLean sony com> AuthorDate: Wed Dec 2 20:29:06 2020 +0000 Commit: Patrick McLean gentoo org> CommitDate: Wed Dec 2 20:29:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d009a3cf dev-python/pysimdjson: New package Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Patrick McLean gentoo.org> dev-python/pysimdjson/Manifest | 1 + dev-python/pysimdjson/metadata.xml | 8 ++++++++ dev-python/pysimdjson/pysimdjson-3.1.1.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/pysimdjson/Manifest b/dev-python/pysimdjson/Manifest new file mode 100644 index 00000000000..455d688d30b --- /dev/null +++ b/dev-python/pysimdjson/Manifest @@ -0,0 +1 @@ +DIST pysimdjson-3.1.1.tar.gz 3286141 BLAKE2B f1fc63ffcaf524f23112438a8669caf4b4ffa0190bb20e2b851f61dfae386fe02bff1746dd4e68499bdaff3420d41401424fde1332222fe49211d32e09fdcab8 SHA512 9b1080d70f06e5a6d6467769a8146f642adee2c08391a87dd86eca9b0eb7666d9fed47a83d991843b07c2b96906dbf0ccacf2425bfc3ce4cb22731e03b12122e diff --git a/dev-python/pysimdjson/metadata.xml b/dev-python/pysimdjson/metadata.xml new file mode 100644 index 00000000000..cee379b1540 --- /dev/null +++ b/dev-python/pysimdjson/metadata.xml @@ -0,0 +1,8 @@ + + + + + chutzpah@gentoo.org + Patrick McLean + + diff --git a/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild b/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild new file mode 100644 index 00000000000..13cae8be7e3 --- /dev/null +++ b/dev-python/pysimdjson/pysimdjson-3.1.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..8} ) +inherit distutils-r1 + +DESCRIPTION="Python bindings for simdjson" +HOMEPAGE="https://github.com/TkTech/pysimdjson" +SRC_URI="https://github.com/TkTech/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/simdjson +" +BDEPEND=" + dev-python/pybind11[${PYTHON_USEDEP}] +" +distutils_enable_tests pytest