| Server IP : 82.208.35.60 / Your IP : 216.73.216.168 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/deskutils/virt-manager/files/ |
Upload File : |
--- setup.py.orig 2022-02-12 16:13:59 UTC
+++ setup.py
@@ -427,8 +427,8 @@ class VMMDistribution(setuptools.dist.Distribution):
]
def __init__(self, *args, **kwargs):
- self.no_update_icon_cache = False
- self.no_compile_schemas = False
+ self.no_update_icon_cache = True
+ self.no_compile_schemas = True
setuptools.dist.Distribution.__init__(self, *args, **kwargs)
@@ -500,11 +500,9 @@ setuptools.setup(
"build/virt-xml"]),
data_files=[
- ("share/glib-2.0/schemas",
- ["data/org.virt-manager.virt-manager.gschema.xml"]),
("share/virt-manager/ui", glob.glob("ui/*.ui")),
- ("share/man/man1", [
+ ("man/man1", [
"man/virt-manager.1",
"man/virt-install.1",
"man/virt-clone.1",
@@ -535,7 +533,6 @@ setuptools.setup(
'build_i18n': my_build_i18n,
'install': my_install,
- 'install_egg_info': my_egg_info,
'configure': configure,
@@ -547,4 +544,7 @@ setuptools.setup(
},
distclass=VMMDistribution,
+
+ # Declare packages explicitly so that setuptools does not attempt auto discovery
+ packages=[],
)