Moved the start.py file directly in qt run template instead of using this subprocess thingy. Much easier for packaging.

This commit is contained in:
Virgil Dupras 2010-10-05 10:22:02 +02:00
parent 81dcfbe6ae
commit 4517bea664
7 changed files with 23 additions and 174 deletions

View File

@ -1,26 +0,0 @@
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import cProfile
import pstats
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication
if sys.platform == 'win32':
from app_win import DupeGuru
else:
from app import DupeGuru
if __name__ == "__main__":
app = QApplication(sys.argv)
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName('dupeGuru Music Edition')
dgapp = DupeGuru()
cProfile.run('app.exec_()', '/tmp/prof')
p = pstats.Stats('/tmp/prof')
p.sort_stats('time').print_stats()

View File

@ -1,28 +0,0 @@
#!/usr/bin/env python3
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import sip
sip.setapi('QVariant', 1)
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication, QIcon, QPixmap
from ..base import dg_rc
from .app import DupeGuru
if sys.platform == 'win32':
import base.cxfreeze_fix
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setWindowIcon(QIcon(QPixmap(":/logo_me")))
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName(DupeGuru.NAME)
QCoreApplication.setApplicationVersion(DupeGuru.VERSION)
dgapp = DupeGuru()
sys.exit(app.exec_())

View File

@ -1,26 +0,0 @@
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import cProfile
import pstats
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication
if sys.platform == 'win32':
from app_win import DupeGuru
else:
from app import DupeGuru
if __name__ == "__main__":
app = QApplication(sys.argv)
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName('dupeGuru Picture Edition')
dgapp = DupeGuru()
cProfile.run('app.exec_()', '/tmp/prof')
p = pstats.Stats('/tmp/prof')
p.sort_stats('time').print_stats()

View File

@ -1,28 +0,0 @@
#!/usr/bin/env python3
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import sip
sip.setapi('QVariant', 1)
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication, QIcon, QPixmap
from ..base import dg_rc
from .app import DupeGuru
if sys.platform == 'win32':
import base.cxfreeze_fix
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setWindowIcon(QIcon(QPixmap(":/logo_pe")))
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName(DupeGuru.NAME)
QCoreApplication.setApplicationVersion(DupeGuru.VERSION)
dgapp = DupeGuru()
sys.exit(app.exec_())

View File

@ -1,27 +0,0 @@
#!/usr/bin/env python
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import cProfile
import pstats
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication
if sys.platform == 'win32':
from app_win import DupeGuru
else:
from app import DupeGuru
if __name__ == "__main__":
app = QApplication(sys.argv)
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName('dupeGuru')
dgapp = DupeGuru()
cProfile.run('app.exec_()', '/tmp/prof')
p = pstats.Stats('/tmp/prof')
p.sort_stats('time').print_stats()

View File

@ -1,29 +0,0 @@
#!/usr/bin/env python3
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import os.path
import sip
sip.setapi('QVariant', 1)
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication, QIcon, QPixmap
from ..base import dg_rc
from .app import DupeGuru
if sys.platform == 'win32':
import base.cxfreeze_fix
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setWindowIcon(QIcon(QPixmap(":/logo_se")))
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName(DupeGuru.NAME)
QCoreApplication.setApplicationVersion(DupeGuru.VERSION)
dgapp = DupeGuru()
sys.exit(app.exec_())

View File

@ -1,15 +1,28 @@
#!/usr/bin/env python3
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
import sys
import os
import os.path as op
import subprocess
import sip
sip.setapi('QVariant', 1)
def main():
scriptpath = op.abspath(__file__)
scriptfolder = op.dirname(scriptpath)
os.environ['PYTHONPATH'] = scriptfolder
subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=os.environ)
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QApplication, QIcon, QPixmap
if __name__ == '__main__':
sys.exit(main())
from qt.base import dg_rc
from qt.{{edition}}.app import DupeGuru
if sys.platform == 'win32':
import base.cxfreeze_fix
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setWindowIcon(QIcon(QPixmap(":/{0}".format(DupeGuru.LOGO_NAME))))
QCoreApplication.setOrganizationName('Hardcoded Software')
QCoreApplication.setApplicationName(DupeGuru.NAME)
QCoreApplication.setApplicationVersion(DupeGuru.VERSION)
dgapp = DupeGuru()
sys.exit(app.exec_())