debian/0000775000000000000000000000000012173511625007173 5ustar debian/copyright0000664000000000000000000000635512173511450011133 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: nootka Source: http://nootka.sourceforge.net/ Files: * Copyright: 2006-2013 Tomasz Bojczuk License: GPL-3+ Files: src/sound/tartini/* Copyright: 2002-2007 Philip McLeod License: GPL-2+ Files: debian/* Copyright: 2013 Howard Chan License: GPL-3+ Files: src/sound/RtMidi.* Copyright: 2003-2011 Gary P. Scavone License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . Any person wishing to distribute modifications to the Software is requested to send the modifications to the original developer so that they can be incorporated into the canonical version. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: GPL-2+ This package 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 2 of the License, or (at your option) any later version. . This package 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 . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". License: GPL-3+ This package 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 package 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 . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". debian/rules0000775000000000000000000000006412173511450010247 0ustar #!/usr/bin/make -f %: dh $@ --parallel --with=kde debian/source/0000775000000000000000000000000012173511450010467 5ustar debian/source/format0000664000000000000000000000001412173511450011675 0ustar 3.0 (quilt) debian/changelog0000664000000000000000000000217112173511612011042 0ustar nootka (0.8.77-0ubuntu1) saucy; urgency=low * New upstream release. - Now requires libvorbis-dev, libsoundtouch0, libpulse0, libjack0 -- Jackson Doak Wed, 10 Jul 2013 16:53:46 +1000 nootka (0.8.60~beta-0ubuntu5) raring; urgency=low * Remove qtmultimedia5-dev since it is non-used and powerpc can't build -- Howard Chan Fri, 05 Apr 2013 19:00:47 +0800 nootka (0.8.60~beta-0ubuntu4) raring; urgency=low [ Prasad Murthy ] * Fix qmaxqminarm.patch -- Jonathan Riddell Wed, 03 Apr 2013 17:20:59 +0100 nootka (0.8.60~beta-0ubuntu3) raring; urgency=low [ Prasad Murthy ] * Fix qmaxqminarm.patch -- Jonathan Riddell Wed, 03 Apr 2013 16:42:37 +0100 nootka (0.8.60~beta-0ubuntu2) raring; urgency=low [ Prasad Murthy ] * Add qmaxqminarm.patch to fix compile on ARM -- Jonathan Riddell Mon, 01 Apr 2013 14:21:01 +0100 nootka (0.8.60~beta-0ubuntu1) raring; urgency=low * Initial packaging of version 0.8.60 beta. (LP: #1157859) -- Howard Chan Fri, 22 Mar 2013 22:04:15 +0800 debian/compat0000664000000000000000000000000212173511450010365 0ustar 8 debian/control0000664000000000000000000000157212173511450010577 0ustar Source: nootka Section: sound Priority: extra Maintainer: Kubuntu Developers XSBC-Original-Maintainer: Howard Chan Build-Depends: debhelper (>= 8.0.0), cmake, pkg-kde-tools, libqt4-dev, qtmobility-dev, libfftw3-dev, libasound2-dev, libvorbis-dev, libsoundtouch-dev, libpulse-dev, libjack-dev Standards-Version: 3.9.4 Homepage: http://nootka.sourceforge.net/ #Vcs-Git: git://git.debian.org/collab-maint/nootka.git #Vcs-Browser: http://git.debian.org/?p=collab-maint/nootka.git;a=summary Package: nootka Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: This package nootka provides an application to learn classical score notation. Nootka is an application to learn classical score notation. It helps to understand the rules of reading and writing scores and develops skills for playing and singing notes. debian/patches/0000775000000000000000000000000012173511450010616 5ustar debian/patches/qmaxfix.patch0000664000000000000000000000141312173511450013313 0ustar Description: Patch to use qreal for double for the arm build Since qreal!=double for arm architecture we need to use qreal instead for double in qMax() and qMin(). . nootka (0.8.60~beta-0ubuntu1) raring; urgency=low . * Initial packaging of version 0.8.60 beta. (LP: #1157859) Index: nootka/src/charts/tmainchart.cpp =================================================================== --- nootka.orig/src/charts/tmainchart.cpp 2013-07-10 16:55:42.566091181 +1000 +++ nootka/src/charts/tmainchart.cpp 2013-07-10 16:55:42.562091155 +1000 @@ -137,7 +137,7 @@ void TmainChart::sceneMoved() { qreal xOff = mapToScene(0, 0).x(); - xOff = qMax(0.0, xOff); + xOff = qMax(qreal(0.0), xOff); if (xOff > 16) yAxis->setX(16 + xOff); #if defined(Q_OS_MAC) debian/patches/series0000664000000000000000000000001612173511450012030 0ustar qmaxfix.patch