mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
2fc6e6f46c
* Bump required to 3.3+ as 2.7 is no longer supported * Drop www/py-urlgrabber dependency as it's not used anymore
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
--- setup.py.orig 2018-10-13 18:26:55 UTC
|
|
+++ setup.py
|
|
@@ -618,8 +618,8 @@ class VMMDistribution(distutils.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
|
|
distutils.dist.Distribution.__init__(self, *args, **kwargs)
|
|
|
|
|
|
@@ -647,11 +647,9 @@ distutils.core.setup(
|
|
"virt-convert",
|
|
"virt-xml",
|
|
]),
|
|
- ("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",
|
|
@@ -676,7 +674,6 @@ distutils.core.setup(
|
|
'sdist': my_sdist,
|
|
'install': my_install,
|
|
'install_data': my_install_data,
|
|
- 'install_egg_info': my_egg_info,
|
|
|
|
'configure': configure,
|
|
|