Debian build updated

master
Salvo 'LtWorf' Tomaselli 2015-06-01 11:50:29 +07:00
parent db529f9ba4
commit c9d462e484
7 changed files with 29 additions and 34 deletions

12
debian/changelog vendored

@ -1,3 +1,15 @@
relational (2.0-1) unstable; urgency=medium
* New upstream release
* Now uses Python3
* Now uses PyQt5
* Bump standards version
* Recommends python3-pyqt5.qtwebkit to open the documentation from the UI but
it is not a necessity
-- Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it> Mon, 01 Jun 2015 09:40:09 +0200
relational (1.2-2) unstable; urgency=medium
* Fix problem in relational-cli that made it crash when exceptions

15
debian/control vendored

@ -2,14 +2,14 @@ Source: relational
Section: math
Priority: optional
Maintainer: Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>
Build-Depends: debhelper (>= 7.0.50~), python, python-support, python-xtermcolor
Standards-Version: 3.9.5
Build-Depends: debhelper (>= 7.0.50~), python3, dh-python, python3-xtermcolor
Standards-Version: 3.9.6
Homepage: http://ltworf.github.io/relational/
Package: python-relational
Package: python3-relational
Architecture: all
Section: python
Depends: ${misc:Depends}, ${python:Depends}
Depends: ${misc:Depends}, ${python3:Depends}
Description: Educational tool for relational algebra (standalone module)
Relational is primarily a tool to provide a workspace for experimenting with
relational algebra, an offshoot of first-order logic.
@ -19,7 +19,8 @@ Description: Educational tool for relational algebra (standalone module)
Package: relational
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-relational (>= ${binary:Version}), python-qt4
Depends: ${misc:Depends}, ${python3:Depends}, python3-relational (>= ${binary:Version}), python3-pyqt5
Recommends: python3-pyqt5.qtwebkit
Description: Educational tool for relational algebra (graphical user interface)
Relational is primarily a tool to provide a workspace for experimenting with
relational algebra, an offshoot of first-order logic.
@ -29,8 +30,8 @@ Description: Educational tool for relational algebra (graphical user interface)
Package: relational-cli
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-relational (>= ${binary:Version}),
python-xtermcolor
Depends: ${misc:Depends}, ${python3:Depends}, python3-relational (>= ${binary:Version}),
python3-xtermcolor
Description: Educational tool for relational algebra (command line interface)
Relational is primarily a tool to provide a workspace for experimenting with
relational algebra, an offshoot of first-order logic.

22
debian/copyright vendored

@ -3,26 +3,8 @@ Author: Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
Source: http://ltworf.github.io/relational/
Files: *
Copyright: © 2008 Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License
can be found in the /usr/share/common-licenses/GPL-3 file.
Files: debian/*
Copyright: © 2009 Chris Lamb <lamby@debian.org>
Copyright: © 2008 Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>,
© 2009 Chris Lamb <lamby@debian.org>
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

@ -1 +1 @@
usr/share/doc/python-relational/examples/ usr/share/doc/relational-cli/examples
usr/share/doc/python3-relational/examples/ usr/share/doc/relational-cli/examples

@ -1 +1 @@
usr/share/doc/python-relational/examples/ usr/share/doc/relational/examples
usr/share/doc/python3-relational/examples/ usr/share/doc/relational/examples

6
debian/rules vendored

@ -3,7 +3,7 @@ SHELL=sh -e
%:
./driver.py
dh $@
dh $@ --with python3
clean:
rm -rf build *.egg-info
@ -11,8 +11,8 @@ clean:
override_dh_auto_build:
override_dh_auto_install:
for pkg in relational-cli python-relational relational; do \
python setup/$${pkg}.setup.py install --root=$(CURDIR)/debian/$${pkg}; \
for pkg in relational-cli python3-relational relational; do \
python3 setup/$${pkg}.setup.py install --root=$(CURDIR)/debian/$${pkg}; \
rm -rf build; \
done