From 62c967b0fd0b9195ce30a62d39befacdd2534f0f Mon Sep 17 00:00:00 2001 From: Daniele Rondina Date: Mon, 29 Jun 2026 17:02:35 +0000 Subject: [PATCH] Bump dev-python/libvirt-python-12.4.0 --- dev-python/libvirt-python/Manifest | 1 + .../libvirt-python-12.4.0.ebuild | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 dev-python/libvirt-python/libvirt-python-12.4.0.ebuild diff --git a/dev-python/libvirt-python/Manifest b/dev-python/libvirt-python/Manifest index d6c2f27f7..119c7e46b 100644 --- a/dev-python/libvirt-python/Manifest +++ b/dev-python/libvirt-python/Manifest @@ -1,2 +1,3 @@ DIST libvirt-python-11.2.0.tar.gz 242152 BLAKE2B 8bf92854c73184e43b364d66f04e8b017d6ad6b40173915c10f7c0dd0b0fadd4b55ea8704155392f016b151b1f65fc7805313e8610569fe362bb4a28bfee8dbf SHA512 02019186fd086df8c57998f2a3e6496897e9de1a09b97aba983897480e50be58ac0599de0ed7cb62cabb9834913973dcf99f034397e48fac96d65c32b056059f DIST libvirt-python-11.3.0.tar.gz 242218 BLAKE2B eb6cbaefb96912998beb5c9aba26c2bbdc7f096f792f1a9ef7fcb58530159692e968594111a012244f0b09e84a2ef8642712218e2c461a2ceb62cdd1b9931359 SHA512 8f35d3103135a321fbc3faedebb9f4b1866d008f07a2d967bf62076916318e9d6f4f2b885efba9cb5e8368704aecda68254d028c5e316bdd6d061badc4f35d96 +DIST libvirt_python-12.4.0.tar.gz 245162 BLAKE2B 463b163a5906832e852839d7b7ab30828551833d2740125266b235dc1ef7581a30bf28a1b2e6baf703b2e219e7ed265f6e115a8f2b3bf2704dab3e2d95eb5520 SHA512 a40b9f1bbf395b9ee5ef0e90968117ce570ff0664c5f53e9ba21cb5546775f4e314f9baba0ada4acd7b72ae93087f52408621a80daf16be8dc365d16eb81d30d diff --git a/dev-python/libvirt-python/libvirt-python-12.4.0.ebuild b/dev-python/libvirt-python/libvirt-python-12.4.0.ebuild new file mode 100644 index 000000000..cc5111e9c --- /dev/null +++ b/dev-python/libvirt-python/libvirt-python-12.4.0.ebuild @@ -0,0 +1,31 @@ +# Distributed under the terms of the GNU General Public License v2 +# Autogen by MARK Devkit + +EAPI=7 +PYTHON_COMPAT=( python3+ ) +inherit distutils-r1 + +DESCRIPTION="libvirt Python bindings" +HOMEPAGE="https://www.libvirt.org" +SRC_URI="https://download.libvirt.org/python/libvirt_python-12.4.0.tar.gz -> libvirt_python-12.4.0.tar.gz" +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="*" +IUSE="examples" +BDEPEND="virtual/pkgconfig + +" +RDEPEND="app-emulation/libvirt + +" +S="${WORKDIR}/libvirt_python-12.4.0" +python_install_all() { + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all +} + + +# vim: filetype=ebuild