Skip to content

Commit 0be8a86

Browse files
author
Jakub Ružička
committed
info: use distroinfo to access rdoinfo
distroinfo is a new python module for generic access to rdoinfo-like metadata that was created by porting rdoinfo related functionality from rdopkg into a dedicated and reusable project. https://github.com/softwarefactory-project/distroinfo Make rdopkg use distroinfo. Change-Id: I995b27a863c0958aa76d55c310f26a634bb0746c
1 parent 2c4bee5 commit 0be8a86

File tree

12 files changed

+131
-436
lines changed

12 files changed

+131
-436
lines changed

doc/rdopkg.1.adoc

+1-4
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ Use `-s`/`--strict` to disable magic substring search and only match whole
475475
fields.
476476

477477
This command is a human interface to
478-
`rdopkg.actionmods.rdoinfo.find_package()` helper function.
478+
`distroinfo.query.find_package()` function.
479479

480480
*Examples of usage:*
481481

@@ -710,9 +710,6 @@ and more.
710710
711711
You can view the `rdoinfo` metada using `rdopkg info`.
712712
713-
`rdopkg.actionmods.rdoinfo` module provides a convenient interface to `rdoinfo`
714-
should you want to integrate it into your own codez.
715-
716713
717714
SEE ALSO
718715
--------

examples/rdo_projects.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@
44
currently maintained RDO projects.
55
"""
66

7+
from distroinfo.query import filter_pkgs
78
from rdopkg.actionmods import rdoinfo
89

910

1011
def list_projects():
11-
inforepo = rdoinfo.get_default_inforepo()
12+
inforepo = rdoinfo.get_rdoinfo()
1213
info = inforepo.get_info()
1314
pkgs = info['packages']
1415

1516
pkg_filter = {
1617
'name': '^openstack-'
1718
}
18-
pkgs = rdoinfo.filter_pkgs(pkgs, pkg_filter)
19+
pkgs = filter_pkgs(pkgs, pkg_filter)
1920

2021
for pkg in pkgs:
2122
project = pkg.get('project') or pkg['name']

rdopkg/actionmods/query.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from __future__ import print_function
2+
from distroinfo.query import get_distrepos
23
import re
34

45
from rdopkg.actionmods import rdoinfo
@@ -37,10 +38,10 @@ def query_repos(distrepos, package, verbose=False):
3738

3839

3940
def query_rdo(rlsdist, package, verbose=False):
40-
inforepo = rdoinfo.get_default_inforepo()
41-
inforepo.init()
41+
rdo = rdoinfo.get_rdoinfo()
42+
ri = rdo.get_info()
4243
_release, _, _dist = rlsdist.partition('/')
43-
rds = inforepo.get_distrepos(_release, _dist)
44+
rds = get_distrepos(ri, _release, _dist)
4445
results = []
4546
for release, dist, distrepos in rds:
4647
r = query_repos(distrepos, package, verbose=verbose)

0 commit comments

Comments
 (0)