Removed support for pyside
This commit is contained in:
parent
c8d9e57a50
commit
c12c51dab9
@ -4,6 +4,7 @@
|
|||||||
- Improved select_union_intersect_subtract optimization to avoid parenthesis whenever possible
|
- Improved select_union_intersect_subtract optimization to avoid parenthesis whenever possible
|
||||||
- Moved feedback service, and added the code for it
|
- Moved feedback service, and added the code for it
|
||||||
- Different way of checking the latest version
|
- Different way of checking the latest version
|
||||||
|
- Removed support for pyside
|
||||||
|
|
||||||
1.1
|
1.1
|
||||||
- Incorrect relational operations now raise an exception instead of returning None
|
- Incorrect relational operations now raise an exception instead of returning None
|
||||||
|
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -2,6 +2,7 @@ relational (1.2-1) unstable; urgency=medium
|
|||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
* Point to new upstream location
|
* Point to new upstream location
|
||||||
|
* Can only use PyQt
|
||||||
|
|
||||||
-- Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it> Fri, 27 Dec 2013 00:35:44 +0100
|
-- Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it> Fri, 27 Dec 2013 00:35:44 +0100
|
||||||
|
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -19,7 +19,7 @@ Description: Educational tool for relational algebra (standalone module)
|
|||||||
|
|
||||||
Package: relational
|
Package: relational
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}, ${python:Depends}, python-relational (>= ${binary:Version}), python-qt4 | python-pyside.qtgui, python-qt4 | python-pyside.qtcore, python-qt4 | python-pyside.qtwebkit
|
Depends: ${misc:Depends}, ${python:Depends}, python-relational (>= ${binary:Version}), python-qt4
|
||||||
Description: Educational tool for relational algebra (graphical user interface)
|
Description: Educational tool for relational algebra (graphical user interface)
|
||||||
Relational is primarily a tool to provide a workspace for experimenting with
|
Relational is primarily a tool to provide a workspace for experimenting with
|
||||||
relational algebra, an offshoot of first-order logic.
|
relational algebra, an offshoot of first-order logic.
|
||||||
|
@ -83,28 +83,13 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
if x11:
|
if x11:
|
||||||
|
|
||||||
pyqt = True
|
import sip # needed on windows
|
||||||
|
from PyQt4 import QtGuiq
|
||||||
try:
|
try:
|
||||||
import sip # needed on windows
|
from relational_gui import maingui, guihandler, about, surveyForm
|
||||||
from PyQt4 import QtGui
|
|
||||||
except:
|
except:
|
||||||
print >> sys.stderr, "PyQt seems to be missing, trying to use Pyside"
|
print >> sys.stderr, "Module relational_gui is missing.\nPlease install relational package."
|
||||||
from PySide import QtCore, QtGui
|
sys.exit(3)
|
||||||
pyqt = False
|
|
||||||
|
|
||||||
if pyqt:
|
|
||||||
try:
|
|
||||||
from relational_gui import maingui, guihandler, about, surveyForm
|
|
||||||
except:
|
|
||||||
print >> sys.stderr, "Module relational_gui is missing.\nPlease install relational package."
|
|
||||||
sys.exit(3)
|
|
||||||
else:
|
|
||||||
try:
|
|
||||||
from relational_pyside import maingui, guihandler, about, surveyForm
|
|
||||||
except:
|
|
||||||
print >> sys.stderr, "Module relational_pyside is missing.\nPlease install relational package."
|
|
||||||
sys.exit(3)
|
|
||||||
|
|
||||||
about.version = version
|
about.version = version
|
||||||
surveyForm.version = version
|
surveyForm.version = version
|
||||||
|
@ -1,23 +1,23 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Relational
|
# Relational
|
||||||
# Copyright (C) 2008 Salvo "LtWorf" Tomaselli
|
# Copyright (C) 2008 Salvo "LtWorf" Tomaselli
|
||||||
#
|
#
|
||||||
# Relational is free software: you can redistribute it and/or modify
|
# Relational is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
|
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
|
||||||
|
|
||||||
import installer_common
|
import installer_common
|
||||||
|
|
||||||
installer_common.c_setup('relational_gui')
|
installer_common.c_setup('relational_gui')
|
||||||
installer_common.c_setup('relational_pyside')
|
#installer_common.c_setup('relational_pyside')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user