This file is indexed.

/usr/lib/lv2/abGate.lv2/gate.ttl is in abgate 1.1.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
138
139
140
141
142
143
144
@prefix lv2:  <http://lv2plug.in/ns/lv2core#>.
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix ui: <http://lv2plug.in/ns/extensions/ui#>.
@prefix units: <http://lv2plug.in/ns/extension/units#>.
@prefix pprops: <http://lv2plug.in/ns/ext/port-props#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.


<http://hippie.lt/lv2/gate/guiQt4>
	a ui:Qt4UI;
	ui:requiredFeature ui:makeResident;
	ui:optionalFeature ui:noUserResize.

<http://hippie.lt/lv2/gate/gui>
	a ui:GtkUI;
	ui:requiredFeature ui:makeResident;
	ui:optionalFeature ui:noUserResize.

<http://hippie.lt/lv2/gate>
	a lv2:Plugin, lv2:GatePlugin;
	lv2:binary <gate.so>;

	doap:name "abGate";
	doap:creator "Antanas Bruzas";

	doap:developer [
		foaf:name "Antanas Bruzas";
		foaf:homepage <http://www.hippie.lt>;
		foaf:mbox <mailto:antanas@unlimited.lt>;
    	];
	
	doap:maintainer [
		foaf:name "Antanas Bruzas" ;
		foaf:homepage <http://www.hippie.lt>;
		foaf:mbox <mailto:antanas@unlimited.lt>;
	];

  	doap:license <http://usefulinc.com/doap/licenses/lgpl>;

	ui:ui <http://hippie.lt/lv2/gate/guiQt4>;
	ui:ui <http://hippie.lt/lv2/gate/gui>;
  	
	lv2:port [
	    	a lv2:AudioPort, lv2:OutputPort;
	    	lv2:index 0;
	    	lv2:symbol "output";
	    	lv2:name "Output";
	],

	[
	    	a lv2:AudioPort, lv2:InputPort;
	    	lv2:index 1;
	    	lv2:symbol "input";
	    	lv2:name "Input";
	],

	[
		a lv2:ControlPort, lv2:InputPort;
	    	lv2:index 2;
	    	lv2:symbol "switch";
	    	lv2:name "Switch";
	    	lv2:minimum 0;
	    	lv2:maximum 1;
	    	lv2:default 0;
		lv2:portProperty pprops:hasStrictBounds;
		lv2:PortProperty lv2:toggled;
	],

	[
		a lv2:ControlPort, lv2:InputPort;
	    	lv2:index 3;
	    	lv2:symbol "threshold";
	    	lv2:name "Threshold";
	    	lv2:minimum -70;
	    	lv2:maximum 12;
	    	lv2:default -70;
		lv2:portProperty pprops:hasStrictBounds;
		units:unit units:db;
		units:conversion [
			units:to units:s;
			units:factor 0.001;
		];

	],

	[
		a lv2:ControlPort, lv2:InputPort;
	    	lv2:index 4;
	    	lv2:symbol "attack";
	    	lv2:name "Attack";
	    	lv2:minimum 0.1;
	    	lv2:maximum 500;
	    	lv2:default 30;
		lv2:portProperty pprops:hasStrictBounds;
		units:unit units:ms;
		units:conversion [
			units:to units:s;
			units:factor 0.001;
		];
	],

	[
	    	a lv2:ControlPort, lv2:InputPort;
	    	lv2:index 5;
	    	lv2:symbol "hold";
	    	lv2:name "Hold";
	    	lv2:minimum 5;
	    	lv2:maximum 3000;
	    	lv2:default 500;
		lv2:portProperty pprops:hasStrictBounds;
		units:unit units:ms;
		units:conversion [
			units:to units:s;
			units:factor 0.001;
		];
	],

	[
	    	a lv2:ControlPort, lv2:InputPort;
	    	lv2:index 6;
	    	lv2:symbol "decay";
	    	lv2:name "Decay";
	    	lv2:minimum 5;
	    	lv2:maximum 4000;
	    	lv2:default 1000;
		lv2:portProperty pprops:hasStrictBounds;
		units:unit units:ms;
		units:conversion [
			units:to units:s;
			units:factor 0.001;
		];
	],

	[
	    	a lv2:ControlPort, lv2:InputPort;
	    	lv2:index 7;
	    	lv2:symbol "gaterange";
	    	lv2:name "Range";
		lv2:portProperty pprops:hasStrictBounds;
	    	lv2:minimum -90;
	    	lv2:maximum -20;
	    	lv2:default -90;
		units:unit units:db;
	].