aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/units.lv2/units.ttl41
-rwxr-xr-xgenreleases.py1
2 files changed, 18 insertions, 24 deletions
diff --git a/extensions/units.lv2/units.ttl b/extensions/units.lv2/units.ttl
index 7a6a19d..78227d5 100644
--- a/extensions/units.lv2/units.ttl
+++ b/extensions/units.lv2/units.ttl
@@ -1,24 +1,18 @@
# LV2 Units Extension
-# Copyright (C) 2007 Steve Harris
-# Copyright (C) 2009 David Robillard
+# Copyright 2009-2011 David Robillard
+# Copyright 2007 Steve Harris
#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
-# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-# OTHER DEALINGS IN THE SOFTWARE.
+# 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.
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@@ -29,11 +23,13 @@
<http://lv2plug.in/ns/extensions/units>
a lv2:Specification ;
+ doap:name "LV2 Units" ;
doap:created "2007-02-06" ;
doap:homepage <http://lv2plug.in/ns/extensions/units> ;
+ doap:license <http://opensource.org/licenses/isc-license> ;
doap:release [
doap:revision "5.2" ;
- doap:created "2011-05-26"
+ doap:created "2011-08-21"
] ;
doap:maintainer [
a foaf:Person ;
@@ -47,12 +43,10 @@
foaf:homepage <http://drobilla.net/> ;
foaf:name "David Robillard"
] ;
- doap:name "LV2 Units extension" ;
lv2:documentation """
<p>This extension defines a number of units for use in audio processing.</p>
-<p>For example, to say that the port use the gain unit defined as units:db
-(decibels):</p>
+<p>For example, to say that a gain port's value is in decibels (units:db)</p>
<pre>
@prefix : &lt;http://lv2plug.in/ns/extensions/units#&gt; .
@@ -348,4 +342,3 @@ units:midiNote a units:Unit ;
units:name "MIDI note" ;
units:render "MIDI note %d" ;
units:symbol "note" .
-
diff --git a/genreleases.py b/genreleases.py
index 633767c..8275127 100755
--- a/genreleases.py
+++ b/genreleases.py
@@ -12,6 +12,7 @@ lv2 = RDF.NS('http://lv2plug.in/ns/lv2core#')
manifests = glob.glob('ext/*.lv2/manifest.ttl')
manifests += ['extensions/ui.lv2/manifest.ttl']
+manifests += ['extensions/units.lv2/manifest.ttl']
try: os.mkdir('build')
except: pass