debian/0000755000000000000000000000000012207147412007166 5ustar debian/compat0000644000000000000000000000000212207141732010363 0ustar 7 debian/patches/0000755000000000000000000000000012207145766010627 5ustar debian/patches/1001-dont_run_ldconfig.patch0000644000000000000000000000071112207145626015716 0ustar Description: Don't run ldconfig after calling the install target and save a bit of time. Author: Alessio Treglia Forwarded: not-needed --- wscript | 1 - 1 file changed, 1 deletion(-) --- lilv.orig/wscript +++ lilv/wscript @@ -348,7 +348,6 @@ def build(bld): bld.install_files('${PYTHONDIR}', 'bindings/lilv.py') - bld.add_post_fun(autowaf.run_ldconfig) if bld.env.DOCS: bld.add_post_fun(fix_docs) debian/patches/1002-fix_gnu_kfreebsd_build.patch0000644000000000000000000000207312207145623016705 0ustar From: Steven Chamberlain Subject: Fix build on GNU/kFreeBSD * Still need to link with -ldl, unlike regular BSD * Remove extraneous -llilv, which swig2.0 on BSD-like systems would fopen() even though it is a directory --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- lilv.orig/wscript +++ lilv/wscript @@ -218,7 +218,7 @@ def build(bld): if bld.env.MSVC_COMPILER: libflags = [] defines = ['snprintf=_snprintf'] - elif sys.platform.find('bsd') > 0: + elif sys.platform.find('bsd') > 0 and sys.platform.find('gnu') < 0: lib = [] # Shared Library @@ -342,7 +342,7 @@ def build(bld): source = 'bindings/lilv.i', target = 'bindings/_lilv', includes = ['..'], - swig_flags = '-c++ -python -Wall -I.. -llilv -features autodoc=1', + swig_flags = '-c++ -python -Wall -I.. -features autodoc=1', use = 'liblilv') autowaf.use_lib(bld, obj, 'LILV') debian/patches/series0000644000000000000000000000012312207145615012031 0ustar 1001-dont_run_ldconfig.patch 1002-fix_gnu_kfreebsd_build.patch 9001-bindings.patch debian/patches/9001-bindings.patch0000644000000000000000000000300512207146654014027 0ustar Description: Fix bindings build. Origin: http://dev.drobilla.net/changeset/5092/trunk/lilv/lilv/lilvmm.hpp?old=4975&old_path=trunk%2Flilv%2Flilv%2Flilvmm.hpp Applied-Upstream: yes --- lilv/lilvmm.hpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) --- lilv.orig/lilv/lilvmm.hpp +++ lilv/lilv/lilvmm.hpp @@ -49,6 +49,11 @@ uri_to_path(const char* uri) { return lilv_ ## prefix ## _ ## name(me, a1, a2); \ } +#define LILV_WRAP3(RT, prefix, name, T1, a1, T2, a2, T3, a3) \ + inline RT name(T1 a1, T2 a2, T3 a3) { \ + return lilv_ ## prefix ## _ ## name(me, a1, a2, a3); \ + } + #define LILV_WRAP2_VOID(prefix, name, T1, a1, T2, a2) \ inline void name(T1 a1, T2 a2) { lilv_ ## prefix ## _ ## name(me, a1, a2); } @@ -139,6 +144,27 @@ struct Nodes { LILV_WRAP0(Node, nodes, get_first); }; +struct UI { + inline UI(const LilvUI* c_obj) : me(c_obj) {} + LILV_WRAP_CONVERSION(const LilvUI); + + LILV_WRAP0(const LilvNode*, ui, get_uri); + LILV_WRAP0(const LilvNode*, ui, get_bundle_uri); + LILV_WRAP0(const LilvNode*, ui, get_binary_uri); + LILV_WRAP0(const LilvNodes*, ui, get_classes); + /*LILV_WRAP3(bool, ui, is_supported, + LilvUISupportedFunc, supported_func, + const LilvNode*, container_type, + const LilvNode**, ui_type);*/ + LILV_WRAP1(bool, ui, is_a, const LilvNode*, class_uri); + + const LilvUI* me; +}; + +struct UIs { + LILV_WRAP_COLL(UIs, UI, uis); +}; + struct Port { inline Port(const LilvPlugin* p, const LilvPort* c_obj) : parent(p), me(c_obj) debian/rules0000755000000000000000000000263312207142674010257 0ustar #!/usr/bin/make -f upstream_version ?= $(shell dpkg-parsechangelog | sed -rne 's/^Version: ([0-9.]+)(\+dfsg\d+)?.*$$/\1/p') dfsg_version = $(upstream_version)~dfsg0 pkg = $(shell dpkg-parsechangelog | sed -ne 's/^Source: //p') LDFLAGS+=-Wl,--as-needed WAF = ./waf PYVERS=$(shell pyversions -s) %: dh $@ --with python2 override_dh_auto_configure: override_dh_auto_build: override_dh_auto_install: for pyver in $(PYVERS); do \ PYTHON="$$pyver" $(WAF) configure \ --prefix=/usr \ --mandir=/usr/share/man \ --strict \ --debug \ --bindings \ --dyn-manifest && \ PYTHON="$$pyver" $(WAF) && \ PYTHON="$$pyver" $(WAF) install -f --destdir=$(CURDIR)/debian/tmp ; \ done override_dh_auto_clean: $(WAF) clean || true find -name "*.pyc" -delete rm -rf build .waf* dh_auto_clean # get-orig-source to drop waf get-orig-source: uscan --noconf --force-download --rename --download-current-version --destdir=. tar -xf $(pkg)_$(upstream_version).orig.tar.bz2 mv $(pkg)-$(upstream_version) $(pkg)-$(dfsg_version) cd $(pkg)-$(dfsg_version) ; python waf --help > /dev/null mv $(pkg)-$(dfsg_version)/.waf-*/* $(pkg)-$(dfsg_version) sed -i '/^#==>$$/,$$d' $(pkg)-$(dfsg_version)/waf rmdir $(pkg)-$(dfsg_version)/.waf-* find $(pkg)-$(dfsg_version)/ -name '*.pyc' -delete tar cf $(pkg)_$(dfsg_version).orig.tar $(pkg)-$(dfsg_version) bzip2 -9f $(pkg)_$(dfsg_version).orig.tar rm -rf $(pkg)-$(dfsg_version) debian/python-lilv.install0000644000000000000000000000024112207141732013037 0ustar ##usr/lib/python2.6/dist-packages/*.py ##usr/lib/python2.6/dist-packages/_lilv.so.*.*.* usr/lib/python2.6/dist-packages/_lilv.so usr/lib/python*/dist-packages/* debian/control0000644000000000000000000000530212207147132010570 0ustar Source: lilv Section: libs Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Alessio Treglia , Jaromír Mikeš Build-Depends: debhelper (>= 9), libjack-dev, libserd-dev (>= 0.18.0~), libsord-dev (>= 0.12.0~), libsratom-dev (>= 0.4.0~), lv2-dev, pkg-config, python-all-dev (>= 2.6.6-3), swig X-Python-Version: >= 2.6 Standards-Version: 3.9.4 Homepage: http://drobilla.net/software/lilv/ Vcs-Git: git://anonscm.debian.org/pkg-multimedia/lilv.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/lilv.git Package: liblilv-0-0 Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: library for simple use of LV2 plugins Lilv (formerly SLV2) is a library for LV2 hosts intended to make using LV2 Plugins as simple as possible (without sacrificing capabilities). . Lilv is the successor to SLV2, rewritten to be significantly faster and have minimal dependencies. . This package provides the shared library. Package: python-lilv Section: python Architecture: any Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends} Provides: ${python:Provides} Description: library for simple use of LV2 plugins (Python bindings) Lilv (formerly SLV2) is a library for LV2 hosts intended to make using LV2 Plugins as simple as possible (without sacrificing capabilities). . Lilv is the successor to SLV2, rewritten to be significantly faster and have minimal dependencies. . This package provides the Python bindings. Package: liblilv-dev Section: libdevel Architecture: any Depends: liblilv-0-0 (= ${binary:Version}), libserd-dev (>= 0.18.0~), libsord-dev (>= 0.12.0~), libsratom-dev (>= 0.4.0~), lv2-dev, ${misc:Depends} Description: library for simple use of LV2 plugins (development files) Lilv (formerly SLV2) is a library for LV2 hosts intended to make using LV2 Plugins as simple as possible (without sacrificing capabilities). . Lilv is the successor to SLV2, rewritten to be significantly faster and have minimal dependencies. . This package provides the development files. Package: lilv-utils Section: sound Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Provides: lv2-host Description: library for simple use of LV2 plugins (runtime files) Lilv (formerly SLV2) is a library for LV2 hosts intended to make using LV2 Plugins as simple as possible (without sacrificing capabilities). . Lilv is the successor to SLV2, rewritten to be significantly faster and have minimal dependencies. . This package provides the following utilities: * lv2info - Extract information about an LV2 plugin. * lv2ls - List all installed LV2 plugins. debian/changelog0000644000000000000000000001022012207147250011033 0ustar lilv (0.16.0~dfsg0-1) unstable; urgency=low [ Alessio Treglia ] * New upstream release. * Needs sord >= 0.12.0. * Needs sratom >= 0.4.0. * Refresh {,Build}-Depends fields according to the most recent API changes. * Refresh patches. * Add patch to prevent build failure. * Update symbols file. * Bump Standards. * Refresh copyright. [ Jaromír Mikeš ] * Added myself as uploader -- Alessio Treglia Tue, 27 Aug 2013 17:07:00 +0100 lilv (0.14.4~dfsg0-1) unstable; urgency=low * New upstream release. * Add mechanism to repack the upstream tarball. * Refresh patches. * Refresh debian/copyright. -- Alessio Treglia Tue, 28 Aug 2012 15:14:03 +0200 lilv (0.14.2~dfsg0-4) unstable; urgency=low * Attempt to fix FTBFS on non-Linux architectures. Thanks to Steven Chamberlain for the patch. * Fix Vcs tags. -- Alessio Treglia Thu, 14 Jun 2012 23:25:40 +0200 lilv (0.14.2~dfsg0-3) unstable; urgency=low * Add libs{{e,o}rd,ratom}-dev into liblilv-dev's Depends field. (Closes: #674505) -- Alessio Treglia Fri, 25 May 2012 09:38:05 +0200 lilv (0.14.2~dfsg0-2) unstable; urgency=low * liblilv-dev depends on lv2-dev instead of lv2core. * Save some space by removing liblilv-doc, the same documentation is available online at: http://drobilla.net/docs/lilv/ -- Alessio Treglia Mon, 21 May 2012 11:31:46 +0200 lilv (0.14.2~dfsg0-1) unstable; urgency=low * New upstream release (Closes: #670647). * Replace old LV2 build-deps with lv2-dev. * Add build-dependency on libsratom-dev. * Add build-dep on libserd-dev, tighten up libsord-dev build-dependency. * Remove 0001-new_dynmanifest.patch, no longer needed. * Refresh all patches. * Switch -DEV to Arch: any. * Update symbols. * Update debian/copyright. * Bump debhelper requirement to 9. * debian/watch: Mangle dfsg suffix. * Bump Standards-Version. -- Alessio Treglia Sun, 20 May 2012 23:48:54 +0200 lilv (0.5.0+dfsg0-1) unstable; urgency=low * Repack upstream tarball to get rid of the waf binary (Closes: #654485). * Adjust the clean target to properly clean the sources tree. -- Alessio Treglia Tue, 10 Jan 2012 09:52:44 +0100 lilv (0.5.0-2) unstable; urgency=medium * Fix FTBFS with newest dynmanifest extension. (Closes: #654271) * Bump dependency on lv2-extensions-good. -- Alessio Treglia Tue, 03 Jan 2012 02:14:57 +0100 lilv (0.5.0-1) unstable; urgency=low * New upstream release: - Remove glib dependency - Add lv2core as a pkg-config dependency (for lv2.h header include) - Obey prefix when installing bash completion script - Support integer minimum, maximum, and default port values in lilv_plugin_get_port_ranges_float - Add ability to build static library * Requires sord >= 0.5.0. * Refresh patches. * Remove 0002-dyn_manifest_fix.patch, applied upstream. * Remove 2001-memleak.patch, applied upstream. * Drop libglib2.0-dev build-dependency. * Update symbols file. * Bash completion stuff are now installed in /usr/etc, so we need to move them from there to /etc. -- Alessio Treglia Tue, 04 Oct 2011 17:51:37 +0200 lilv (0.4.4-2) unstable; urgency=low * Update description as lilv-utils does no longer provide lv2jack. * Add patch taken from upstream SVN to fix a memory leak. * Support all Python versions. -- Alessio Treglia Fri, 24 Jun 2011 10:27:00 +0200 lilv (0.4.4-1) unstable; urgency=low * New upstream release. * Delete debian/patches/0001-fix_python_bindings_detection.patch, applied upstream. * Refresh remaining patches. -- Alessio Treglia Sun, 12 Jun 2011 12:56:46 +0200 lilv (0.4.2-2) unstable; urgency=low * Improve description. * Fix a tiny bug preventing Lilv from properly working with dyn-manifest. -- Alessio Treglia Sun, 29 May 2011 21:36:23 +0200 lilv (0.4.2-1) unstable; urgency=low * Initial release (Closes: #625791). -- Alessio Treglia Fri, 27 May 2011 12:40:02 +0200 debian/liblilv-0-0.symbols0000644000000000000000000001167612207147065012546 0ustar liblilv-0.so.0 liblilv-0-0 #MINVER# lilv_instance_free@Base 0.4.2 lilv_new_bool@Base 0.4.2 lilv_new_float@Base 0.4.2 lilv_new_int@Base 0.4.2 lilv_new_string@Base 0.4.2 lilv_new_uri@Base 0.4.2 lilv_node_as_blank@Base 0.4.2 lilv_node_as_bool@Base 0.4.2 lilv_node_as_float@Base 0.4.2 lilv_node_as_int@Base 0.4.2 lilv_node_as_string@Base 0.4.2 lilv_node_as_uri@Base 0.4.2 lilv_node_duplicate@Base 0.4.2 lilv_node_equals@Base 0.4.2 lilv_node_free@Base 0.4.2 lilv_node_get_turtle_token@Base 0.4.2 lilv_node_is_blank@Base 0.4.2 lilv_node_is_bool@Base 0.4.2 lilv_node_is_float@Base 0.4.2 lilv_node_is_int@Base 0.4.2 lilv_node_is_literal@Base 0.4.2 lilv_node_is_string@Base 0.4.2 lilv_node_is_uri@Base 0.4.2 lilv_nodes_begin@Base 0.4.2 lilv_nodes_contains@Base 0.4.2 lilv_nodes_free@Base 0.4.2 lilv_nodes_get@Base 0.4.2 lilv_nodes_get_first@Base 0.4.2 lilv_nodes_is_end@Base 0.4.2 lilv_nodes_merge@Base 0.16.0~dfsg0 lilv_nodes_next@Base 0.4.2 lilv_nodes_size@Base 0.4.2 lilv_plugin_class_get_children@Base 0.4.2 lilv_plugin_class_get_label@Base 0.4.2 lilv_plugin_class_get_parent_uri@Base 0.4.2 lilv_plugin_class_get_uri@Base 0.4.2 lilv_plugin_classes_begin@Base 0.4.2 lilv_plugin_classes_free@Base 0.4.2 lilv_plugin_classes_get@Base 0.4.2 lilv_plugin_classes_get_by_uri@Base 0.4.2 lilv_plugin_classes_is_end@Base 0.4.2 lilv_plugin_classes_next@Base 0.4.2 lilv_plugin_classes_size@Base 0.4.2 lilv_plugin_get_author_email@Base 0.4.2 lilv_plugin_get_author_homepage@Base 0.4.2 lilv_plugin_get_author_name@Base 0.4.2 lilv_plugin_get_bundle_uri@Base 0.4.2 lilv_plugin_get_class@Base 0.4.2 lilv_plugin_get_data_uris@Base 0.4.2 lilv_plugin_get_extension_data@Base 0.14.2~dfsg0 lilv_plugin_get_latency_port_index@Base 0.4.2 lilv_plugin_get_library_uri@Base 0.4.2 lilv_plugin_get_name@Base 0.4.2 lilv_plugin_get_num_ports@Base 0.4.2 lilv_plugin_get_num_ports_of_class@Base 0.4.2 lilv_plugin_get_num_ports_of_class_va@Base 0.16.0~dfsg0 lilv_plugin_get_optional_features@Base 0.4.2 lilv_plugin_get_port_by_designation@Base 0.14.2~dfsg0 lilv_plugin_get_port_by_index@Base 0.4.2 lilv_plugin_get_port_by_symbol@Base 0.4.2 lilv_plugin_get_port_ranges_float@Base 0.4.2 lilv_plugin_get_project@Base 0.14.2~dfsg0 lilv_plugin_get_related@Base 0.14.2~dfsg0 lilv_plugin_get_required_features@Base 0.4.2 lilv_plugin_get_supported_features@Base 0.4.2 lilv_plugin_get_uis@Base 0.4.2 lilv_plugin_get_uri@Base 0.4.2 lilv_plugin_get_value@Base 0.4.2 lilv_plugin_has_extension_data@Base 0.14.2~dfsg0 lilv_plugin_has_feature@Base 0.4.2 lilv_plugin_has_latency@Base 0.4.2 lilv_plugin_instantiate@Base 0.4.2 lilv_plugin_is_replaced@Base 0.4.2 lilv_plugin_verify@Base 0.4.2 lilv_plugin_write_description@Base 0.5.0 lilv_plugin_write_manifest_entry@Base 0.5.0 lilv_plugins_begin@Base 0.4.2 lilv_plugins_get@Base 0.4.2 lilv_plugins_get_by_uri@Base 0.4.2 lilv_plugins_is_end@Base 0.4.2 lilv_plugins_next@Base 0.4.2 lilv_plugins_size@Base 0.4.2 lilv_port_get@Base 0.16.0~dfsg0 lilv_port_get_classes@Base 0.4.2 lilv_port_get_index@Base 0.14.2~dfsg0 lilv_port_get_name@Base 0.4.2 lilv_port_get_properties@Base 0.4.2 lilv_port_get_range@Base 0.4.2 lilv_port_get_scale_points@Base 0.4.2 lilv_port_get_symbol@Base 0.4.2 lilv_port_get_value@Base 0.4.2 lilv_port_has_property@Base 0.4.2 lilv_port_is_a@Base 0.4.2 lilv_port_supports_event@Base 0.4.2 lilv_scale_point_get_label@Base 0.4.2 lilv_scale_point_get_value@Base 0.4.2 lilv_scale_points_begin@Base 0.4.2 lilv_scale_points_free@Base 0.4.2 lilv_scale_points_get@Base 0.4.2 lilv_scale_points_is_end@Base 0.4.2 lilv_scale_points_next@Base 0.4.2 lilv_scale_points_size@Base 0.4.2 lilv_state_equals@Base 0.14.2~dfsg0 lilv_state_free@Base 0.14.2~dfsg0 lilv_state_get_label@Base 0.14.2~dfsg0 lilv_state_get_num_properties@Base 0.14.2~dfsg0 lilv_state_get_plugin_uri@Base 0.14.2~dfsg0 lilv_state_new_from_file@Base 0.14.2~dfsg0 lilv_state_new_from_instance@Base 0.14.2~dfsg0 lilv_state_new_from_string@Base 0.14.2~dfsg0 lilv_state_new_from_world@Base 0.14.2~dfsg0 lilv_state_restore@Base 0.14.2~dfsg0 lilv_state_save@Base 0.14.2~dfsg0 lilv_state_set_label@Base 0.14.2~dfsg0 lilv_state_to_string@Base 0.14.2~dfsg0 lilv_ui_get_binary_uri@Base 0.4.2 lilv_ui_get_bundle_uri@Base 0.4.2 lilv_ui_get_classes@Base 0.4.2 lilv_ui_get_uri@Base 0.4.2 lilv_ui_is_a@Base 0.4.2 lilv_ui_is_supported@Base 0.4.2 lilv_uis_begin@Base 0.4.2 lilv_uis_free@Base 0.4.2 lilv_uis_get@Base 0.4.2 lilv_uis_get_by_uri@Base 0.4.2 lilv_uis_is_end@Base 0.4.2 lilv_uis_next@Base 0.4.2 lilv_uis_size@Base 0.4.2 lilv_uri_to_path@Base 0.4.2 lilv_world_ask@Base 0.16.0~dfsg0 lilv_world_find_nodes@Base 0.4.2 lilv_world_free@Base 0.4.2 lilv_world_get@Base 0.16.0~dfsg0 lilv_world_get_all_plugins@Base 0.4.2 lilv_world_get_plugin_class@Base 0.4.2 lilv_world_get_plugin_classes@Base 0.4.2 lilv_world_load_all@Base 0.4.2 lilv_world_load_bundle@Base 0.4.2 lilv_world_load_resource@Base 0.14.2~dfsg0 lilv_world_new@Base 0.4.2 lilv_world_set_option@Base 0.4.2 debian/liblilv-dev.install0000644000000000000000000000005312207141732012764 0ustar usr/include usr/lib/*.so usr/lib/pkgconfig debian/gbp.conf0000644000000000000000000000006212207141732010602 0ustar [DEFAULT] pristine-tar = True compression = bzip2 debian/copyright0000644000000000000000000000510612207147150011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Lilv Upstream-Contact: David Robillard Source: http://download.drobilla.net Copyright: 2007-2012 David Robillard License: ISC Files: * Copyright: 2007-2012 David Robillard 2008 Krzysztof Foltman License: ISC Files: waf Copyright: 2005-2012 Thomas Nagy License: BSD-3-clause Files: debian/* Copyright: 2011-2013 Alessio Treglia License: ISC License: ISC Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/lilv-utils.install0000644000000000000000000000007112207141732012657 0ustar usr/bin usr/etc/bash_completion.d etc usr/share/man/man1 debian/liblilv-0-0.install0000644000000000000000000000001712207141732012502 0ustar usr/lib/*.so.* debian/source/0000755000000000000000000000000012207141732010465 5ustar debian/source/format0000644000000000000000000000001412207141732011673 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000016512207141732010220 0ustar version=3 opts="uversionmangle=s/-/./,dversionmangle=s/~dfsg.*//" \ http://download.drobilla.net/lilv-(.*)\.tar\.bz2 debian/clean0000644000000000000000000000001612207141732010167 0ustar .lock-wscript