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/imagesize/
Date: Sat, 02 Jul 2022 04:47:20
Message-Id: 1656737214.26ccbfeeacbdb2057f0063382185ee1c87de1455.mgorny@gentoo
1 commit: 26ccbfeeacbdb2057f0063382185ee1c87de1455
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 03:51:29 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 04:46:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26ccbfee
7
8 dev-python/imagesize: Bump to 1.4.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/imagesize/Manifest | 1 +
13 dev-python/imagesize/imagesize-1.4.1.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/imagesize/Manifest b/dev-python/imagesize/Manifest
17 index 71e78e0de0a7..5fd0680db284 100644
18 --- a/dev-python/imagesize/Manifest
19 +++ b/dev-python/imagesize/Manifest
20 @@ -1 +1,2 @@
21 DIST imagesize-1.3.0.tar.gz 1279535 BLAKE2B 926b90ad493b790db41941467dd2dd0385f86064fc1ce9547670a52f925965effc9b8b7f61057158a4452cac2223b65dbfaecc34a19ddaf52067a9057560b56a SHA512 3686e513f03cc16f5237ca206cd1bf131eea968015ee4906f620ab1c8932ed24d19881807225a02fa319d0465da4b01851ec0bd0a47146ef914053185bc0c755
22 +DIST imagesize-1.4.1.tar.gz 1280026 BLAKE2B 9293f56277e40a1ad74a96b2857e46535fd5bd320ab7dee48432762206f29b4f78e64d8713e19ea26c3f405ab6905ded3b04273d04e781f512e981bfe83e3f8c SHA512 f191d7fe34a01ab21b0f4f6519df8ab2a53c1ca54956f4d825d9cec5bd5f4c569491bdc26cb36fcaad2c453c35e51f69379f091362e206453aaefbda4802daa4
23
24 diff --git a/dev-python/imagesize/imagesize-1.4.1.ebuild b/dev-python/imagesize/imagesize-1.4.1.ebuild
25 new file mode 100644
26 index 000000000000..02d40a1da3d4
27 --- /dev/null
28 +++ b/dev-python/imagesize/imagesize-1.4.1.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Pure Python module for getting image size from png/jpeg/jpeg2000/gif files"
41 +HOMEPAGE="
42 + https://github.com/shibukawa/imagesize_py/
43 + https://pypi.org/project/imagesize/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-solaris"
50 +
51 +distutils_enable_tests pytest
52 +
53 +EPYTEST_DESELECT=(
54 + # requires Internet
55 + test/test_get_filelike.py::test_get_filelike
56 +)