dev-python/fritzconnection: add qrcode support

Closes: #2386
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-06 19:51:18 +01:00
parent 7b7a6f8aaa
commit 2215e03b03
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 12 additions and 14 deletions

View File

@ -30,7 +30,7 @@ For easier install I also patched core's version of `dev-python/regex`.
## note to the 2023-10 Update
Due to a sudden significant change in the [pypi.eclass](https://devmanual.gentoo.org/eclass-reference/pypi.eclass/index.html) and other fundamental aspects of the Gentoo packaging system, we faced a complex and time-consuming task of updating our ebuilds. These changes required modifications to nearly 2000 ebuilds, impacting our ability to release updates in a timely manner.
Due to a sudden significant change in the [pypi.eclass](https://devmanual.gentoo.org/eclass-reference/pypi.eclass/index.html) and other fundamental aspects of the Gentoo packaging system, we faced a complex and time-consuming task of updating our Ebuilds. These changes required modifications to nearly 2000 Ebuilds, impacting our ability to release updates in a timely manner.
**Why the Delay?**
@ -46,7 +46,7 @@ We appreciate your support and understanding during this period of adjustment. W
**How You Can Help:**
We welcome assistance in maintaining and improving this repository. If you have the skills and time to contribute to ebuild maintenance, your help would be greatly appreciated. Please feel free to reach out and get involved in the project.
We welcome assistance in maintaining and improving this repository. If you have some time to contribute to Ebuild maintenance, your help would be greatly appreciated. Please feel free to reach out and get involved in the project.
Thank you for your continued support and understanding.

View File

@ -1,3 +1,3 @@
DIST fritzconnection-1.4.2.tar.gz 31492 BLAKE2B 7b7ba85c8473f96eaad9444e937f6c7f0a3704b24269e6f5aeca90c081269c3185ed9ed0044d5b1c24b81384f53935af97804b8d76ab065dd81486e3dd5ed89e SHA512 68e8b15fb3ae4bcd311c7a3c5a76c493a96479f9cb43471d178f52cc31bc539009fd4212a40c903985b0159b97a39679b6a3ca9e5ec69ddd8698bfb3d9af1f1b
EBUILD fritzconnection-1.4.2.ebuild 621 BLAKE2B 28451cc49aae9bd4dc00fd4b161a1e1a2c872a12a9a1edd37dd3b5ff288a74c0a23b4b45737d1997aa6141ba7f0cf07261cc13e654b54a3cfaf5969b9b584ac6 SHA512 41d20e958b81e62d2ed1d921e09bf0742f7af889ee65f368f27bceb8c46eb6a2f944782fd875e1421ef5149e589329109633841ae61f1d9bdc610579356f6271
MISC metadata.xml 524 BLAKE2B 9c7ab7d57698d15104811afe93c8383d376c53a971e5d2cba26267323b5b3e459b1729cd45ae2926e6c4028fd79c140443572fb7c8a34d45a5738c51ae568cf7 SHA512 1eb7ffe373ebfd6859550a57c8e5c174235ae71a39aca39d70f018692c149eb555ed27c37b60d735285107aa19c1415d65a3fd4bb0f0959a4fc2407257f07283
EBUILD fritzconnection-1.4.2-r1.ebuild 613 BLAKE2B 328c4301d16bce7b008f56b76e564367b53cf160ec2744bcbb41ea972619a80a86ccf453de801eb4ffbfc978e681351c80f5e324a8d7601991ea667622cde56a SHA512 66bc418948d99df3ac72c0903cf042e74d0b07468430b13e398a9e9d2221faf444ed823e75f0026d9f65c6fdeb6573da1529476fda3548dbddef26d16ad73b2c
MISC metadata.xml 617 BLAKE2B 9516672b596bc5044b9fc71d66d4814110a7caf0541a551ecabae511a5f401204ec7a514c712dad3221d132d9f36ae074f75a5cb02bf507eb3db843b37d836e6 SHA512 c060ca9f7a95a92407c620dede251b0d2877e1425d6bdaa79acc066fb46b47e9f1490a4b691bc285a2a413b96bb4ff475d1ae0d38d8985e097c1f0797766f1c4

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -13,17 +13,12 @@ HOMEPAGE="https://github.com/kbr/fritzconnection https://pypi.org/project/fritzc
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
IUSE="test qrcode"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
RDEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
qrcode? ( >=dev-python/segno-1.4.1[${PYTHON_USEDEP}] )"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -13,4 +13,7 @@
<name>Klaus Bremer</name>
</maintainer>
</upstream>
<use>
<flag name="qrcode">add dev-python/segno RDEP for qrcode support</flag>
</use>
</pkgmetadata>