[zod...@cosmogirl ~]$ conary rq group-compat32
group-compat32 was not found on path foresight.rpath....@fl:2-kernel, 
foresight.rpath....@fl:2-qa, conary.rpath....@rpl:2-qa (Closest 
alternate flavors found: [is: x86 x86_64])


wtf ????????????????????

http://www.rpath.org/repos/foresight/troveInfo?t=group-compat32

im show it because ticache generate a xml node for that group and conary 
cannot do a rq with it......



ef getPackagesFromLabel(cfg, cli, label):
     '''
     Return a set of (name, version, flavor) triples representing each
     package on the specified I{label}.
     '''
     repos = cli.getRepos()
     label = versions.Label(label)

     # Get a list of troves on that label
     # {name: {version: [flavor, ...], ...}, ...}
     mapping = repos.getTroveLatestByLabel({'': {label: None}})
     ret = set()
     for name, trove_versions in mapping.iteritems():
         if ':' in name:
             # Skip components
             continue

         latestVersion = max(trove_versions.iterkeys())
         flavors = trove_versions[latestVersion]

         for flavor in flavors:
             if flavor.satisfies(cfg.searchFlavor):
                 ret.add((name, latestVersion, flavor))
                 break

     return ret
_______________________________________________
Foresight-devel mailing list
Foresight-devel@lists.rpath.org
http://lists.rpath.org/mailman/listinfo/foresight-devel

Reply via email to