[SCM] libsbsms/master: Add initial packaging.

bdrung at users.alioth.debian.org bdrung at users.alioth.debian.org
Tue Feb 15 12:51:37 UTC 2011


The following commit has been merged in the master branch:
commit eabefee64de16589866b084e9a1f35fcfc293509
Author: Benjamin Drung <bdrung at ubuntu.com>
Date:   Tue Feb 15 13:51:29 2011 +0100

    Add initial packaging.

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f09c827
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libsbsms (1.7.0-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #613517).
+
+ -- Benjamin Drung <bdrung at debian.org>  Tue, 15 Feb 2011 12:57:44 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..df65ad5
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,57 @@
+Source: libsbsms
+Section: libs
+Priority: optional
+Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers at lists.alioth.debian.org>
+Uploaders: Benjamin Drung <bdrung at debian.org>
+Build-Depends: debhelper (>= 8), dh-autoreconf
+Standards-Version: 3.9.1
+Homepage: http://sbsms.sourceforge.net/
+Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/libsbsms.git;a=summary
+Vcs-Git: git://git.debian.org/git/pkg-multimedia/libsbsms.git
+
+Package: libsbsms1
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: Subband Sinusoidal Modeling Synthesis
+ libsbsms is a C++ library for high quality time stretching and pitch scaling of
+ audio. It uses octave subband sinusoidal modeling.
+ .
+ The audio is fed into a FIFO, which takes the STFT of the input. Each frame is
+ high-pass filtered in the Fourier domain, and then written to a frame FIFO
+ which does quadratic interpolating peak detection and track continuation. The
+ tracks are resynthesized with a quadratic phase preserving oscillator bank at
+ an arbitrary time scale.
+ .
+ The subbands are fed from the low-pass filtered frames, which are decimated by
+ two and reconstructed in a half rate time domain. The subbands perform the same
+ process as the parent band, only the data is at half the audio frequency, and
+ at half the rate. There are typically 6 bands. The point of subbands is to
+ allow high time resolution for high frequencies and at the same time high
+ frequency resolution for low frequencies.
+ .
+ Pitch scaling is performed in a post-processing resampling step.
+
+Package: libsbsms-dev
+Section: libdevel
+Architecture: any
+Depends: libsbsms1 (= ${binary:Version}), ${misc:Depends}
+Description: Subband Sinusoidal Modeling Synthesis (development files)
+ libsbsms is a C++ library for high quality time stretching and pitch scaling of
+ audio. It uses octave subband sinusoidal modeling.
+ .
+ The audio is fed into a FIFO, which takes the STFT of the input. Each frame is
+ high-pass filtered in the Fourier domain, and then written to a frame FIFO
+ which does quadratic interpolating peak detection and track continuation. The
+ tracks are resynthesized with a quadratic phase preserving oscillator bank at
+ an arbitrary time scale.
+ .
+ The subbands are fed from the low-pass filtered frames, which are decimated by
+ two and reconstructed in a half rate time domain. The subbands perform the same
+ process as the parent band, only the data is at half the audio frequency, and
+ at half the rate. There are typically 6 bands. The point of subbands is to
+ allow high time resolution for high frequencies and at the same time high
+ frequency resolution for low frequencies.
+ .
+ Pitch scaling is performed in a post-processing resampling step.
+ .
+ This package contains the development files.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a2c84d3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,58 @@
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=166
+Upstream-Name: libsbsms
+Upstream-Contact: Clayton Otey <otey at users.sourceforge.net>
+Source: http://sbsms.sourceforge.net/
+
+Files: *
+Copyright: 2003-2008, Clayton Otey <otey at users.sourceforge.net>
+License: GPL-2
+
+Files: src/mp3tech.*
+Copyright: 2000-2006, Cedric Tefft <cedric at phreaker.net>
+           Ed Sweetman <safemode at voicenet.com>
+           Johannes Overmann <overmann at iname.com>
+           Ricardo Cerqueira <rmc at rccn.net>
+License: GPL-2+
+
+Files: src/real.h
+Copyright: 2001-2003, Erik de Castro Lopo <erikd at mega-nerd.com>
+License: GPL-2+
+
+Files: debian/*
+Copyright: 2011, Benjamin Drung <bdrung at debian.org>
+License: GPL-2+
+
+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; version 2.
+ .
+ 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 package; 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
+ can be found in the `/usr/share/common-licenses/GPL-2' file.
+
+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 package; 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
+ can be found in the `/usr/share/common-licenses/GPL-2' file.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..b721d86
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,5 @@
+[DEFAULT]
+pristine-tar = True
+
+[git-dch]
+meta = True
diff --git a/debian/libsbsms-dev.install b/debian/libsbsms-dev.install
new file mode 100644
index 0000000..709ebaf
--- /dev/null
+++ b/debian/libsbsms-dev.install
@@ -0,0 +1,4 @@
+usr/include
+usr/lib/libsbsms.a
+usr/lib/libsbsms.so
+usr/lib/pkgconfig
diff --git a/debian/libsbsms1.install b/debian/libsbsms1.install
new file mode 100644
index 0000000..72b3259
--- /dev/null
+++ b/debian/libsbsms1.install
@@ -0,0 +1 @@
+usr/lib/libsbsms.so.1*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4cbcce1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with autoreconf
+
+override_dh_auto_configure:
+	dh_auto_configure -- --enable-shared
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 0000000..4aceb10
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1 @@
+unapply-patches
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..af8ead6
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/sbsms/libsbsms-(.+)\.tar\.gz

-- 
libsbsms packaging



More information about the pkg-multimedia-commits mailing list