From b07211aa7e9428296de8362993be868bda94483a Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 10 Oct 2012 00:13:47 +0000 Subject: first stab at debianizing svn path=/trunk/externals/postlude/; revision=16372 --- pluginhost~/debian/changelog | 5 +++++ pluginhost~/debian/compat | 1 + pluginhost~/debian/control | 22 ++++++++++++++++++++++ pluginhost~/debian/copyright | 28 ++++++++++++++++++++++++++++ pluginhost~/debian/gbp.conf | 7 +++++++ pluginhost~/debian/links | 3 +++ pluginhost~/debian/rules | 17 +++++++++++++++++ pluginhost~/debian/source/format | 1 + pluginhost~/debian/source/local-options | 2 ++ pluginhost~/debian/watch | 2 ++ 10 files changed, 88 insertions(+) create mode 100644 pluginhost~/debian/changelog create mode 100644 pluginhost~/debian/compat create mode 100644 pluginhost~/debian/control create mode 100644 pluginhost~/debian/copyright create mode 100644 pluginhost~/debian/gbp.conf create mode 100644 pluginhost~/debian/links create mode 100755 pluginhost~/debian/rules create mode 100644 pluginhost~/debian/source/format create mode 100644 pluginhost~/debian/source/local-options create mode 100644 pluginhost~/debian/watch diff --git a/pluginhost~/debian/changelog b/pluginhost~/debian/changelog new file mode 100644 index 0000000..c17f2a1 --- /dev/null +++ b/pluginhost~/debian/changelog @@ -0,0 +1,5 @@ +pd-pluginhost (1.0-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- Hans-Christoph Steiner Tue, 09 Oct 2012 19:55:18 -0400 diff --git a/pluginhost~/debian/compat b/pluginhost~/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/pluginhost~/debian/compat @@ -0,0 +1 @@ +7 diff --git a/pluginhost~/debian/control b/pluginhost~/debian/control new file mode 100644 index 0000000..9ccf0f5 --- /dev/null +++ b/pluginhost~/debian/control @@ -0,0 +1,22 @@ +Source: pd-pluginhost +Section: sound +Priority: optional +Maintainer: Debian Multimedia Maintainers +Uploaders: Hans-Christoph Steiner +Build-Depends: debhelper (>= 7.0.50~), + puredata-dev | puredata (<< 0.43), + dssi-dev +Standards-Version: 3.9.3 +Homepage: http://puredata.info +Vcs-Git: git://anonscm.debian.org/pkg-multimedia/pd-pluginhost.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/pd-pluginhost.git;a=summary + +Package: pd-pluginhost +Architecture: any +Depends: ${shlibs:Depends}, + puredata-core | pd, + ${misc:Depends} +Recommends: +Description: Pd object for hosting LADSPA and DSSI plugins + pluginhost~ is a LADSPA and DSSI plugin host for Pure Data, supporting + multiple plugin instances per object. diff --git a/pluginhost~/debian/copyright b/pluginhost~/debian/copyright new file mode 100644 index 0000000..c291031 --- /dev/null +++ b/pluginhost~/debian/copyright @@ -0,0 +1,28 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pluginhost~ +Upstream-Contact: Jamie Bullock +Source: http://puredata.info/downloads/pluginhost + +Files: * +Copyright: 2006-2012, Jamie Bullock + 2004, Chris Cannam, Steve Harris and Sean Bolton + 2000, Jarno Seppänen, remIXed 2005 +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'. Also, some + of the code included in this package was originally under a BSD-style + license, but its thoroughly mixed up so not separable, therefore that code is + not listed separately. diff --git a/pluginhost~/debian/gbp.conf b/pluginhost~/debian/gbp.conf new file mode 100644 index 0000000..ae1dc36 --- /dev/null +++ b/pluginhost~/debian/gbp.conf @@ -0,0 +1,7 @@ +[DEFAULT] +upstream-branch = upstream +debian-branch = master +upstream-tag = upstream/%(version)s +debian-tag = debian/%(version)s +pristine-tar = True +sign-tags = True diff --git a/pluginhost~/debian/links b/pluginhost~/debian/links new file mode 100644 index 0000000..d2f5811 --- /dev/null +++ b/pluginhost~/debian/links @@ -0,0 +1,3 @@ +usr/lib/pd/extra/pluginhost/README.txt usr/share/doc/pd-pluginhost/README +usr/lib/pd/extra/pluginhost/examples usr/share/doc/pd-pluginhost/examples +usr/share/common-licenses/GPL-2 usr/lib/pd/extra/pluginhost/LICENSE.txt diff --git a/pluginhost~/debian/rules b/pluginhost~/debian/rules new file mode 100755 index 0000000..ececfad --- /dev/null +++ b/pluginhost~/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +LIBRARY_NAME = pluginhost +PACKAGE = pd-pluginhost +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 diff --git a/pluginhost~/debian/source/format b/pluginhost~/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/pluginhost~/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/pluginhost~/debian/source/local-options b/pluginhost~/debian/source/local-options new file mode 100644 index 0000000..9cdfca9 --- /dev/null +++ b/pluginhost~/debian/source/local-options @@ -0,0 +1,2 @@ +unapply-patches +abort-on-upstream-changes diff --git a/pluginhost~/debian/watch b/pluginhost~/debian/watch new file mode 100644 index 0000000..27588fe --- /dev/null +++ b/pluginhost~/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/pure-data/pluginhost-(.*)\.tar\.gz -- cgit v1.2.1