diff --git a/dev-python/libvirt-python/Manifest b/dev-python/libvirt-python/Manifest index 8c90e3977..9dbf8dfac 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.6.0.tar.gz 252693 BLAKE2B 17d0760d5f56b17ec6bd738e6a4f25d57ce411edb4db2fe3f5e0ff2fae670583973d8ab6b0eb1fe7acbcb2d781e6a628ded62e08ea2ff85695204ce144f3058c SHA512 e43a3ee2c46fdcb82c65239639e38683067fb0492c0dc26e5435138435d612277f3ab08b7e73a933b07ad9e2f411feb82e84690e82f906cfcfc9f3aa7b5f3c42 diff --git a/dev-python/libvirt-python/libvirt-python-12.6.0.ebuild b/dev-python/libvirt-python/libvirt-python-12.6.0.ebuild new file mode 100644 index 000000000..9de125f43 --- /dev/null +++ b/dev-python/libvirt-python/libvirt-python-12.6.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.6.0.tar.gz -> libvirt_python-12.6.0.tar.gz" +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="*" +IUSE="examples" +BDEPEND="virtual/pkgconfig + +" +RDEPEND="app-emulation/libvirt + +" +S="${WORKDIR}/libvirt_python-12.6.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