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 87A6A1382C5 for ; Sat, 17 Apr 2021 06:23:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 345D2E0841; Sat, 17 Apr 2021 06:23:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1AF61E0841 for ; Sat, 17 Apr 2021 06:23:02 +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 856BE340B10 for ; Sat, 17 Apr 2021 06:23:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E58EA6EB for ; Sat, 17 Apr 2021 06:22:58 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1618640488.421e1bec204788cd3c136b029b9e8dba4111a464.mgorny@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/zstd-1.4.9.1.ebuild X-VCS-Directories: dev-python/zstd/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 421e1bec204788cd3c136b029b9e8dba4111a464 X-VCS-Branch: master Date: Sat, 17 Apr 2021 06:22:58 +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: 0c7d4389-4a4e-4019-a376-6446f7951df1 X-Archives-Hash: 231de4e63f75a7fd53b77562546cd3b2 commit: 421e1bec204788cd3c136b029b9e8dba4111a464 Author: Michał Górny gentoo org> AuthorDate: Sat Apr 17 06:03:32 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 17 06:21:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421e1bec dev-python/zstd: Bump to 1.4.9.1 Signed-off-by: Michał Górny gentoo.org> dev-python/zstd/Manifest | 1 + dev-python/zstd/zstd-1.4.9.1.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest index fa2ef816594..55da06cf3c5 100644 --- a/dev-python/zstd/Manifest +++ b/dev-python/zstd/Manifest @@ -1 +1,2 @@ DIST zstd-1.4.5.1.tar.gz 483105 BLAKE2B 5edd7d2c7cb26817d2a7f30536373d19a6939140dea3fb93589ff45495d51afbd1e98c4f73145869dd8a72a35c0e7543a7a21d688771746485b4dd275933dff8 SHA512 f27e255bc66798b2227d39eaa7648803e7753556b522d3dc37e82413f01dcff44b05f652c210e9832077876bd954a3abdad5ed1823f5f50217b83159bbaf896d +DIST zstd-1.4.9.1.tar.gz 516353 BLAKE2B ec318c1b6e3d44a8959dae61c2ba3f2210c0cb9daf88519b07b1df8801b8345a2b9c18fddab497a478a1c6e03118f42f9526019a624f86f347691b7daea17bb0 SHA512 53816d252611ce3a1aa0dfa7b568ce8ffba07dd8ca6009ab3406680e674f5040633718cc65e1d5a0cfea1e1f5dd746a8f3e91b313b2be39b0ed4c6f9d887b24e diff --git a/dev-python/zstd/zstd-1.4.9.1.ebuild b/dev-python/zstd/zstd-1.4.9.1.ebuild new file mode 100644 index 00000000000..c7b83b1cea0 --- /dev/null +++ b/dev-python/zstd/zstd-1.4.9.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +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" + +RDEPEND=" + app-arch/zstd:= + !dev-python/zstandard[${PYTHON_USEDEP}] +" +DEPEND=${RDEPEND}