aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/lv2core
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-02-08 00:28:38 +0100
committerDavid Robillard <d@drobilla.net>2017-02-08 00:28:38 +0100
commit0fc02cfb7cbe7f29149e67f8355192b5ceb8a1db (patch)
treef52961f40e512d5d1798c7a40b48d27a27d141ac /lv2/lv2plug.in/ns/lv2core
parentb36868f3b96a436961c0c51b5b2dd71d05da9b12 (diff)
downloadlv2-0fc02cfb7cbe7f29149e67f8355192b5ceb8a1db.tar.xz
Add lv2_validate utility
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core')
-rw-r--r--lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl2
-rw-r--r--lv2/lv2plug.in/ns/lv2core/lv2core.ttl3
-rw-r--r--lv2/lv2plug.in/ns/lv2core/manifest.ttl5
-rw-r--r--lv2/lv2plug.in/ns/lv2core/meta.ttl202
4 files changed, 209 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl
index 0ad5c3e..601c6d7 100644
--- a/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl
+++ b/lv2/lv2plug.in/ns/lv2core/lv2core.doap.ttl
@@ -5,7 +5,7 @@
<http://lv2plug.in/ns/lv2core>
a doap:Project ;
- rdfs:seeAlso <../meta/meta.ttl> ;
+ rdfs:seeAlso <meta.ttl> ;
doap:license <http://opensource.org/licenses/isc> ;
doap:name "LV2" ;
doap:homepage <http://lv2plug.in> ;
diff --git a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
index 74ad5ac..1e460ee 100644
--- a/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
+++ b/lv2/lv2plug.in/ns/lv2core/lv2core.ttl
@@ -39,8 +39,7 @@ devices). See <a href="http://www.w3.org/TR/xhtml-basic/#s_xhtmlmodules"
a owl:Ontology ;
rdfs:seeAlso <lv2.h> ,
<lv2_util.h> ,
- <lv2core.doap.ttl> ,
- <../meta/meta.ttl> ;
+ <lv2core.doap.ttl> ;
lv2:documentation """
<p>LV2 is an interface for writing audio processors, or <q>plugins</q>, in
C/C++ which can be dynamically loaded into many applications, or <q>hosts</q>.
diff --git a/lv2/lv2plug.in/ns/lv2core/manifest.ttl b/lv2/lv2plug.in/ns/lv2core/manifest.ttl
index 1b60ca8..5c3f7a2 100644
--- a/lv2/lv2plug.in/ns/lv2core/manifest.ttl
+++ b/lv2/lv2plug.in/ns/lv2core/manifest.ttl
@@ -1,3 +1,4 @@
+@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@@ -7,3 +8,7 @@
lv2:minorVersion 14 ;
lv2:microVersion 0 ;
rdfs:seeAlso <lv2core.ttl> .
+
+<http://lv2plug.in/ns/lv2>
+ a doap:Project ;
+ rdfs:seeAlso <meta.ttl> .
diff --git a/lv2/lv2plug.in/ns/lv2core/meta.ttl b/lv2/lv2plug.in/ns/lv2core/meta.ttl
new file mode 100644
index 0000000..5246758
--- /dev/null
+++ b/lv2/lv2plug.in/ns/lv2core/meta.ttl
@@ -0,0 +1,202 @@
+@prefix dcs: <http://ontologi.es/doap-changeset#> .
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix meta: <http://lv2plug.in/ns/meta#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<http://opensource.org/licenses/isc>
+ rdf:value """
+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.
+""" .
+
+<http://lv2plug.in/ns/lv2>
+ a doap:Project ;
+ lv2:symbol "lv2" ;
+ doap:name "LV2" ;
+ doap:license <http://opensource.org/licenses/isc> ;
+ doap:shortdesc "The LV2 Plugin Interface Project" ;
+ doap:description "LV2 is a plugin standard for audio systems. It defines a minimal yet extensible C API for plugin code and a format for plugin bundles" ;
+ doap:created "2006-05-10" ;
+ doap:homepage <http://lv2plug.in/> ;
+ doap:mailing-list <http://lists.lv2plug.in/listinfo.cgi/devel-lv2plug.in> ;
+ doap:programming-language "C" ;
+ doap:repository [
+ a doap:SVNRepository ;
+ doap:location <http://lv2plug.in/repo>
+ ] ;
+ doap:developer <http://drobilla.net/drobilla#me> ,
+ <http://plugin.org.uk/swh.xrdf#me> ;
+ doap:helper meta:larsl ,
+ meta:gabrbedd ,
+ meta:daste ,
+ meta:kfoltman ,
+ meta:paniq ;
+ doap:release [
+ doap:revision "1.14.1" ;
+ doap:created "2016-10-04" ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "eg-sampler: Add waveform display to UI."
+ ] , [
+ rdfs:label "Add lv2_validate utility."
+ ]
+ ]
+ ] , [
+ doap:revision "1.14.0" ;
+ doap:created "2016-09-19" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.14.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "eg-scope: Don't feed back UI state updates."
+ ] , [
+ rdfs:label "eg-sampler: Fix handling of state file paths."
+ ] , [
+ rdfs:label "eg-sampler: Support thread-safe state restoration."
+ ]
+ ]
+ ] , [
+ doap:revision "1.12.0" ;
+ doap:created "2015-04-07" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.12.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "eg-sampler: Support patch:Get, and request initial state from UI."
+ ] , [
+ rdfs:label "eg-sampler: Add gain parameter."
+ ] , [
+ rdfs:label "Fix merging of version histories in specification documentation."
+ ] , [
+ rdfs:label "Improve API documentation."
+ ] , [
+ rdfs:label "Simplify property restrictions by removing redundancy."
+ ]
+ ]
+ ] , [
+ doap:revision "1.10.0" ;
+ doap:created "2014-08-08" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.10.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "lv2specgen: Display deprecated warning on classes marked owl:deprecated."
+ ] , [
+ rdfs:label "Fix -Wconversion warnings in headers."
+ ] , [
+ rdfs:label "Upgrade to waf 1.7.16."
+ ]
+ ]
+ ] , [
+ doap:revision "1.8.0" ;
+ doap:created "2014-01-04" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.8.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Add scope example plugin from Robin Gareus."
+ ] , [
+ rdfs:label "lv2specgen: Fix links to externally defined terms."
+ ] , [
+ rdfs:label "Install lv2specgen for use by other projects."
+ ]
+ ]
+ ] , [
+ doap:revision "1.6.0" ;
+ doap:created "2013-08-09" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.6.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Fix port indices of metronome example."
+ ] , [
+ rdfs:label "Fix lv2specgen usage from command line."
+ ] , [
+ rdfs:label "Upgrade to waf 1.7.11."
+ ]
+ ]
+ ] , [
+ doap:revision "1.4.0" ;
+ doap:created "2013-02-17" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.4.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Add metronome example plugin to demonstrate sample accurate tempo sync."
+ ] , [
+ rdfs:label "Generate book-style HTML documentation from example plugins."
+ ]
+ ]
+ ] , [
+ doap:revision "1.2.0" ;
+ doap:created "2012-10-14" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.2.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Move all project metadata for extensions (e.g. change log) to separate files to spare hosts from loading them during discovery."
+ ] , [
+ rdfs:label "Use stricter datatype definitions conformant with the XSD and OWL specifications for better validation."
+ ]
+ ]
+ ] , [
+ doap:revision "1.0.0" ;
+ doap:created "2012-04-16" ;
+ doap:file-release <http://lv2plug.in/spec/lv2-1.0.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Initial release as a unified project. Projects can now simply depend on the pkg-config package 'lv2' for all official LV2 APIs."
+ ] , [
+ rdfs:label "New extensions: atom, log, parameters, patch, port-groups, port-props, resize-port, state, time, worker."
+ ]
+ ]
+ ] .
+
+<http://drobilla.net/drobilla#me>
+ a foaf:Person ;
+ foaf:name "David Robillard" ;
+ foaf:mbox <mailto:d@drobilla.net> ;
+ rdfs:seeAlso <http://drobilla.net/drobilla> .
+
+<http://plugin.org.uk/swh.xrdf#me>
+ a foaf:Person ;
+ foaf:name "Steve Harris" ;
+ foaf:mbox <mailto:steve@plugin.org.uk> ;
+ rdfs:seeAlso <http://plugin.org.uk/swh.xrdf> .
+
+meta:larsl
+ a foaf:Person ;
+ foaf:name "Lars Luthman" ;
+ foaf:mbox <mailto:lars.luthman@gmail.com> .
+
+meta:gabrbedd
+ a foaf:Person ;
+ foaf:name "Gabriel M. Beddingfield" ;
+ foaf:mbox <mailto:gabrbedd@gmail.com> .
+
+meta:daste
+ a foaf:Person ;
+ foaf:name "Stefano D'Angelo" ;
+ foaf:mbox <mailto:zanga.mail@gmail.com> .
+
+meta:kfoltman
+ a foaf:Person ;
+ foaf:name "Krzysztof Foltman" ;
+ foaf:mbox <mailto:wdev@foltman.com> .
+
+meta:paniq
+ a foaf:Person ;
+ foaf:name "Leonard Ritter" ;
+ foaf:mbox <mailto:paniq@paniq.org> .
+
+meta:harry
+ a foaf:Person ;
+ foaf:name "Harry van Haaren" ;
+ foaf:mbox <harryhaaren@gmail.com> .