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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0ECA4158087 for ; Sat, 29 Jan 2022 08:56:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 438EEE07A9; Sat, 29 Jan 2022 08:56:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87504E07A9 for ; Sat, 29 Jan 2022 08:56:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 643413433A3 for ; Sat, 29 Jan 2022 08:56:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1105233 for ; Sat, 29 Jan 2022 08:56:30 +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: <1643446588.a6c172605c803abb2d707a8135f3500fcaf78c97.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypng/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypng/pypng-0.0.21-r1.ebuild X-VCS-Directories: dev-python/pypng/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a6c172605c803abb2d707a8135f3500fcaf78c97 X-VCS-Branch: master Date: Sat, 29 Jan 2022 08:56: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: f4f25ad7-8479-4e5b-a055-82076504a0f3 X-Archives-Hash: 059cf74a136e9c0c2cdf442b3282dc84 commit: a6c172605c803abb2d707a8135f3500fcaf78c97 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 29 08:56:04 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 29 08:56:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6c17260 dev-python/pypng: Switch to PEP 517 build Signed-off-by: Michał Górny gentoo.org> dev-python/pypng/pypng-0.0.21-r1.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-python/pypng/pypng-0.0.21-r1.ebuild b/dev-python/pypng/pypng-0.0.21-r1.ebuild new file mode 100644 index 000000000000..39d92271eef7 --- /dev/null +++ b/dev-python/pypng/pypng-0.0.21-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Pure Python PNG image encoder/decoder" +HOMEPAGE=" + https://github.com/drj11/pypng/ + https://pypi.org/project/pypng/" +SRC_URI="https://github.com/drj11/pypng/archive/${P}.tar.gz" +S=${WORKDIR}/pypng-${P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +python_test() { + "${EPYTHON}" code/test_png.py -v || die "Tests fail with ${EPYTHON}" +}