summaryrefslogtreecommitdiff
path: root/dev-python/spyder/files/spyder-5.0.0-build.patch
blob: be849e78e49f3e6afe1f16f82a06510cc1508f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
diff --git a/setup.py b/setup.py
index ff4f8ec..08a4f2d 100644
--- a/setup.py
+++ b/setup.py
@@ -111,24 +111,6 @@ def get_packages():
     return packages
 
 
-# =============================================================================
-# Make Linux detect Spyder desktop file (will not work with wheels)
-# =============================================================================
-class CustomInstallData(install_data):
-
-    def run(self):
-        install_data.run(self)
-        if sys.platform.startswith('linux'):
-            try:
-                subprocess.call(['update-desktop-database'])
-            except:
-                print("ERROR: unable to update desktop database",
-                      file=sys.stderr)
-
-
-CMDCLASS = {'install_data': CustomInstallData}
-
-
 # =============================================================================
 # Main scripts
 # =============================================================================
@@ -196,7 +178,6 @@ def run(self):
         'Topic :: Scientific/Engineering',
         'Topic :: Software Development :: Widget Sets',
     ],
-    cmdclass=CMDCLASS,
 )