Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zstd/
Date: Sat, 17 Apr 2021 06:23:07
Message-Id: 1618640488.421e1bec204788cd3c136b029b9e8dba4111a464.mgorny@gentoo
1 commit: 421e1bec204788cd3c136b029b9e8dba4111a464
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 06:03:32 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 06:21:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421e1bec
7
8 dev-python/zstd: Bump to 1.4.9.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zstd/Manifest | 1 +
13 dev-python/zstd/zstd-1.4.9.1.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest
17 index fa2ef816594..55da06cf3c5 100644
18 --- a/dev-python/zstd/Manifest
19 +++ b/dev-python/zstd/Manifest
20 @@ -1 +1,2 @@
21 DIST zstd-1.4.5.1.tar.gz 483105 BLAKE2B 5edd7d2c7cb26817d2a7f30536373d19a6939140dea3fb93589ff45495d51afbd1e98c4f73145869dd8a72a35c0e7543a7a21d688771746485b4dd275933dff8 SHA512 f27e255bc66798b2227d39eaa7648803e7753556b522d3dc37e82413f01dcff44b05f652c210e9832077876bd954a3abdad5ed1823f5f50217b83159bbaf896d
22 +DIST zstd-1.4.9.1.tar.gz 516353 BLAKE2B ec318c1b6e3d44a8959dae61c2ba3f2210c0cb9daf88519b07b1df8801b8345a2b9c18fddab497a478a1c6e03118f42f9526019a624f86f347691b7daea17bb0 SHA512 53816d252611ce3a1aa0dfa7b568ce8ffba07dd8ca6009ab3406680e674f5040633718cc65e1d5a0cfea1e1f5dd746a8f3e91b313b2be39b0ed4c6f9d887b24e
23
24 diff --git a/dev-python/zstd/zstd-1.4.9.1.ebuild b/dev-python/zstd/zstd-1.4.9.1.ebuild
25 new file mode 100644
26 index 00000000000..c7b83b1cea0
27 --- /dev/null
28 +++ b/dev-python/zstd/zstd-1.4.9.1.ebuild
29 @@ -0,0 +1,21 @@
30 +# Copyright 2020-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Simple python bindings to Yann Collet ZSTD compression library"
39 +HOMEPAGE="https://github.com/sergey-dryabzhinsky/python-zstd"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86"
45 +
46 +RDEPEND="
47 + app-arch/zstd:=
48 + !dev-python/zstandard[${PYTHON_USEDEP}]
49 +"
50 +DEPEND=${RDEPEND}