debian/0000755000000000000000000000000012254122445007167 5ustar debian/rules0000755000000000000000000000043512254122445010251 0ustar #!/usr/bin/make -f # -*- makefile -*- %: dh $@ override_dh_auto_clean: override_dh_auto_build: $(MAKE) \ PREFIX=/usr override_dh_auto_install: $(MAKE) install \ DESTDIR=$(CURDIR)/debian/zam-plugins \ PREFIX=/usr chmod 644 $(CURDIR)/debian/zam-plugins/usr/lib/lv2/*/*.ttl debian/gbp.conf0000644000000000000000000000006212254122445010604 0ustar [DEFAULT] pristine-tar = True compression = bzip2 debian/README.get.source0000644000000000000000000000040312254122445012121 0ustar It is possible to get orig tarball by running uscan. $ git clone https://github.com/zamaudio/zam-plugins.git $ cd zam-plugins $ git submodule init $ git submodule update $ sudo rm -R .git .gitmodules zam*/.git zam*/.gitignore Compress source to orig tarball. debian/compat0000644000000000000000000000000212254122445010365 0ustar 9 debian/copyright0000644000000000000000000000373012254122445011125 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: zam-plugins Upstream-Contact: Damien Zammit Source: https://github.com/x42/x42-plugins Files: * Copyright: 2013 Damien Zammit License: GPL-2+ Files: zamautosat/zamautosat.dsp.cpp zamvalve-tanh/zamvalve-tanh.dsp.cpp Copyright: 2013 Damien Zammit License: GPL-3+ Files: debian/* Copyright: 2013 Jaromír Mikeš License: 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 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. Comment: You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License can be found in the file `/usr/share/common-licenses/GPL-3'. 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 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. . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. . You should have received a copy of the GNU General Public License along with this program. If not, see . debian/control0000644000000000000000000000274012254122445010575 0ustar Source: zam-plugins Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Jaromír Mikeš , Adrian Knoth Build-Depends: debhelper (>= 9), pkg-config, lv2-dev, ladspa-sdk, lv2-c++-tools, faust Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-multimedia/zam-plugins.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/zam-plugins.git Homepage: http://www.zamaudio.com/?p=870 Package: zam-plugins Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: Collection of LV2 and LADSPA plugins Plugins for high quality audio processing. Package contain these plugins: * zamautosat Auto saturation plugin. A gentle automatic saturator with no controls. * zamcomp LV2 compressor plugin. * zamcompexp LV2 Compressor/Expander plugin This is a clone of ZamCompX2 with an extra feature: an expander. The knee setting has been removed, however. It only functions using hard knee. * zamcompx2 LV2 compressor plugin: stereo version of ZamComp. * zamdither LV2 dither plugin. * zameq2 LV2 Equalizer plugin. * zamexcite LV2 vocal exciter plugin: stereo. * zamtube LV2 tube amp/cabinet simulator. * zamulticomp LV2 mono multiband compressor plugin. * zamvalve Valve distortion plugin. * zamvalve-tahn CPU efficient version of zamvalve plugin. debian/source/0000755000000000000000000000000012254122445010467 5ustar debian/source/format0000644000000000000000000000001412254122445011675 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000024012254122445011035 0ustar zam-plugins (2.1-1) unstable; urgency=low * Initial release (Closes: #730305) -- Jaromír Mikeš Mon, 02 Dec 2013 17:38:15 +0100 debian/patches/0000755000000000000000000000000012254122445010616 5ustar debian/patches/01-fix_hardening.patch0000644000000000000000000000262712254122445014671 0ustar Description: Pass LDFLAGS properly. Author: Jaromír Mikeš Forwarded: no Index: zam-plugins/zamautosat/Makefile =================================================================== --- zam-plugins.orig/zamautosat/Makefile 2013-11-24 14:17:17.712608000 +0100 +++ zam-plugins/zamautosat/Makefile 2013-11-27 19:07:56.205592998 +0100 @@ -1,9 +1,10 @@ PREFIX ?= /usr/local +LDFLAGS ?= -Wl,--as-needed -lm all: zamautosat.so zamautosat.so: - g++ -O3 -ffast-math -fPIC -shared -Dmydsp=zamautosat -I/usr/lib zamautosat.dsp.cpp -o zamautosat.so + g++ -O3 -ffast-math -fPIC -shared -Dmydsp=zamautosat -I/usr/lib $(LDFLAGS) zamautosat.dsp.cpp -o zamautosat.so install: install -d $(DESTDIR)$(PREFIX)/lib/ladspa Index: zam-plugins/zamvalve-tanh/Makefile =================================================================== --- zam-plugins.orig/zamvalve-tanh/Makefile 2013-11-24 14:17:37.864723000 +0100 +++ zam-plugins/zamvalve-tanh/Makefile 2013-11-27 19:08:30.373800520 +0100 @@ -1,9 +1,10 @@ PREFIX ?= /usr/local +LDFLAGS ?= -Wl,--as-needed -lm all: zamvalve-tanh.so zamvalve-tanh.so: zamvalve-tanh.dsp.cpp - g++ -O3 -ffast-math -fPIC -shared -Dmydsp=zamvalve_tanh -I/usr/lib zamvalve-tanh.dsp.cpp -o zamvalve-tanh.so + g++ -O3 -ffast-math -fPIC -shared -Dmydsp=zamvalve_tanh -I/usr/lib $(LDFLAGS) zamvalve-tanh.dsp.cpp -o zamvalve-tanh.so install: install -d $(DESTDIR)$(PREFIX)/lib/ladspa debian/patches/series0000644000000000000000000000002712254122445012032 0ustar 01-fix_hardening.patch debian/watch0000644000000000000000000000022012254122445010212 0ustar version=3 opts=zam-plugins=s/.+\/v?(\d\S*)\.tar\.gz/-$1.tar.gz/ \ https://github.com/zamaudio/zam-plugins/tags .*/v?(\d\S*)\.tar\.gz