--- fet-5.18.0/debian/changelog 2014-08-11 13:03:02.000000000 +0000 +++ fet-5.22.0/debian/changelog 2014-08-11 13:03:06.000000000 +0000 @@ -1,3 +1,16 @@ +fet (5.22.0-0.1) unstable; urgency=low + + [ Mattia Rizzolo ] + * Non-maintainer upload. + * New upstream release 5.22.0. (Closes: #718601) + * debian/control: bump Standards-Version to 3.9.5: + + debian/rules: add build-arch and build-indep targets. + + [ Andrea Colangelo ] + * debian/copyright: update. + + -- Mattia Rizzolo Sat, 12 Jul 2014 19:43:56 +0200 + fet (5.18.0-1) unstable; urgency=low * New upstream release. --- fet-5.18.0/debian/control 2014-08-11 13:03:02.000000000 +0000 +++ fet-5.22.0/debian/control 2014-08-11 13:03:06.000000000 +0000 @@ -3,13 +3,13 @@ Priority: optional Maintainer: Radu Spineanu Build-Depends: debhelper (>= 7.0.0), libqt4-dev, qt4-dev-tools -Standards-Version: 3.9.1 +Standards-Version: 3.9.5 Package: fet Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: python Description: timetable generator - FET is an evolutionary program (using a genetic algorithm) - for automatically generating the timetable of a school, + FET is an evolutionary program (using a genetic algorithm) + for automatically generating the timetable of a school, high-school or university. --- fet-5.18.0/debian/copyright 2014-08-11 13:03:02.000000000 +0000 +++ fet-5.22.0/debian/copyright 2014-08-11 13:03:06.000000000 +0000 @@ -11,23 +11,22 @@ Copyright: - Copyright (C) 2002 - 2008 Liviu Lalescu + Copyright © 2002-2014 Liviu Lalescu, Volker Dirr. - This program is free software; you can redistribute it and/or modify + FET 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; version 2 dated June, 1991. + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, + FET 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, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - MA 02110-1301, USA. - + along with FET; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. --- fet-5.18.0/debian/rules 2014-08-11 13:03:02.000000000 +0000 +++ fet-5.22.0/debian/rules 2014-08-11 13:03:06.000000000 +0000 @@ -25,16 +25,18 @@ touch configure-stamp -build: build-stamp +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp -build-stamp: configure-stamp +build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. qmake-qt4 fet.pro $(MAKE) - + touch build-stamp clean: @@ -50,16 +52,16 @@ install: build dh_testdir dh_testroot - dh_prep + dh_prep dh_installdirs # Build architecture-independent files here -binary-indep: build install +binary-indep: build-indep install # We have nothing to do by default. # Build architecture-dependent files here. -binary-arch: build install +binary-arch: build-arch install dh_testdir dh_testroot dh_installchangelogs ChangeLog @@ -79,4 +81,4 @@ dh_builddeb binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +.PHONY: build-arch build-indep build clean binary-indep binary-arch binary install configure configure-stamp