--- spu-tools-2.3.0.136.orig/debian/changelog +++ spu-tools-2.3.0.136/debian/changelog @@ -0,0 +1,41 @@ +spu-tools (2.3.0.136-1) unstable; urgency=low + + * New upstream release. + * debian/control: + - Update my email address. + - Remove XS-DM-Upload-Allowed flag. + - Bump Standards-Version to 3.8.4. + * Switch patch system to quilt. + + -- Arthur Loiret Mon, 22 Mar 2010 15:29:21 +0000 + +spu-tools (2.2.80-95-2) unstable; urgency=low + + * Add ppc64 to Architecture. + + -- Arthur Loiret Tue, 01 Apr 2008 22:43:47 +0000 + +spu-tools (2.2.80-95-1) unstable; urgency=low + + [Arthur Loiret] + * Upload to unstable. + * New upstream release. + * Packaging update, based on Matthias Klose's work. + * debian/control: + + Bump compat to 6 and Standards-Version to 3.7.3. + + Provides: spu-top, spu-ps. + * debian/patches/01_fix_manpages.diff: Update manpages. + * debian/copyright: Update. + + [Pierre Habouzit] + * debian/control: + + XS-DM-Upload-Allowed: yes. + + -- Arthur Loiret Tue, 26 Feb 2008 15:56:37 +0000 + +spu-tools (1.0-0ubuntu1) gutsy; urgency=low + + * Initial release. + + -- Matthias Klose Tue, 25 Sep 2007 12:43:11 +0000 + --- spu-tools-2.3.0.136.orig/debian/compat +++ spu-tools-2.3.0.136/debian/compat @@ -0,0 +1 @@ +6 --- spu-tools-2.3.0.136.orig/debian/control +++ spu-tools-2.3.0.136/debian/control @@ -0,0 +1,20 @@ +Source: spu-tools +Section: misc +Priority: extra +Maintainer: Arthur Loiret +Uploaders: Aurélien GÉRÔME +Build-Depends: debhelper (>= 6), quilt (>= 0.40), libncurses5-dev, help2man +Standards-Version: 3.8.4 + +Package: spu-tools +Architecture: powerpc ppc64 +Depends: ${shlibs:Depends}, ${misc:Depends} +Provides: spu-top, spu-ps +Description: user space tools for the Cell broadband engine + The spu-tools package contains user space tools for Cell/B.E. + Currently, it contain two tools: + . + - spu-top: a top-like tool to watch the SPU's on a Cell BE + System. It shows information about SPUs and running SPU contexts. + - spu-ps: a ps-like tool, which dumps a report on the currently + running SPU contexts. --- spu-tools-2.3.0.136.orig/debian/copyright +++ spu-tools-2.3.0.136/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Matthias Klose +on Tue, 25 Sep 2007 12:43:11 +0000. + +It was downloaded from +http://sourceforge.net/projects/libspe + +spu-tools is now maintained in Debian by: +Arthur Loiret +Aurélien GÉRÔME + +Upstream Author: +Andre Detsch +Markus Deuling + +Copyright: Copyright (C) 2006, 2007 IBM Corp. + +License: + + This library 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 option) any later version. + + This library 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 library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +The Debian packaging is (C) 2007, Matthias Klose and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- spu-tools-2.3.0.136.orig/debian/rules +++ spu-tools-2.3.0.136/debian/rules @@ -0,0 +1,44 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +D := $(CURDIR) + +build: build-stamp +build-stamp: patch + dh_testdir + cd src && $(MAKE) + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + cd src && $(MAKE) clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + cd src && $(MAKE) DESTDIR=$(D)/debian/spu-tools install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs src/ChangeLog + dh_installdocs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- spu-tools-2.3.0.136.orig/debian/patches/series +++ spu-tools-2.3.0.136/debian/patches/series @@ -0,0 +1 @@ +01_fix_manpages.diff -p1 --- spu-tools-2.3.0.136.orig/debian/patches/01_fix_manpages.diff +++ spu-tools-2.3.0.136/debian/patches/01_fix_manpages.diff @@ -0,0 +1,15 @@ +--- a/src/Makefile ++++ b/src/Makefile +@@ -26,8 +26,10 @@ + @rm -f .rpmmacros + + man: spu-ps spu-top +- help2man --no-info ./spu-top -o spu-top.1 +- help2man --no-info ./spu-ps -o spu-ps.1 ++ help2man -n "a top-like tool to watch the SPU's on a Cell BE System." \ ++ --no-info ./spu-top -o spu-top.1 ++ help2man -n "a ps-like tool, which dumps a report on the currently running SPU contexts." \ ++ --no-info ./spu-ps -o spu-ps.1 + + install: + echo Installing at $(PREFIX)