From 7df38716673928b20d00a252e4fe119bc7cb13e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 25 Jun 2026 04:20:16 +0200 Subject: [PATCH] dev-python/discid: Bump to 1.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/discid/Manifest | 2 ++ dev-python/discid/discid-1.4.1.ebuild | 37 +++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 dev-python/discid/discid-1.4.1.ebuild diff --git a/dev-python/discid/Manifest b/dev-python/discid/Manifest index 83dde3060e864..c7acbd698baba 100644 --- a/dev-python/discid/Manifest +++ b/dev-python/discid/Manifest @@ -1,2 +1,4 @@ DIST discid-1.4.0.tar.gz 36594 BLAKE2B 3b15f6c5f1ccf275a3fe6532d464340b013e64b49042ca0da50afb1c3f34e0908f376a9d6e43c3ec7b60680c7f1df298ec066c846d4ef27498af0f1a5c51a425 SHA512 1b43e298ddd1a91bde46394a02df31b5ef64fa6cd8896e35e3df30c7ef2cf24c5123cda4e1248d85ba85f311c90d0b8295c3e4ce1e80ee6ef3f1efec99053d74 DIST discid-1.4.0.tar.gz.provenance 9574 BLAKE2B 998f8056979fd56fa6d1c11adc46f11cea283ad2d4ae7fb7b303db3811356a1c55da8c45f6247df18e46ed3a2abad0d4ab273f35546576bcdfbb70b731aafa79 SHA512 8dd243bec966b3962e4cd2ef849bc80c189a2f4ed42a095903b1e2eda53cc0a33412ceddf221120ebad0cf1acfcf6147edd9a8fbd1b03eb09835ae75c09fab8f +DIST discid-1.4.1.tar.gz 36750 BLAKE2B 7e2a0537947ab23ba95738322699874cf7dbfa0050f2663072891a8523215afd3575feb270f194d6f3a1568a532879bb57b0e28f916f875341ab4daddd47d85e SHA512 3485472a0c5ffaa5bc999414f2e5c28e7467ae7de867911a9be34c05d81bc9049a1b0d9659e7118d57143857b9abc078dc932c3cb6edee54ee071f8dd802b18a +DIST discid-1.4.1.tar.gz.provenance 9775 BLAKE2B c73c9eee475de50ad5a54859cb560b5a3a3e8aadbd7389234ee353959090c76cc071b4735e295e84b73402ae4a98efea2f2a79a41c82c69bc0e671730e8c4100 SHA512 1e8f8a93b472156cc6199bb1645627a976f8e462a0687579c3b1283f5db5294fb95f42301df461df5e301e977b8e5a6faac91a64cd20cb495c321abf7307a581 diff --git a/dev-python/discid/discid-1.4.1.ebuild b/dev-python/discid/discid-1.4.1.ebuild new file mode 100644 index 0000000000000..18744ecc76c8d --- /dev/null +++ b/dev-python/discid/discid-1.4.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/metabrainz/python-discid +PYTHON_COMPAT=( python3_{12..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Python bindings for libdiscid" +HOMEPAGE=" + https://python-discid.readthedocs.io/en/latest/ + https://github.com/metabrainz/python-discid/ + https://pypi.org/project/discid/ +" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~x86" + +DEPEND=" + >=media-libs/libdiscid-0.2.2 +" +RDEPEND=" + ${DEPEND} +" + +distutils_enable_sphinx doc \ + dev-python/sphinx-autodoc-typehints \ + dev-python/sphinx-rtd-theme + +python_test() { + "${EPYTHON}" -m unittest -v test_discid.TestModule{Private,} || + die "Tests failed with ${EPYTHON}" +}