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 6043B158018 for ; Sat, 2 Oct 2021 07:50:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94F59E087A; Sat, 2 Oct 2021 07:50:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FFDAE087A for ; Sat, 2 Oct 2021 07:50:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2CB1342E4A for ; Sat, 2 Oct 2021 07:50:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0669F132 for ; Sat, 2 Oct 2021 07:50:52 +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: <1633161037.aa029f025da27bb3fa6f11b6695697be08fcf43e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qrcode/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/qrcode/Manifest dev-python/qrcode/qrcode-7.3.1.ebuild X-VCS-Directories: dev-python/qrcode/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aa029f025da27bb3fa6f11b6695697be08fcf43e X-VCS-Branch: master Date: Sat, 2 Oct 2021 07:50:52 +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: c3702bc9-8470-48b8-94c4-5da1c20e2256 X-Archives-Hash: 7d22c2f6905929204cf06d655fdb7664 commit: aa029f025da27bb3fa6f11b6695697be08fcf43e Author: Michał Górny gentoo org> AuthorDate: Sat Oct 2 06:42:04 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 2 07:50:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa029f02 dev-python/qrcode: Bump to 7.3.1 Signed-off-by: Michał Górny gentoo.org> dev-python/qrcode/Manifest | 1 + dev-python/qrcode/qrcode-7.3.1.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/qrcode/Manifest b/dev-python/qrcode/Manifest index 9bab5d4f769..a090d59738e 100644 --- a/dev-python/qrcode/Manifest +++ b/dev-python/qrcode/Manifest @@ -1 +1,2 @@ +DIST qrcode-7.3.1.tar.gz 43495 BLAKE2B 9986ee77752625e127008038c6c044b5adeb3bd526c27a55b23915190c3c9069adf1c6df1ce5f76cd0255f45319ecb66ebf226932666ea6c89872a46e13c1cd9 SHA512 9e0e508418164926a074d8c6d85419b39a36c01ac6d92415a15ce43d4aea79fa2a8d0167982f832970d2a68ec18d2b729f09e15d80b4f4c33b992999527d39f9 DIST qrcode-7.3.tar.gz 43352 BLAKE2B 4520ffcf2c4b144c20d00d06947c65ac9d8eb283ab9e298d9fe1de023aa32e47e3c6d4d9144f928a12607b28415f40d666b68b920d81e18524c95813768ee2d7 SHA512 e4d06ace4e8146e294b10b1397e649cc56405ddac35dae499bf897e4a7eb37b15dee3f72e6a7bac98dd0f238ac71d1e0bab5ada6cd180b1e5e8df9c6cb23f073 diff --git a/dev-python/qrcode/qrcode-7.3.1.ebuild b/dev-python/qrcode/qrcode-7.3.1.ebuild new file mode 100644 index 00000000000..0185db07873 --- /dev/null +++ b/dev-python/qrcode/qrcode-7.3.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="QR Code generator on top of PIL" +HOMEPAGE="https://pypi.org/project/qrcode/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +# optional deps: +# - pillow and lxml for svg backend, set as hard deps +RDEPEND=" + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest + +src_install() { + distutils-r1_src_install + doman doc/qr.1 +}