anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / editors / retext / remove-wheel-check.patch
blobd736a3c3ccc9c546cf74cd796cd4b57c52c15e0e
1 From f07d08d3056c46f62674f65eabae0efa2b65d681 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
3 Date: Sat, 15 Oct 2022 16:53:27 +0200
4 Subject: [PATCH] disable wheel check
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
10 ---
11 setup.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
14 diff --git a/setup.py b/setup.py
15 index a9cae37..e0e1e5b 100755
16 --- a/setup.py
17 +++ b/setup.py
18 @@ -101,7 +101,7 @@ def run(self):
20 desktop_file_path = join(self.install_data, 'share', 'applications',
21 'me.mitya57.ReText.desktop')
22 - if self.root and self.root.endswith('/wheel'):
23 + if False and self.root and self.root.endswith('/wheel'):
24 # Desktop files don't allow relative paths, and we don't know the
25 # absolute path when building a wheel.
26 log.info('removing the .desktop file from the wheel')
27 --
28 2.37.3