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 2D0A81381F3 for ; Sun, 18 Oct 2020 21:59:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FFC4E099B; Sun, 18 Oct 2020 21:59:46 +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 3D147E0997 for ; Sun, 18 Oct 2020 21:59:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1488E340EC2 for ; Sun, 18 Oct 2020 21:59:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCB8A26 for ; Sun, 18 Oct 2020 21:59:43 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1603058367.6aa6716eb11e3005996a7b2613438daa3711f7a2.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zstd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zstd/Manifest dev-python/zstd/metadata.xml dev-python/zstd/zstd-1.4.5.1.ebuild X-VCS-Directories: dev-python/zstd/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 6aa6716eb11e3005996a7b2613438daa3711f7a2 X-VCS-Branch: master Date: Sun, 18 Oct 2020 21:59:43 +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: ed82b5ac-e6e9-45b0-971b-2089e73aaf18 X-Archives-Hash: 7ecc29670a31a2745b48412eb137e9f9 commit: 6aa6716eb11e3005996a7b2613438daa3711f7a2 Author: Matthew Thode gentoo org> AuthorDate: Sun Oct 18 19:36:19 2020 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun Oct 18 21:59:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aa6716e dev-python/zstd: initial add of 1.4.5.1 for cinder Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Matthew Thode gentoo.org> dev-python/zstd/Manifest | 1 + dev-python/zstd/metadata.xml | 15 +++++++++++++++ dev-python/zstd/zstd-1.4.5.1.ebuild | 17 +++++++++++++++++ 3 files changed, 33 insertions(+) diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest new file mode 100644 index 00000000000..fa2ef816594 --- /dev/null +++ b/dev-python/zstd/Manifest @@ -0,0 +1 @@ +DIST zstd-1.4.5.1.tar.gz 483105 BLAKE2B 5edd7d2c7cb26817d2a7f30536373d19a6939140dea3fb93589ff45495d51afbd1e98c4f73145869dd8a72a35c0e7543a7a21d688771746485b4dd275933dff8 SHA512 f27e255bc66798b2227d39eaa7648803e7753556b522d3dc37e82413f01dcff44b05f652c210e9832077876bd954a3abdad5ed1823f5f50217b83159bbaf896d diff --git a/dev-python/zstd/metadata.xml b/dev-python/zstd/metadata.xml new file mode 100644 index 00000000000..a3a4596ed6c --- /dev/null +++ b/dev-python/zstd/metadata.xml @@ -0,0 +1,15 @@ + + + + + python@gentoo.org + + + prometheanfire@gentoo.org + Matthew Thode + + + zstd + sergey-dryabzhinsky/python-zstd + + diff --git a/dev-python/zstd/zstd-1.4.5.1.ebuild b/dev-python/zstd/zstd-1.4.5.1.ebuild new file mode 100644 index 00000000000..1a0360e5f0f --- /dev/null +++ b/dev-python/zstd/zstd-1.4.5.1.ebuild @@ -0,0 +1,17 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_7 python3_8 ) +inherit distutils-r1 + +DESCRIPTION="Simple python bindings to Yann Collet ZSTD compression library." +HOMEPAGE="https://github.com/sergey-dryabzhinsky/python-zstd" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +DEPEND="app-arch/zstd"