This file contains hidden or 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
// Gist repository of my activities. |
This file contains hidden or 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
#!/usr/bin/python3 | |
import os | |
import os.path | |
import time | |
import math | |
import subprocess | |
import sys | |
filename = None |
This file contains hidden or 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
./configure \ | |
$(: === MISC ===)\ | |
-opensource \ | |
-confirm-license \ | |
-release \ | |
-prefix "~/Dev/builds/Qt5.7/build/" \ | |
$(: === NO MAKE ===)\ | |
-nomake libs \ | |
-nomake examples \ | |
-nomake tests \ |
This file contains hidden or 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
# Fix insecure RPATH hardcoded in the binary | |
# (it points to /usr/local/lib, which is not normally used on Arch Linux) | |
chrpath --delete "pico8" |
This file contains hidden or 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
cower -i pico | grep Makedepends | cut -c18- | grep -e 'chrpath|patchelf' |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
cd qtbase/ && ( test -e Makefile || /tmp/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qmake /private/tmp/qt-everywhere-opensource-src-5.7.0/qtbase/qtbase.pro -qtconf /tmp/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qt.conf -o Makefile ) && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile | |
Info: creating cache file /private/tmp/qt-everywhere-opensource-src-5.7.0/qtbase/.qmake.cache | |
cd qmake/ && ( test -e Makefile.qmake-aux || /tmp/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qmake /private/tmp/qt-everywhere-opensource-src-5.7.0/qtbase/qmake/qmake-aux.pro -qtconf /tmp/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qt.conf -o Makefile.qmake-aux ) && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile.qmake-aux | |
cd src/ && ( test -e Makefile || /tmp/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qmake /private/tmp/qt-everywhere-opensource-src-5.7.0/qtbase/src/src.pro -qtconf /tmp/qt-everywhere-opensource-src-5.7.0/qtbase/bin/qt.conf -o Makefile ) && /Applications/Xcode.app/Con |
This file contains hidden or 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
temp |
This file contains hidden or 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
pyqtdeploy/cache/qt-everywhere-opensource-src-5.7.0/configure.log |
This file contains hidden or 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
pyqtdeploy/cache/qt-everywhere-opensource-src-5.7.0/configure.log |
This file contains hidden or 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
""" | |
""" | |
import sys | |
from PyQt5.QtCore import QCoreApplication, QTranslator, QLocale | |
from PyQt5.QtWidgets import QApplication | |
class Application: |
OlderNewer