various improvements

This commit is contained in:
ge
2023-11-23 02:34:02 +03:00
parent b9d089dd78
commit 05f90b14f2
200 changed files with 15968 additions and 84 deletions

View File

@ -0,0 +1,12 @@
Package: compute
Version: 0.1.0.dev1-1
Architecture: all
Maintainer: ge <ge@nixhacks.net>
Installed-Size: 118
Depends: python3-libvirt, python3-lxml, python3-pydantic, python3-yaml, python3:any, qemu-system, qemu-utils, libvirt-daemon-system, libvirt-clients
Recommends: dnsmasq
Suggests: compute-doc
Section: admin
Priority: optional
Homepage: https://git.lulzette.ru/hstack/compute
Description: Compute instances management library and tools (Python 3)

View File

@ -0,0 +1,27 @@
e21aa7b0b8fd557e047296cdf5ced826 usr/bin/compute
f9bc2efd4317ac0a92b8c7d283b947b8 usr/lib/python3/dist-packages/compute-0.1.0.dev1.dist-info/METADATA
db790365fd79ce4e960409f8cfc71dae usr/lib/python3/dist-packages/compute-0.1.0.dev1.dist-info/RECORD
b65598d0aa0cfe0f390246499e741adb usr/lib/python3/dist-packages/compute-0.1.0.dev1.dist-info/WHEEL
d6561300b96471e4e471ea1615006527 usr/lib/python3/dist-packages/compute-0.1.0.dev1.dist-info/entry_points.txt
9c54095f8462231dc4be8f87fadee594 usr/lib/python3/dist-packages/compute/__init__.py
a1b4018266bd8295c5e829c45948f642 usr/lib/python3/dist-packages/compute/__main__.py
d41d8cd98f00b204e9800998ecf8427e usr/lib/python3/dist-packages/compute/cli/__init__.py
8c13534e878816096e129b15462d0840 usr/lib/python3/dist-packages/compute/cli/control.py
1c4b0023246c9cd9d37e2addc255d7f9 usr/lib/python3/dist-packages/compute/common.py
665c006c01d16e64323037b0089cacef usr/lib/python3/dist-packages/compute/exceptions.py
1ff1400c5f71bd3a55ce2521258b5bd2 usr/lib/python3/dist-packages/compute/instance/__init__.py
82ec67ce83d65b991a8aba5e70f30e76 usr/lib/python3/dist-packages/compute/instance/guest_agent.py
135f6785552229c6fac04ab1d7c3113b usr/lib/python3/dist-packages/compute/instance/instance.py
00df3cb0195a2b97f1972f020bdbb243 usr/lib/python3/dist-packages/compute/instance/schemas.py
1d557cf313b52726a3591bd2e59c3c9b usr/lib/python3/dist-packages/compute/session.py
0a98a65c1a665afb4e4ed9cb3aef38f5 usr/lib/python3/dist-packages/compute/storage/__init__.py
ecf7a8e68c733d8e5b241ca33ae7cae0 usr/lib/python3/dist-packages/compute/storage/pool.py
c4a6cb9dbccfaa9217c2dbc4a833e8c9 usr/lib/python3/dist-packages/compute/storage/volume.py
d41d8cd98f00b204e9800998ecf8427e usr/lib/python3/dist-packages/compute/utils/__init__.py
e7797202c176137f38a6652cf45170a2 usr/lib/python3/dist-packages/compute/utils/config_loader.py
6c36830706d7d714d9b3c1d23dcccf14 usr/lib/python3/dist-packages/compute/utils/ids.py
964156c54ebe27ba2b14313f8f9f9754 usr/lib/python3/dist-packages/compute/utils/units.py
1fd80db613384b8d5782cf8c5843eb94 usr/share/bash-completion/completions/compute
672a4b3f13e2a14e4040c7a513ed60ba usr/share/doc/compute/README.md
6845278a102bd147f30f770ed1134ce5 usr/share/doc/compute/changelog.Debian.gz
fb1a6c11d7a8fa5f238617c20b13b6a1 usr/share/doc/compute/copyright

View File

@ -0,0 +1,12 @@
#!/bin/sh
set -e
# Automatically added by dh_python3
if command -v py3compile >/dev/null 2>&1; then
py3compile -p compute
fi
if command -v pypy3compile >/dev/null 2>&1; then
pypy3compile -p compute || true
fi
# End automatically added section

View File

@ -0,0 +1,12 @@
#!/bin/sh
set -e
# Automatically added by dh_python3
if command -v py3clean >/dev/null 2>&1; then
py3clean -p compute
else
dpkg -L compute | sed -En -e '/^(.*)\/(.+)\.py$/s,,rm "\1/__pycache__/\2".*,e'
find /usr/lib/python3/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir
fi
# End automatically added section