Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-python/libvirt-python/Manifest
Original file line number Diff line number Diff line change
@@ -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.5.0.tar.gz 245493 BLAKE2B 15a731989e88eda85cc69e2df1b430ed47decaf637a52290ad1898c3d49cdba7ba091aa402bb6239e249a72085fe2865ae25efa5c6ea4a88f6dc6d92d9ba005e SHA512 113462df69bcfbbdebc14cac2b470ce1f182a45913cf5dad77e47c8056fb76cf5c9d60d14bb94c300597af6a4203fcd66fb7c8352ddb13c976de1bd487452da3
31 changes: 31 additions & 0 deletions dev-python/libvirt-python/libvirt-python-12.5.0.ebuild
Original file line number Diff line number Diff line change
@@ -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.5.0.tar.gz -> libvirt_python-12.5.0.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="*"
IUSE="examples"
BDEPEND="virtual/pkgconfig

"
RDEPEND="app-emulation/libvirt

"
S="${WORKDIR}/libvirt_python-12.5.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