File tree Expand file tree Collapse file tree 7 files changed +91
-7
lines changed Expand file tree Collapse file tree 7 files changed +91
-7
lines changed Original file line number Diff line number Diff line change 1+ # -*- mode: python ; coding: utf-8 -*-
2+
3+
4+ block_cipher = None
5+
6+
7+ a = Analysis (
8+ ['calc.py' ],
9+ pathex = [],
10+ binaries = [],
11+ datas = [],
12+ hiddenimports = [],
13+ hookspath = [],
14+ hooksconfig = {},
15+ runtime_hooks = [],
16+ excludes = [],
17+ win_no_prefer_redirects = False ,
18+ win_private_assemblies = False ,
19+ cipher = block_cipher ,
20+ noarchive = False ,
21+ )
22+ pyz = PYZ (a .pure , a .zipped_data , cipher = block_cipher )
23+
24+ exe = EXE (
25+ pyz ,
26+ a .scripts ,
27+ a .binaries ,
28+ a .zipfiles ,
29+ a .datas ,
30+ [],
31+ name = 'calc' ,
32+ debug = False ,
33+ bootloader_ignore_signals = False ,
34+ strip = False ,
35+ upx = True ,
36+ upx_exclude = [],
37+ runtime_tmpdir = None ,
38+ console = True ,
39+ disable_windowed_traceback = False ,
40+ argv_emulation = False ,
41+ target_arch = None ,
42+ codesign_identity = None ,
43+ entitlements_file = None ,
44+ )
Original file line number Diff line number Diff line change 55"Bu Yazılımın Bir Kopyası GİTHUB da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
66"A Copy of This Software is published on GITHUB To view: https://github.com/LinuxUsersLinuxMint/LinuxUsersLinuxMint"
77
8- command = input ('calc> ' )
8+ command = str ( input ('calc> ' ) )
99about = "Python Hesap Makinesi CLI(Command Line Interface / Komut Satırı Arayüzü) LICENCE=GPL2"
1010if command == "calc" :
1111 print ("calc> Girebileceğiniz işlemler: " )
4646 elif command == "licence" :
4747 print ("This Software is protected under the GPL2 license" )
4848 else :
49- print ("Geçersiz Komut" )
49+ print ("Geçersiz Komut" )
Original file line number Diff line number Diff line change 1+ # -*- mode: python ; coding: utf-8 -*-
2+
3+
4+ block_cipher = None
5+
6+
7+ a = Analysis (
8+ ['calc.py' ],
9+ pathex = [],
10+ binaries = [],
11+ datas = [],
12+ hiddenimports = [],
13+ hookspath = [],
14+ hooksconfig = {},
15+ runtime_hooks = [],
16+ excludes = [],
17+ win_no_prefer_redirects = False ,
18+ win_private_assemblies = False ,
19+ cipher = block_cipher ,
20+ noarchive = False ,
21+ )
22+ pyz = PYZ (a .pure , a .zipped_data , cipher = block_cipher )
23+
24+ exe = EXE (
25+ pyz ,
26+ a .scripts ,
27+ a .binaries ,
28+ a .zipfiles ,
29+ a .datas ,
30+ [],
31+ name = 'calc' ,
32+ debug = False ,
33+ bootloader_ignore_signals = False ,
34+ strip = False ,
35+ upx = True ,
36+ upx_exclude = [],
37+ runtime_tmpdir = None ,
38+ console = True ,
39+ disable_windowed_traceback = False ,
40+ argv_emulation = False ,
41+ target_arch = None ,
42+ codesign_identity = None ,
43+ entitlements_file = None ,
44+ )
Original file line number Diff line number Diff line change 11#! /usr/bin/bash
22
3- sudo chmod a+x INSTALL/TR/calc
4- sudo chmod a+x INSTALL/TR/inputdtr
53sudo cp INSTALL/TR/calc /usr/bin/
6- sudo cp INSTALL/TR/inputdtr /usr/bin/
74
85# Changes will be made to the uninstall files for Linux.
Original file line number Diff line number Diff line change 11#! /usr/bin/bash
22
33sudo rm rf - /usr/bin/calc
4- rm rf - /usr/bin/inputdtr.py
54
6- # Changes will be made to the uninstall files for Linux.
5+ # Changes will be made to the uninstall files for Linux.
You can’t perform that action at this time.
0 commit comments