debian/0000755000000000000000000000000012213571542007170 5ustar debian/rules0000755000000000000000000000010611773326205010251 0ustar #!/usr/bin/make -f export DH_VERBOSE %: dh $@ --parallel --with kde debian/copyright0000644000000000000000000000276511772707615011150 0ustar This package was debianized by Jonathan Thomas on Sun, 31 Jan 2010 09:44:53 -0500. It was downloaded from https://bitbucket.org/flupp/smooth-tasks-fork/ Upstream Author: Toni Dietze Copyright © 2009 Mathias Panzenböck Copyright © 2009 Michal Odstrčil Copyright © 2009 Marcin Baszczewski Copyright © 2009-2012 Toni Dietze License: 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 St - Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in the /usr/share/common-licenses/GPL-2 file. The Debian packaging is © 2010, Jonathan Thomas and is licensed under the GPL version 2 or later, see above. debian/source/0000755000000000000000000000000011765222400010465 5ustar debian/source/format0000644000000000000000000000001411765222400011673 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011773351364010627 5ustar debian/patches/qreal.diff0000644000000000000000000000170711773331232012562 0ustar Author: Pino Toscano Description: Fix compilation when qreal != double Explicitly cast 0.0 as qreal to make the types of the qMax arguments match. Last-Update: 2012-06-29 Forwarded: no --- a/applet/SmoothTasks/TaskbarLayout.cpp +++ b/applet/SmoothTasks/TaskbarLayout.cpp @@ -213,7 +213,7 @@ QSizeF TaskbarLayout::sizeHint(Qt::SizeH qreal maxRdHeigt = rdConstraint.height() > 0 ? rdConstraint.height() : std::numeric_limits::infinity(); qreal maxItemRdHeight; qreal rdWithSum = comulativePreferredItemRdWidthStatic(maxRdHeigt, true, 0, &maxItemRdHeight); - rdWithSum += qMax(0.0, (qreal) (m_items.count() - minimumRows()) * m_spacing); + rdWithSum += qMax(qreal(0.0), (qreal) (m_items.count() - minimumRows()) * m_spacing); QSizeF preferredSize = QSizeF(rdWithSum / (qreal) minimumRows(), (qreal) minimumRows() * maxItemRdHeight); swapRdAndWorldSize(preferredSize, preferredSize, m_orientation == Qt::Vertical); debian/patches/series0000644000000000000000000000001311773351364012036 0ustar qreal.diff debian/compat0000644000000000000000000000000211773110165010366 0ustar 9 debian/control0000644000000000000000000000115211773110464010574 0ustar Source: plasma-widget-smooth-tasks Section: kde Priority: optional Maintainer: Salvo Rinaldi Uploaders: Salvo 'LtWorf' Tomaselli Build-Depends: debhelper (>= 9), pkg-kde-tools (>= 0.15.0), gettext, kde-workspace-dev (>= 4:4.8), libx11-dev, cmake Standards-Version: 3.9.3 Homepage: https://bitbucket.org/flupp/smooth-tasks-fork/ Package: plasma-widget-smooth-tasks Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: alternate task manager plasma widget This task manager replacement shows only task icons to increase the free space of the panel. debian/changelog0000644000000000000000000000466112213571542011051 0ustar plasma-widget-smooth-tasks (1flupp0~hg20120610-2build2) saucy; urgency=low * No-change rebuild for libtaskmanager4abi5. -- Colin Watson Tue, 10 Sep 2013 11:24:29 +0100 plasma-widget-smooth-tasks (1flupp0~hg20120610-2build1) saucy; urgency=low * No change rebuild for libtaskmanager4 transition -- Scott Kitterman Sat, 29 Jun 2013 08:25:47 -0400 plasma-widget-smooth-tasks (1flupp0~hg20120610-2) unstable; urgency=low * Adds --parallel in rules * Patch from Pino Toscano to build on armel and armhf -- Salvo 'LtWorf' Tomaselli Fri, 29 Jun 2012 15:25:40 +0200 plasma-widget-smooth-tasks (1flupp0~hg20120610-1) unstable; urgency=low * Changed to forked version for kde 4.8, using their kde4.8 branch https://bitbucket.org/flupp/smooth-tasks-fork/src/e8a97edfdebc (Closes: #678774) * Changed homepage to point to the new upstream * Removed debian patches * Added myself as uploader * Updated copyright file with new author information * Standard version changed to 3.9.3 * compat=9 (and subsequent changes to rules) * migrate kdebase-workspace-dev build dependency to kde-workspace-dev, and set its minimum version to 4.8 -- Salvo 'LtWorf' Tomaselli Mon, 11 Jun 2012 13:54:55 +0200 plasma-widget-smooth-tasks (0.0~wip20100227-1.1) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS on armel: error: no matching function for call to 'qMin(double, qreal)'" make constant explicitly qreal (Closes: DebianBug#598930) Thanks Felix Geyer -- Hector Oron Sun, 07 Nov 2010 11:29:04 +0000 plasma-widget-smooth-tasks (0.0~wip20100227-1) unstable; urgency=low * Initial Debian upload * Changed package description -- Salvo Rinaldi Wed, 12 May 2010 13:31:31 +0100 plasma-widget-smooth-tasks (0.0~wip20100227-0ubuntu1) lucid; urgency=low * New upstream bugfix release -- Alessandro Ghersi Mon, 01 Mar 2010 14:41:50 +0100 plasma-widget-smooth-tasks (0.0~wip20100213-0ubuntu1) lucid; urgency=low * New upstream release * Bump Standards-Version to 3.8.4, no changes -- Jonathan Thomas Sat, 13 Feb 2010 08:02:28 -0500 plasma-widget-smooth-tasks (0.0~wip20091206-0ubuntu1) lucid; urgency=low * Initial release. (LP: #497742) -- Jonathan Thomas Sun, 31 Jan 2010 09:44:53 -0500