aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2/lv2-doap.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-18 01:18:12 +0000
committerDavid Robillard <d@drobilla.net>2011-11-18 01:18:12 +0000
commit1180249596c09353c7e093d7c025e627cf26e0ab (patch)
treec6f6da3c6a951d61f984ac040ed7161ce10fcb83 /core.lv2/lv2-doap.ttl
parent6fde4cff5c0cce1d20be93407d8d3a28c12a459e (diff)
downloadlv2-1180249596c09353c7e093d7c025e627cf26e0ab.tar.xz
Improve DOAP metadata.
Add function to generate NEWS file from DOAP metadata.
Diffstat (limited to 'core.lv2/lv2-doap.ttl')
-rw-r--r--core.lv2/lv2-doap.ttl40
1 files changed, 27 insertions, 13 deletions
diff --git a/core.lv2/lv2-doap.ttl b/core.lv2/lv2-doap.ttl
index bbd093b..f01eadb 100644
--- a/core.lv2/lv2-doap.ttl
+++ b/core.lv2/lv2-doap.ttl
@@ -3,6 +3,19 @@
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+<http://plugin.org.uk/swh.xrdf#me>
+ a foaf:Person ;
+ foaf:name "Steve Harris" ;
+ foaf:homepage <http://plugin.org.uk/> ;
+ rdfs:seeAlso <http://plugin.org.uk/swh.xrdf> .
+
+<http://drobilla.net/drobilla#me>
+ a foaf:Person ;
+ foaf:name "David Robillard" ;
+ foaf:homepage <http://drobilla.net/> ;
+ foaf:mbox <mailto:d@drobilla.net> ;
+ rdfs:seeAlso <http://drobilla.net/drobilla> .
+
<http://lv2plug.in/ns/lv2core>
a doap:Project ;
doap:license <http://opensource.org/licenses/isc> ;
@@ -13,9 +26,10 @@
doap:programming-language "C" ;
doap:release [
doap:revision "4.1" ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
dcs:changeset [
dcs:item [
- rdfs:label "Add lv2:extensionData and lv2:ExtensionData for plugins to indicate that they support some URI for LV2_Descriptor::extension_data."
+ rdfs:label "Add lv2:extensionData and lv2:ExtensionData for plugins to indicate that they support some URI for extension_data()."
] , [
rdfs:label "Remove lv2config in favour of the convention that extension bundles simply install headers to standard URI-like include paths."
] , [
@@ -26,6 +40,7 @@
doap:revision "4.0" ;
doap:created "2011-03-18" ;
doap:file-release <http://lv2plug.in/spec/lv2core-4.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
dcs:changeset [
dcs:item [
rdfs:label "Make doap:license suggested, but not required (for wrappers)."
@@ -59,6 +74,7 @@
doap:revision "3.0" ;
doap:created "2008-11-08" ;
doap:file-release <http://lv2plug.in/spec/lv2core-3.0.tar.bz2> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
dcs:changeset [
dcs:item [
rdfs:label "Require that serialisations refer to ports by symbol rather than index."
@@ -71,16 +87,14 @@
] , [
doap:revision "2.0" ;
doap:created "2008-02-10" ;
- doap:file-release <http://lv2plug.in/spec/lv2core-2.0.tar.gz>
+ doap:file-release <http://lv2plug.in/spec/lv2core-2.0.tar.gz> ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Initial packaging."
+ ]
+ ]
] ;
- doap:maintainer [
- a foaf:Person ;
- foaf:name "Steve Harris" ;
- foaf:homepage <http://plugin.org.uk/> ;
- rdfs:seeAlso <http://plugin.org.uk/swh.xrdf>
- ] , [
- a foaf:Person ;
- foaf:name "David Robillard" ;
- foaf:homepage <http://drobilla.net/> ;
- rdfs:seeAlso <http://drobilla.net/drobilla.rdf>
- ] .
+ doap:developer <http://plugin.org.uk/swh.xrdf#me> ,
+ <http://drobilla.net/drobilla#me> ;
+ doap:maintainer <http://drobilla.net/drobilla#me> .