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 123F4138335 for ; Fri, 20 Sep 2019 15:36:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1472EE0886; Fri, 20 Sep 2019 15:36:27 +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 BB152E0897 for ; Fri, 20 Sep 2019 15:36:26 +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 1871234B730 for ; Fri, 20 Sep 2019 15:36:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 336CA7F6 for ; Fri, 20 Sep 2019 15:36:22 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1568993013.52fa8ed86d349ddcd0a18784cdcf1b69485a70e8.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/aws-checksums/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/aws-checksums/Manifest dev-libs/aws-checksums/aws-checksums-0.1.3.ebuild dev-libs/aws-checksums/metadata.xml X-VCS-Directories: dev-libs/aws-checksums/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 52fa8ed86d349ddcd0a18784cdcf1b69485a70e8 X-VCS-Branch: master Date: Fri, 20 Sep 2019 15:36:22 +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: 57597587-ee8d-4fad-b5b2-0b06a36fefd1 X-Archives-Hash: cdd0e729bac9b5ef388f9546986968f6 commit: 52fa8ed86d349ddcd0a18784cdcf1b69485a70e8 Author: Sven Eden gmx net> AuthorDate: Thu Aug 15 16:21:00 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Sep 20 15:23:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52fa8ed8 dev-libs/aws-checksums: HW accelerated CRC32c and CRC32 with fallbacks Cross-Platform HW accelerated CRC32c and CRC32 with fallback to efficient SW implementations. C interface with language bindings for each of our SDKs Dependency for dev-libs/aws-sdk-cpp-1.7.178 Signed-off-by: Sven Eden gmx.net> Bug: https://bugs.gentoo.org/666494 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/aws-checksums/Manifest | 1 + dev-libs/aws-checksums/aws-checksums-0.1.3.ebuild | 23 +++++++++++++++++++++++ dev-libs/aws-checksums/metadata.xml | 17 +++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-libs/aws-checksums/Manifest b/dev-libs/aws-checksums/Manifest new file mode 100644 index 00000000000..257865b6bd9 --- /dev/null +++ b/dev-libs/aws-checksums/Manifest @@ -0,0 +1 @@ +DIST aws-checksums-0.1.3.tar.gz 78242 BLAKE2B e78f3bb34e124351ad494e86e579613799afebcfe491fb36b20190121f2bf9de9d96714ad304a7fcd702708f5be417c6dbafe65606b2fe42c340edc796a3ecf3 SHA512 79bf71a6c4c268b27efe8a6a3c4b90281da4ce7f6e4c1c62fce80b11a4756ecfd4dc2b19624ace3f54137113d0cb56a517de0b91dd6338ee8ca069756bca13f4 diff --git a/dev-libs/aws-checksums/aws-checksums-0.1.3.ebuild b/dev-libs/aws-checksums/aws-checksums-0.1.3.ebuild new file mode 100644 index 00000000000..cb764eeadcc --- /dev/null +++ b/dev-libs/aws-checksums/aws-checksums-0.1.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils + +DESCRIPTION="Cross-Platform HW accelerated CRC32c and CRC32 with software fallbacks" +HOMEPAGE="https://github.com/awslabs/aws-checksums" +SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="test" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=$(usex test) + ) + cmake-utils_src_configure +} diff --git a/dev-libs/aws-checksums/metadata.xml b/dev-libs/aws-checksums/metadata.xml new file mode 100644 index 00000000000..d0278a72a5c --- /dev/null +++ b/dev-libs/aws-checksums/metadata.xml @@ -0,0 +1,17 @@ + + + + + yamakuzure@gmx.net + Sven Eden + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Cross-Platform HW accelerated CRC32c and CRC32 with fallback to + efficient SW implementations. C interface with language + bindings for each of our SDKs + +