debian/0000755000000000000000000000000012220354526007167 5ustar debian/watch0000644000000000000000000000007011466373615010230 0ustar version=3 http://sf.net/pure-data/bsaylor-(.*)\.tar\.gz debian/copyright0000644000000000000000000000225212033613302011113 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: bsaylor Upstream-Contact: Benjamin Saylor Source: http://sourceforge.net/projects/pure-data/files/libraries/bsaylor/ Files: * Copyright: 2002-2006, Benjamin R. Saylor License: GPL-2+ Files: svf~.c Copyright: 2002-2003, Steve Harris, Ben Saylor 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; 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 St, Fifth Floor, Boston, MA 02110-1301 USA X-Comment: On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/gbp.conf0000644000000000000000000000024511466373615010622 0ustar [DEFAULT] upstream-branch = upstream debian-branch = master upstream-tag = upstream/%(version)s debian-tag = debian/%(version)s pristine-tar = True sign-tags = True debian/patches/0000755000000000000000000000000011555713456010631 5ustar debian/patches/series0000644000000000000000000000002511555713456012043 0ustar nonlinux_fixes.patch debian/patches/nonlinux_fixes.patch0000644000000000000000000000315511555713456014726 0ustar Author: IOhannes m zmölnig Description: upstream Makefile forgot about Hurd & kFreeBSD; they should be handled the same as Linux --- pd-bsaylor.orig/Makefile +++ pd-bsaylor/Makefile @@ -43,6 +43,7 @@ # #------------------------------------------------------------------------------# + # get library version from meta file LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd) @@ -123,6 +124,34 @@ STRIP = strip --strip-unneeded -R .note -R .comment DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) endif +ifeq ($(UNAME),GNU) + # GNU/Hurd, should work like GNU/Linux for basically all externals + CPU := $(shell uname -m) + SOURCES += $(SOURCES_linux) + EXTENSION = pd_linux + OS = linux + PD_PATH = /usr + OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer + ALL_CFLAGS += -fPIC + ALL_LDFLAGS += -Wl,--export-dynamic -shared -fPIC + ALL_LIBS += -lc + STRIP = strip --strip-unneeded -R .note -R .comment + DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) +endif +ifeq ($(UNAME),GNU/kFreeBSD) + # Debian GNU/kFreeBSD, should work like GNU/Linux for basically all externals + CPU := $(shell uname -m) + SOURCES += $(SOURCES_linux) + EXTENSION = pd_linux + OS = linux + PD_PATH = /usr + OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer + ALL_CFLAGS += -fPIC + ALL_LDFLAGS += -Wl,--export-dynamic -shared -fPIC + ALL_LIBS += -lc + STRIP = strip --strip-unneeded -R .note -R .comment + DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) +endif ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME))) CPU := $(shell uname -m) SOURCES += $(SOURCES_cygwin) debian/changelog0000644000000000000000000000163712220354356011051 0ustar pd-bsaylor (0.1-3) unstable; urgency=low * Depends: puredata-core | pd, so the depends is not only on a virtual package * removed leading article from synopsis * Standards-Version: 3.9.4 * use canonical anonscm.debian.org URLs in Vcs-* tags * fix and improve description (Closes: #700166) -- Hans-Christoph Steiner Tue, 24 Sep 2013 14:23:57 -0400 pd-bsaylor (0.1-2) unstable; urgency=low [ Alessio Treglia ] * Add Vcs-* tags. [ IOhannes m zmölnig ] * Makefile-fixes for non-linux (Closes: #609774) [ Hans-Christoph Steiner ] * updated Build-Depends to use puredata-dev when available (Closes: #629703) * bumped standards version to 3.9.2 -- Hans-Christoph Steiner Fri, 10 Jun 2011 12:33:15 -0400 pd-bsaylor (0.1-1) unstable; urgency=low * Initial release (Closes: #602984) -- Hans-Christoph Steiner Wed, 10 Nov 2010 15:12:27 -0500 debian/control0000644000000000000000000000244012220354150010563 0ustar Source: pd-bsaylor Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Hans-Christoph Steiner Build-Depends: debhelper (>= 7.0.50~), libfftw3-dev, puredata-dev | puredata (<< 0.43) Standards-Version: 3.9.4 Homepage: http://puredata.info Vcs-Git: git://anonscm.debian.org/pkg-multimedia/pd-bsaylor.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/pd-bsaylor.git Package: pd-bsaylor Architecture: any Depends: ${shlibs:Depends}, puredata-core | pd, pd-libdir, ${misc:Depends} Description: library of FFT-based Pd objects by Ben Saylor bsaylor is a library of Pure Data objects by Benjamin Saylor: . pvoc~: a phase vocoder based on Pd's 09.pvoc.pd example patch. Advantages over the abstraction include (reportedly) faster execution, instantaneous response to input, and adjustable phase locking. It requires FFTW3. . susloop~: sample player with various loop methods (ping-pong, ... ) like a classic tracker interface. . svf~: a signal-controlled port of Steve Harris' state variable filter LADSPA plugin (http://plugin.org.uk). . zhzhx~: Turns the input signal into a staticky, distorted mess. Comes with tone control debian/compat0000644000000000000000000000000211466373615010400 0ustar 7 debian/rules0000755000000000000000000000077411466373615010272 0ustar #!/usr/bin/make -f LIBRARY_NAME = bsaylor PACKAGE = pd-$(LIBRARY_NAME) pkglibdir = /usr/lib/pd/extra %: dh $@ --buildsystem=makefile override_dh_auto_install: dh_auto_install -- prefix=/usr pkglibdir=$(pkglibdir) # replace license file with link to the Debian license file rm -f -- $(CURDIR)/debian/$(PACKAGE)/$(pkglibdir)/$(LIBRARY_NAME)/LICENSE.txt override_dh_shlibdeps: dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux \ -T$(CURDIR)/debian/$(PACKAGE).substvars debian/links0000644000000000000000000000035111466373615010244 0ustar usr/lib/pd/extra/bsaylor/README.txt usr/share/doc/pd-bsaylor/README usr/lib/pd/extra/bsaylor/examples usr/share/doc/pd-bsaylor/examples usr/share/common-licenses/GPL-2 usr/lib/pd/extra/bsaylor/LICENSE.txt debian/source/0000755000000000000000000000000011574544202010472 5ustar debian/source/format0000644000000000000000000000001411466373615011710 0ustar 3.0 (quilt)