Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wand/
Date: Thu, 04 Aug 2022 17:55:39
Message-Id: 1659635697.2699eecbfaadb4a020c4cfcb9d301044cf937189.arthurzam@gentoo
1 commit: 2699eecbfaadb4a020c4cfcb9d301044cf937189
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 17:24:41 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 17:54:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2699eecb
7
8 dev-python/wand: add 0.6.9
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/wand/Manifest | 1 +
13 dev-python/wand/wand-0.6.9.ebuild | 40 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-python/wand/Manifest b/dev-python/wand/Manifest
17 index ccc377e34f8d..6ff9c203df35 100644
18 --- a/dev-python/wand/Manifest
19 +++ b/dev-python/wand/Manifest
20 @@ -1,2 +1,3 @@
21 DIST Wand-0.6.7.tar.gz 11686093 BLAKE2B 58abbdc22eb1603ed42e2e2473c0ed2b9026c9c0a499bb885512b56ecf01fb4ffe450979808bba2b4c4466994f86bea9a9c0ced216f8338c845b96a755f39c9f SHA512 e79ecb909f6ad7b3ddae217bb7b27f3c010d22a40eb99866e2a6eb07346000acbead280176e3352da13c20b68a341c751c55d6203bef7968522c8dbcfcab0b06
22 DIST Wand-0.6.8.tar.gz 11884527 BLAKE2B 45784abf55682d8b5e101cc4fc93f0492f9275a2805f06dbda2d98e28c6359c7df84fd7870b12348c0a6c513ae3f2bafba61a00020a41263d6a91fd67d9ce682 SHA512 111eef211edd8d5a6c825f0b455db5510c91b43852165934dbab36a9cdeea7e920987c98d975fb8c7f82ac19f20867c0ed5c8c1e2f9dd9467bc30931b4a03dd1
23 +DIST Wand-0.6.9.tar.gz 11885077 BLAKE2B 15390e6aca4ac947dbeba84e2f6805689d4c44e318f7dd4827c6cf2cca42066968de0d9a7a932c950f79ef82bc090d8061e86b63234477f4807b5dc1cc36f735 SHA512 23adcb3360bc6a579aa4e4ff406631821cca05c8ad5ca057510a3185bf09ee58c13940706ce3b725545cc46ca5e8aaaebeb9b418e2a91cf15b570e223ede6552
24
25 diff --git a/dev-python/wand/wand-0.6.9.ebuild b/dev-python/wand/wand-0.6.9.ebuild
26 new file mode 100644
27 index 000000000000..753e731d2674
28 --- /dev/null
29 +++ b/dev-python/wand/wand-0.6.9.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +MY_P=${P^}
42 +DESCRIPTION="Ctypes-based simple ImageMagick binding for Python"
43 +HOMEPAGE="
44 + https://docs.wand-py.org/
45 + https://github.com/emcconville/wand/
46 + https://pypi.org/project/Wand/
47 +"
48 +SRC_URI="mirror://pypi/${MY_P::1}/${PN^}/${MY_P}.tar.gz"
49 +S=${WORKDIR}/${MY_P}
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +
55 +RDEPEND="
56 + media-gfx/imagemagick
57 +"
58 +BDEPEND="
59 + test? (
60 + media-gfx/imagemagick[fftw,jpeg,png,truetype,xml]
61 + )
62 +"
63 +
64 +distutils_enable_sphinx docs
65 +distutils_enable_tests pytest
66 +
67 +python_test() {
68 + # PDF support is blocked by the default ImageMagick security policy
69 + epytest --skip-pdf
70 +}