Skip to content

Commit

Permalink
Fix carla.lv2 ttl validation
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Jan 2, 2024
1 parent 73ddea2 commit 4db3842
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/dpf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,20 @@ jobs:
pawpaw: true
release: false

pluginval:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: pluginval
pawpaw: true
# NOTE disabled for now
# lv2lint does not allow to differentiate exposed features for multiple plugins in a single binary
# (e.g. plugin A uses worker while plugin B does not, but they come from the same binary)
# see https://github.com/falkTX/Carla/actions/runs/7389992205/job/20103997236
#pluginval:
#runs-on: ubuntu-20.04
#steps:
#- uses: actions/checkout@v3
#with:
#submodules: recursive
#- uses: distrho/dpf-makefile-action@v1
#with:
#target: pluginval
#pawpaw: true

source:
runs-on: ubuntu-20.04
Expand Down
3 changes: 2 additions & 1 deletion source/plugin/carla-lv2-export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio
text += "@prefix lv2: <" LV2_CORE_PREFIX "> .\n";
text += "@prefix mod: <http://moddevices.com/ns/mod#> .\n";
text += "@prefix opts: <" LV2_OPTIONS_PREFIX "> .\n";
text += "@prefix owl: <http://www.w3.org/2002/07/owl#> .\n";
text += "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n";
text += "@prefix ui: <" LV2_UI_PREFIX "> .\n";
text += "\n";
Expand All @@ -130,7 +131,7 @@ static void writeManifestFile(PluginListManager& plm, const uint32_t microVersio
// Project

text += "<https://kx.studio/carla>\n";
text += " a owl:Ontology, lv2:Project, doap:Project ;\n";
text += " a owl:Ontology, doap:Project ;\n";
text += " doap:homepage <https://kx.studio/carla> ;\n";
text += " doap:maintainer [\n";
text += " foaf:homepage <https://falktx.com/> ;\n";
Expand Down

0 comments on commit 4db3842

Please sign in to comment.