aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/meta/meta.ttl
blob: e681124f60fe78450e7e71ce74f327cc63634d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
@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://lv2plug.in/ns/meta>
	a owl:Ontology ;
	doap:license <http://opensource.org/licenses/isc> ;
	doap:name "LV2 Meta" ;
	doap:shortdesc "LV2 project metadata" ;
	doap:created "2012-03-25" ;
	doap:maintainer <http://drobilla.net/drobilla#me> ;
	rdfs:comment """
This document describes metadata relevant to the LV2 project.
""" .

<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.4.1" ;
		doap:created "2013-03-24" ;
		dcs:blame <http://drobilla.net/drobilla#me> ;
		dcs:changeset [
			dcs:item [
				rdfs:label "Fix port indices of metronome example."
			]
		]
	] , [
		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> .