From a7803cf257bbe2b55969978c4991377d84393f11 Mon Sep 17 00:00:00 2001 From: Daniele Rondina Date: Thu, 3 Sep 2026 02:32:15 +0000 Subject: [PATCH] Bump dev-python/libvirt-python-12.7.0 --- dev-python/libvirt-python/Manifest | 1 + .../libvirt-python-12.7.0.ebuild | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 dev-python/libvirt-python/libvirt-python-12.7.0.ebuild diff --git a/dev-python/libvirt-python/Manifest b/dev-python/libvirt-python/Manifest index 8c90e3977..820a52d93 100644 --- a/dev-python/libvirt-python/Manifest +++ b/dev-python/libvirt-python/Manifest @@ -1,3 +1,4 @@ DIST libvirt-python-11.1.0.tar.gz 241110 BLAKE2B 921be6848d275184d90c3aa55a50f66daa39e56ae73008f09a4b8f86ecfdcb2afa4ca13f2a3f396056cd28949f2095d1b40b62b0f0018d6164bb7fae3a67ecdb SHA512 2183969fe3057722f3ab0412f331cefd5ae52f90e024207a36d94105826aacd3e9193889ef0bd6eb24921f0145c5d6256328431534f828c3607c92c10b6d46ba DIST libvirt-python-11.2.0.tar.gz 242152 BLAKE2B 8bf92854c73184e43b364d66f04e8b017d6ad6b40173915c10f7c0dd0b0fadd4b55ea8704155392f016b151b1f65fc7805313e8610569fe362bb4a28bfee8dbf SHA512 02019186fd086df8c57998f2a3e6496897e9de1a09b97aba983897480e50be58ac0599de0ed7cb62cabb9834913973dcf99f034397e48fac96d65c32b056059f DIST libvirt_python-12.4.0.tar.gz 245162 BLAKE2B 463b163a5906832e852839d7b7ab30828551833d2740125266b235dc1ef7581a30bf28a1b2e6baf703b2e219e7ed265f6e115a8f2b3bf2704dab3e2d95eb5520 SHA512 a40b9f1bbf395b9ee5ef0e90968117ce570ff0664c5f53e9ba21cb5546775f4e314f9baba0ada4acd7b72ae93087f52408621a80daf16be8dc365d16eb81d30d +DIST libvirt_python-12.7.0.tar.gz 256560 BLAKE2B 3c03ced41b09869e1e6b5fbb9c5b7919e83e3eb3f0197dec66926e6f727fb9936ac4c872197f29800fd39768260f41f60b37df3f3d9cdbc44049fc7801d4edce SHA512 35c837491141bf8a856711991840ef7526cab26375175042d9f1326aa0217886ec6c3f3334ae60be96564b5258dd78f1504a0a841cb4c77e5bd9c813beee7a77 diff --git a/dev-python/libvirt-python/libvirt-python-12.7.0.ebuild b/dev-python/libvirt-python/libvirt-python-12.7.0.ebuild new file mode 100644 index 000000000..6efaf5822 --- /dev/null +++ b/dev-python/libvirt-python/libvirt-python-12.7.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.7.0.tar.gz -> libvirt_python-12.7.0.tar.gz" +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="*" +IUSE="examples" +BDEPEND="virtual/pkgconfig + +" +RDEPEND="app-emulation/libvirt + +" +S="${WORKDIR}/libvirt_python-12.7.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