debian/0000755000000000000000000000000012313447310007164 5ustar debian/tomahawk.install.arm640000777000000000000000000000000012313447245017622 2tomahawk.install.armhfustar debian/rules0000755000000000000000000000064112313447011010243 0ustar #!/usr/bin/make -f %: dh $@ --with kde --parallel --list-missing override_dh_auto_configure: ifneq (,$(filter $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE), armhf arm64 armel)) dh_auto_configure -- -DCMAKE_INSTALL_LIBEXECDIR=lib/tomahawk/libexec/ -CMAKE_WITH_BREAKPAD=OFF else dh_auto_configure -- -DCMAKE_INSTALL_LIBEXECDIR=lib/tomahawk/libexec/ endif override_dh_strip: dh_strip --dbg-package=tomahawk-dbg debian/patches/0000755000000000000000000000000012305656050010617 5ustar debian/patches/kubuntu_fix-plugin-install.patch0000644000000000000000000000211112305656050017136 0ustar From: Rohan Garg Subject: Fix install path for Tomahawk plugins * Fixes the issue where Tomhawk plugins are MultiArch'd but Tomahawk searches for them in /usr/lib * Not forwarded since code has changed alot upstream and a different solution is required. * This patch should be dropped with the next feature release of Tomahawk Origin: vendor Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/tomahawk/+bug/1287163 Forwarded: not-needed Index: tomahawk-0.7.0+dfsg1/TomahawkAddPlugin.cmake =================================================================== --- tomahawk-0.7.0+dfsg1.orig/TomahawkAddPlugin.cmake 2013-05-01 21:26:27.000000000 +0200 +++ tomahawk-0.7.0+dfsg1/TomahawkAddPlugin.cmake 2014-03-05 16:38:58.583560563 +0100 @@ -101,6 +101,6 @@ # make installation optional, maybe useful for dummy plugins one day if(NOT PLUGIN_NO_INSTALL) include(GNUInstallDirs) - install(TARGETS ${target} DESTINATION ${CMAKE_INSTALL_LIBDIR}) + install(TARGETS ${target} DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/") endif() endmacro() debian/patches/series0000644000000000000000000000004112305655674012042 0ustar kubuntu_fix-plugin-install.patch debian/compat0000644000000000000000000000000212271026716010370 0ustar 7 debian/control0000644000000000000000000000344212305657015010600 0ustar Source: tomahawk Section: kde Priority: optional Maintainer: Kubuntu Developers Build-Depends: cmake, debhelper (>= 7.3), libasound2-dev, libattica-dev (>= 0.4~), libboost-dev, libclucene-dev, libechonest-dev, libfftw3-dev, libflac++-dev, libgloox-dev, libgnutls-dev, libjreen-dev, liblastfm-dev, libmad0-dev, libogg-dev, libphonon-dev, libqca2-dev, libqjson-dev, libqt4-dev, libqt4-opengl-dev, libqtwebkit-dev, libqtweetlib-dev, libquazip0-dev, libsamplerate0-dev, libtag-extras-dev, libtag1-dev, libvorbis-dev, pkg-config, pkg-kde-tools (>= 0.9) Standards-Version: 3.9.4 Homepage: http://tomahawk-player.org Vcs-Browser: http://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-packaging/tomahawk Vcs-Bzr: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/tomahawk Package: tomahawk Architecture: any Depends: libqca2-plugin-ossl, libqt4-sql-sqlite, ${misc:Depends}, ${shlibs:Depends} Description: Social media player It hooks you up with your friends — connect with your jabber/gtalk/twitter friends and share collections and playlists. Package: tomahawk-dbg Section: debug Priority: extra Architecture: any Depends: tomahawk (= ${binary:Version}), ${misc:Depends} Description: Social media player - debugging symbols This package contains the debugging symbols to be used for debugging problems with the tomahawk package. debian/repack.stub0000755000000000000000000000346412271026716011350 0ustar #!/bin/sh : <<=cut =pod =head1 NAME repack.stub - script to repack upstream tarballs from uscan =head1 INSTRUCTIONS put this in debian/repack.stub and add "debian sh debian/repack.stub" to the end of the line in debian/watch. you will also need to add a version mangle to debian/watch. then create a debian/repack.local. this is a shell script that is sourced under "set -e", so be careful to check returns codes. =head1 FUNCTIONS =over 4 =item rm rm is replaced by a function that does some magic ("rm -rv" by default), but also changes MANIFEST if $MANIFEST is 1 =item mv mv is replaced by a function that just does mv (by default), but also changes MANIFEST if $MANIFEST is 1 =item requires_version requires_version is there for future usage for requiring certain versions of the script =back =head1 VARIABLES =over 4 =item SUFFIX defaults to +dfsg what to append to the upstream version =item RM_OPTS defaults to -vrf options to pass to rm =item MANIFEST defaults to 0, set to 1 to turn on. this will manipulate MANIFEST files in CPAN tarballs. =item UP_BASE this is the directory where the upstream source is. =back =head1 COPYRIGHT AND LICENSE Copyright 2009, Ryan Niebur License: Artistic or GPL-1+ =cut if [ -z "$REPACK_SH" ]; then if [ -f ../../scripts/repack.sh ]; then REPACK_SH=../../scripts/repack.sh fi if [ -z "$REPACK_SH" ] && which repack.sh > /dev/null; then REPACK_SH=$(which repack.sh) fi fi if [ ! -f "$REPACK_SH" ]; then echo "Couldn't find a repack.sh. please put it in your PATH, put it at ../../scripts/repack.sh, or put it somewhere else and set the REPACK_SH variable" echo "You can get it from http://anonscm.debian.org/gitweb/?p=pkg-perl/scripts.git;a=blob_plain;f=repack.sh;hb=HEAD" exit 1 fi exec "$REPACK_SH" "$@" debian/changelog0000644000000000000000000002032712313447114011044 0ustar tomahawk (0.7.0+dfsg1-0ubuntu5) trusty; urgency=medium * Fix install files even harder for armhf (add arm specific file) * Set WITH_BREAKPAD to OFF for arm variants so maybe arm64 will build -- Scott Kitterman Sat, 22 Mar 2014 22:59:27 -0400 tomahawk (0.7.0+dfsg1-0ubuntu4) trusty; urgency=medium * Really fix install files (LP: #1295069) -- Rohan Garg Thu, 20 Mar 2014 15:38:12 +0100 tomahawk (0.7.0+dfsg1-0ubuntu3) trusty; urgency=medium * Add kubuntu_fix-plugin-install.patch to fix plugin path installation (LP: #1287163) * Fix install files to not install headers -- Rohan Garg Wed, 05 Mar 2014 18:08:46 +0100 tomahawk (0.7.0+dfsg1-0ubuntu1) trusty; urgency=medium [ Aaron Honeycutt ] * New upstream release (LP: #1162601) * Repack upstream tarball so it's DFSG compliant [ Rohan Garg ] * Update copyright file a bit -- Rohan Garg Mon, 10 Feb 2014 20:09:50 +0100 tomahawk (0.6.0+dfsg1-0ubuntu3) saucy; urgency=low * Rebuild for libechonest2.1. -- Colin Watson Wed, 17 Jul 2013 00:43:49 +0100 tomahawk (0.6.0+dfsg1-0ubuntu2) raring; urgency=low * Build with jreen and qtweetlib -- Harald Sitter Fri, 15 Mar 2013 13:51:06 +0100 tomahawk (0.6.0+dfsg1-0ubuntu1) raring; urgency=low * Reduce dfsg stripping to fix build (source remains still DFSG compliant) -- Harald Sitter Thu, 07 Mar 2013 23:40:27 +0100 tomahawk (0.6.0+dfsg-0ubuntu1) raring; urgency=low [ Prasad Murthy ] * Update debian/copyright * debian/control: - Remove Recommends: gstreamer0.10-plugins-ugly - Update Maintainer to Kubuntu developers - Drop build-depends + libqtweetlib-dev + libjreen-dev * debian/rules: - override_dh_auto_configure: + Drop -DBUILD_RELEASE=ON + Drop -DCMAKE_BUILD_TYPE=Release [ Harald Sitter ] * New upstream release * Bump standards version to 3.9.4 and prepare for inclusion in raring * Make -dbg package section debug and priority extra * Don't version-dep on libechonest * Change libexec path from /usr/libexec to /usr/lib/tomahawk/libexec/ as that seems more FHS compliant. Also int he long run plugins should become movable to /usr/lib/tomahawk/ * Add debian/repack.stub and debian/repack.local to do DFSG repack -- Harald Sitter Thu, 07 Mar 2013 23:29:42 +0100 tomahawk (0.6.0~beta1-0ubuntu1~ppa1~quantal1) quantal; urgency=low * New upstream release -- Harald Sitter Mon, 14 Jan 2013 16:04:30 +0100 tomahawk (0.5.5-0ubuntu1~ppa1~quantal1) quantal; urgency=low * New upstream release * Add pkg-config to build-depends to fix a cmake warning with echonest * Bump build-dep on libechonest-dev to >= 2~ -- Philip Muškovac Thu, 26 Jul 2012 12:38:28 +0200 tomahawk (0.5.4-0ubuntu1~ppa1~quantal1) quantal; urgency=low * New upstream release -- Philip Muškovac Sun, 15 Jul 2012 14:42:01 +0200 tomahawk (0.5.3-0ubuntu1~ppa1~quantal) quantal; urgency=low * New upstream release -- Philip Muškovac Sat, 07 Jul 2012 12:01:20 +0200 tomahawk (0.5.2-0ubuntu1~ppa1~quantal1) quantal; urgency=low * New upstream release -- Philip Muškovac Mon, 02 Jul 2012 00:23:22 +0200 tomahawk (0.5.1-0ubuntu1~ppa1~quantal1) quantal; urgency=low * New upstream release -- Philip Muškovac Sun, 01 Jul 2012 20:40:49 +0200 tomahawk (0.5.0-0ubuntu1~ppa1~quantal1) quantal; urgency=low * New upstream release - bump build-dep on attica - update install file -- Philip Muškovac Mon, 25 Jun 2012 15:24:46 +0200 tomahawk (0.4.2-0ubuntu1~ppa2~precise1) precise; urgency=low * Add build-dep on libquazip-dev -- Philip Muškovac Mon, 09 Apr 2012 01:24:04 +0200 tomahawk (0.4.2-0ubuntu1~ppa1~precise1) precise; urgency=low * New upstream release -- Philip Muškovac Sat, 07 Apr 2012 19:16:13 +0200 tomahawk (0.4.0-0ubuntu1~ppa1~precise3) precise; urgency=low * Import upstream commit c6cd6821bfe1e2c2a8de10f1ca3ea30940dbf27c from master as support_qtweetlibs_0.5.diff for QTweetLib 0.5 support and adjust it for tomahawk 0.4 -- Philip Muškovac Sun, 11 Mar 2012 14:13:57 +0100 tomahawk (0.4.0-0ubuntu1~ppa1~precise2) precise; urgency=low * Rebuild against new QTweetLib -- Philip Muškovac Sun, 11 Mar 2012 11:26:26 +0100 tomahawk (0.4.0-0ubuntu1~ppa1~precise1) precise; urgency=low * New upstream release * Drop jreen sources and packages and build-depend on libjreen-dev instead -- Philip Muškovac Fri, 09 Mar 2012 23:46:14 +0100 tomahawk (0.3.3-0ubuntu2~ppa1~precise1) precise; urgency=low * set -DCMAKE_INSTALL_LIBEXECDIR=libexec to work around cmake weirdness -- Philip Muškovac Tue, 27 Dec 2011 01:08:55 +0100 tomahawk (0.3.3-0ubuntu1~precise1~ppa1) precise; urgency=low * Drop qtweetlib from thirdparty patch -- Philip Muškovac Sun, 11 Dec 2011 23:16:15 +0100 tomahawk (0.3.3-0ubuntu1~oneiric1~ppa1) oneiric; urgency=low * New upstream release * Recommend gstreamer0.10-plugins-ugly as it seems to help with the phonon-gst issues -- Philip Muškovac Fri, 09 Dec 2011 20:17:15 +0100 tomahawk (0.3.2-0ubuntu1~oneiric1~ppa2) oneiric; urgency=low * New upstream release * split libjreen0 from tomahawk into it's own package -- Philip Muškovac Sun, 27 Nov 2011 18:40:31 +0100 tomahawk (0.3.1-0ubuntu1~oneiric1~ppa3) oneiric; urgency=low * Add libfftw3-dev and libsamplerate0-dev to build-deps, used by liblastfm2 -- Philip Muškovac Fri, 18 Nov 2011 18:59:16 +0100 tomahawk (0.3.1-0ubuntu1~oneiric1~ppa2) oneiric; urgency=low * Build with -DCMAKE_BUILD_TYPE=Release * Build-Depend on libqtweetlib-dev instead of libqtweet-dev -- Philip Muškovac Mon, 14 Nov 2011 18:50:34 +0100 tomahawk (0.3.1-0ubuntu1~oneiric1~ppa1) oneiric; urgency=low * New upstream release 0.3.1 -- Philip Muškovac Sun, 13 Nov 2011 19:41:14 +0100 tomahawk (0.3.0-4~0ubuntu1~oneiric0) oneiric; urgency=low * updated to 0.3.0 * added -DBUILD_RELEASE=ON * added new deps -- Paulo Dias Thu, 10 Nov 2011 22:35:05 -0200 tomahawk (0.2.3-0ubuntu1~ppa2) oneiric; urgency=low * Packaging fixes -- Philip Muškovac Fri, 30 Sep 2011 22:26:38 +0200 tomahawk (0.2.3-0~0ubuntu1~natty0) natty; urgency=low * updated to 0.2.3 -- Paulo Dias Sat, 03 Sep 2011 14:32:11 -0300 tomahawk (0.3.0-3~git20110827~padoka1) natty; urgency=low * updated to latest git -- Paulo Dias Sat, 27 Aug 2011 17:10:59 -0300 tomahawk (0.2.2-0~0ubuntu1~natty0) natty; urgency=low * updated to 0.2.2 -- Paulo Dias Tue, 23 Aug 2011 22:43:57 -0300 tomahawk (0.2.1-0~0ubuntu1~natty0) natty; urgency=low * updated to 0.2.1 -- Paulo Dias Tue, 16 Aug 2011 22:28:12 -0300 tomahawk (0.1.1-3~git20110717~padoka1) natty; urgency=low * updated to latest git -- Paulo Dias Sun, 17 Jul 2011 21:51:29 -0300 tomahawk (0.1.0-3~0ubuntu1~natty0) natty; urgency=low * released 0.1.0 -- Paulo Dias Sun, 05 Jun 2011 19:56:42 -0300 tomahawk (0.1.0-2~git20110531~padoka1) natty; urgency=low * updated to latest git -- Paulo Dias Tue, 31 May 2011 13:24:47 -0300 tomahawk (0.0.3-1~git20110331~padoka0) maverick; urgency=low * updated to latest git -- Paulo Dias Thu, 31 Mar 2011 14:49:12 -0300 tomahawk (0.0.3-7~git20110329~padoka7) maverick; urgency=low * updated to latest git and fixed some dependencies for ppa. -- Paulo Dias Wed, 30 Mar 2011 20:06:32 -0300 tomahawk (0.0.3-0~git20110329~padoka0) maverick; urgency=low * updated to latest git. -- Paulo Dias Tue, 29 Mar 2011 23:46:53 -0300 debian/repack.local0000644000000000000000000000044312271026716011454 0ustar # dist stuff we don't need on linux rm admin/mac rm admin/win # breakpad is entirely imported but only parts of it are actually used rm thirdparty/breakpad/client/mac rm thirdparty/breakpad/client/windows rm thirdparty/breakpad/third_party/protobuf rm thirdparty/breakpad/processor/testdata debian/copyright0000644000000000000000000003752312276435775011155 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=174 Upstream-Name: tomahawk Source: http://downloads.tomahawk-player.org/ Files: * Copyright: 2010-2012 Christian Muehlhaeuser 2010-2012 Leo Franchi 2010-2012 Jeff Mitchell 2011 Ruslan Nigmatullin 2010-2013 Dominik Schmidt 2011-2012 Casey Link 2010-2012 Hugo Lindström 2010-2011 Christopher Reichert 2011-2013 Teo Mrnjavac 2010-2011 David Sansome 2010-2012 Stefan Derkits 2011 Michael Zanetti 2010 Dmitry 'Krasu' Baryshev 2011 Nokia Corporation and/or its subsidiary(-ies) License: GPL-3+ Files: debian/* Copyright: 2011 Paulo Dias 2011-2012 Philip Muškovac 2014 Aaron Honeycutt License: GPL-3+ Files: src/libtomahawk/utils/StyleHelper.cpp Copyright: 2011 Nokia Corporation and/or its subsidiary(-ies) License: GPL-3 Files: src/infoplugins/linux/fdonotify/ImageConverter.* src/infoplugins/linux/fdonotify/FdoNotifyPlugin.* src/libtomahawk/database/LocalCollection.* src/libtomahawk/utils/SmartPointerList.h src/libtomahawk/utils/XspfGenerator.* src/libtomahawk/widgets/searchlineedit/SearchButton.* src/libtomahawk/widgets/RecentlyPlayedPlaylistsModel.* src/libtomahawk/widgets/RecentPlaylistsModel.* src/sourcetree/items/LovedTracksItem.* src/sourcetree/items/CategoryItems.* src/sourcetree/items/GenericPageItems.* src/sourcetree/items/PlaylistItems.* src/sourcetree/items/SourceItem.* src/sourcetree/items/SourceTreeItem.* src/libtomahawk/GlobalActionManager.cpp thirdparty/breakpad/third_party/glog/ltmain.sh Copyright: 2009 Aurélien Gâteau 2010-2012 Jeff Mitchell 2010-2011 Leo Franchi 2009 Mark Kretschmann 2009 Ian Monroe 2009 Max Howell 2009 Benjamin C. Meyer 2012 Christopher Reichert 2013 Teo Mrnjavac 2011-2012 Christian Muehlhaeuser 1996-2001, 2003-2008 Free Software Foundation, Inc License: GPL-2+ Files: src/libtomahawk/thirdparty/kdsingleapplicationguard/* Copyright: 2001-2010 Klaralvdalens Datakonsult AB License: LGPL-2 Files: src/libtomahawk/utils/Qnr_IoDeviceStream.* thirdparty/qxt/qxtweb-standalone/example/main.cpp thirdparty/qxt/qxtweb-standalone/example/myservice.h thirdparty/qxt/qxtweb-standalone/web/qhttpheader.cpp thirdparty/qxt/qxtweb-standalone/web/qhttpheader.h Copyright: 2007 Matthias Kretz License: LGPL-2.1+ Files: src/libtomahawk/widgets/searchlineedit/* thirdparty/breakpad/* thirdparty/libportfwd/third-party/miniupnpc-1.6/* thirdparty/qxt/qxtweb-standalone/core/* thirdparty/qxt/qxtweb-standalone/network/* thirdparty/qxt/qxtweb-standalone/web/* Copyright: 2008-2009 Benjamin C. Meyer 1991, 1993 The Regents of the University of California 2005-2011 Thomas Bernard 1999-2000, 2003-2012 Google Inc 2006 - 2011, the LibQxt project License: BSD-3-clause Files: src/libtomahawk/thirdparty/Qocoa/* Copyright: 2011 Mike McQuaid 2011-2012 Leo Franchi License: Expat Files: ./thirdparty/breakpad/common/md5.cc Copyright: *No copyright* License: Public domain Files: ./thirdparty/breakpad/third_party/curl/curlver.h Copyright: "1996, - 2009, Daniel Stenberg, ." 1998, - 2009, Daniel Stenberg, , et al License: curl Files: thirdparty/SPMediaKeyTap/* thirdparty/breakpad/processor/disassembler_x86.* Copyright: 2011 Joachim Bengtsson Google Inc License: BSD-Style Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Neither the name of the organization nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License:GPL-2+ 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. 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 version 3 as published by the Free Software Foundation; . 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/BSD' License: LGPL-2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by 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, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-2'. License: Zlib This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. 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. . 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: LGPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by 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, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU Lesser 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. License: LGPL-2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2 of the License. . 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser 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. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-2' License: LGPL-2.1 This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2.1 of the License. . 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 Lesser General Public License for more details. . You should have received a copy of the GNU Lesser 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. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-2.1' License: LGPL-2.1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your opinion) 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 Lesser General Public License for more details. . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-2.1' License: curl All rights reserved. . Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . 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 OF THIRD PARTY RIGHTS. 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. . Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. debian/source/0000755000000000000000000000000012271026716010472 5ustar debian/source/format0000644000000000000000000000001412271026716011700 0ustar 3.0 (quilt) debian/tomahawk.install.armhf0000644000000000000000000000015712313445702013471 0ustar usr/bin/* usr/lib/libtomahawk_* usr/lib/*/libtomahawklib.so.0.7.0 usr/lib/*/libtomahawk_portfwd.so usr/share/* debian/tomahawk.install0000644000000000000000000000020212312576233012367 0ustar usr/bin/* usr/lib/libtomahawk_* usr/lib/tomahawk/* usr/lib/*/libtomahawklib.so.0.7.0 usr/lib/*/libtomahawk_portfwd.so usr/share/*