-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #422 from loathingKernel/pyside6
Port Rare to PySide6
- Loading branch information
Showing
159 changed files
with
54,571 additions
and
58,891 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include README.md | ||
include rare/resources/images/* | ||
include rare/resources/languages/* | ||
include rare/resources/languages/rare_*.qm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
$nuitka_opts = @( | ||
'--assume-yes-for-downloads' | ||
'--mingw64' | ||
'--lto=no' | ||
'--jobs=3' | ||
'--static-libpython=no' | ||
'--standalone' | ||
'--enable-plugin=anti-bloat' | ||
'--enable-plugin=pyside6' | ||
'--enable-plugin=pywebview' | ||
'--show-modules' | ||
'--show-anti-bloat-changes' | ||
'--follow-stdlib' | ||
'--follow-imports' | ||
'--nofollow-import-to="*.tests"' | ||
'--nofollow-import-to="*.distutils"' | ||
'--nofollow-import-to="distutils"' | ||
'--nofollow-import-to="unittest"' | ||
'--nofollow-import-to="pydoc"' | ||
'--nofollow-import-to="tkinter"' | ||
'--nofollow-import-to="test"' | ||
'--prefer-source-code' | ||
'--include-package=pypresence' | ||
'--include-package-data=qtawesome' | ||
'--include-data-dir=rare\resources\images\=rare\resources\images\' | ||
'--include-data-files=rare\resources\languages\=rare\resources\languages\="rare_*.qm"' | ||
'--windows-icon-from-ico=rare\resources\images\Rare.ico' | ||
'--windows-company-name=RareDevs' | ||
'--windows-product-name=Rare' | ||
'--windows-file-description=rare.exe' | ||
'--windows-file-version=0.0.0.0' | ||
'--windows-product-version=0.0.0.0' | ||
'--windows-console-mode=force' | ||
) | ||
|
||
python -m nuitka $nuitka_opts rare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,37 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
python -m nuitka \ | ||
--assume-yes-for-downloads \ | ||
--mingw64 \ | ||
--lto=no \ | ||
--jobs=2 \ | ||
--static-libpython=no \ | ||
--standalone \ | ||
--enable-plugin=anti-bloat \ | ||
--enable-plugin=pyqt5 \ | ||
--show-modules \ | ||
--show-anti-bloat-changes \ | ||
--follow-stdlib \ | ||
--follow-imports \ | ||
--nofollow-import-to="*.tests" \ | ||
--nofollow-import-to="*.distutils" \ | ||
--nofollow-import-to="distutils" \ | ||
--nofollow-import-to="unittest" \ | ||
--nofollow-import-to="pydoc" \ | ||
--nofollow-import-to="tkinter" \ | ||
--nofollow-import-to="test" \ | ||
--prefer-source-code \ | ||
--include-package=pypresence \ | ||
--include-package-data=qtawesome \ | ||
--include-data-dir=rare/resources/images/=rare/resources/images/ \ | ||
--include-data-files=rare/resources/languages/=rare/resources/languages/="rare_*.qm" \ | ||
--windows-icon-from-ico=rare/resources/images/Rare.ico \ | ||
--windows-company-name=Rare \ | ||
--windows-product-name=Rare \ | ||
--windows-file-description=rare.exe \ | ||
--windows-file-version=0.0.0.0 \ | ||
--windows-product-version=0.0.0.0 \ | ||
--enable-console \ | ||
rare | ||
nuitka_opts=( | ||
'--assume-yes-for-downloads' | ||
'--mingw64' | ||
'--lto=no' | ||
'--jobs=3' | ||
'--static-libpython=no' | ||
'--standalone' | ||
'--enable-plugin=anti-bloat' | ||
'--enable-plugin=pyside6' | ||
'--show-modules' | ||
'--show-anti-bloat-changes' | ||
'--follow-stdlib' | ||
'--follow-imports' | ||
'--nofollow-import-to="*.tests"' | ||
'--nofollow-import-to="*.distutils"' | ||
'--nofollow-import-to="distutils"' | ||
'--nofollow-import-to="unittest"' | ||
'--nofollow-import-to="pydoc"' | ||
'--nofollow-import-to="tkinter"' | ||
'--nofollow-import-to="test"' | ||
'--prefer-source-code' | ||
'--include-package=pypresence' | ||
'--include-package-data=qtawesome' | ||
'--include-data-dir=rare/resources/images/=rare/resources/images/' | ||
'--include-data-files=rare/resources/languages/=rare/resources/languages/="rare_*.qm"' | ||
'--windows-icon-from-ico=rare/resources/images/Rare.ico' | ||
'--windows-company-name=RareDevs' | ||
'--windows-product-name=Rare' | ||
'--windows-file-description=rare.exe' | ||
'--windows-file-version=0.0.0.0' | ||
'--windows-product-version=0.0.0.0' | ||
'--windows-console-mode=force' | ||
) | ||
|
||
python -m nuitka "${nuitka_opts[@]}" rare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.