Lines Matching full:sets
175 -- Handle the 'set' annotation, a comma-separated list of sets which this
182 sets = obj["annotations"]["set"] or "base"
184 -- differently from the normal pkg suffix processing, because we don't need sets
188 -- lib32, so this avoids creating a large number of unnecessary lib32 sets.
192 sets = "lib32-dbg"
194 sets = "lib32"
201 sets = "devel"
202 -- Don't separate tests and tests-dbg into 2 sets, if the user wants tests
204 elseif sets == "tests" then
205 sets = sets
207 -- which means the user can install debug symbols only for the sets they
211 for set in sets:gmatch("[^,]+") do
214 sets = table.concat(newsets, ",")
216 -- Put our new sets back into the package.
217 obj["annotations"]["set"] = sets