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 E0E22138359 for ; Sat, 14 Nov 2020 00:20:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33B5AE0831; Sat, 14 Nov 2020 00:20:33 +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 17172E0831 for ; Sat, 14 Nov 2020 00:20:33 +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 92FFA34113C for ; Sat, 14 Nov 2020 00:20:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 147A4448 for ; Sat, 14 Nov 2020 00:20:30 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1605313215.c57edfbf3ca51059d2cdbb09d433d2c7bb73c4f0.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/imagesize/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/imagesize/Manifest dev-python/imagesize/imagesize-1.2.0.ebuild X-VCS-Directories: dev-python/imagesize/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: c57edfbf3ca51059d2cdbb09d433d2c7bb73c4f0 X-VCS-Branch: master Date: Sat, 14 Nov 2020 00:20:30 +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: c50d2c6d-96f2-4b29-b592-0761b18505e5 X-Archives-Hash: d92e6226436f32dc92f0bc0e2fb20928 commit: c57edfbf3ca51059d2cdbb09d433d2c7bb73c4f0 Author: Wim Muskee gmail com> AuthorDate: Fri Nov 13 05:42:49 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Nov 14 00:20:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c57edfbf dev-python/imagesize: version bump to 1.2.0 Signed-off-by: Wim Muskee gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18238 Signed-off-by: Louis Sautier gentoo.org> dev-python/imagesize/Manifest | 1 + dev-python/imagesize/imagesize-1.2.0.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/imagesize/Manifest b/dev-python/imagesize/Manifest index 34d3a6ef989..fd1395e88db 100644 --- a/dev-python/imagesize/Manifest +++ b/dev-python/imagesize/Manifest @@ -1 +1,2 @@ DIST imagesize-1.1.0.tar.gz 1275201 BLAKE2B 32169ccbfee5080d98b7304a2eb7c437d223a9e538281bd0a9ae1e35f5defb71d1abb7e6307057f7e41d199eda402ee91a2a91eb3d9f74cb8fb1df5c4c966072 SHA512 11af71a5120decb88450d1bc7609e25e560e448fcaef72c273690ffe3ad06856e6a172e20738a8dd5650efe1ba8d599e797692eb5cae2b7d74a71f1f55438a03 +DIST imagesize-1.2.0.tar.gz 1274955 BLAKE2B 20293418635362f7360d2f02299f9392a96ca09773c97dd8eed38ca424008fa9d71139bbaf8d61e0daf5dbc90f3c46af9ee60d26e9fb1c2479eb8875ebcb7305 SHA512 c82a7fe433064c3a60ed664bad8ce4e602c527bcf2f7c9ab9be6ed650654626d9e0907028b2b0c5a484712bc989335b2b4f66494c8d445f5043ed4c2bc519700 diff --git a/dev-python/imagesize/imagesize-1.2.0.ebuild b/dev-python/imagesize/imagesize-1.2.0.ebuild new file mode 100644 index 00000000000..68932c9e929 --- /dev/null +++ b/dev-python/imagesize/imagesize-1.2.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Pure Python module for getting image size from png/jpeg/jpeg2000/gif files" +HOMEPAGE="https://github.com/shibukawa/imagesize_py" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-solaris" + +distutils_enable_tests pytest