Lines Matching refs:from

10 from __future__ import print_function
24 from collections import namedtuple
25 from itertools import chain
99 # That dict was retrieved from Koji XMLRPC API.
141 """No builds returned from a method to select specific builds"""
157 """Cannot find latest build from a package"""
249 will be logged by logger.debug. Also, return value from the decorated
252 This decorator does not catch any exception thrown from the decorated
253 method. If there is any exception thrown from decorated method, you can
264 logger.debug('Result from %s: %s', func.__name__, result)
280 """Wrapper around an RPM descriptor received from Koji
282 The RPM descriptor that is returned from Koji XMLRPC API is a
291 received from the Koji API, either listRPMs or getRPM
298 Return the string representation of RPM information returned from Koji
360 """Get the URL from where to download this RPM"""
367 # arch should be removed from the result returned from PathInfo.rpm
380 Local RPM means the one that could be already downloaded or built from
409 """Search an RPM from the directory of the current instance of LocalRPM
422 """Find debuginfo RPM package from a directory"""
430 """Find development package from a directory"""
440 This is a simple collection containing RPMs collected from a
441 directory on the local filesystem or retrieved from Koji.
460 # Mapping from arch to a list of rpm_infos.
465 # Mapping from arch to another mapping containing index of debuginfo
478 """Gather RPM collection from local directory"""
570 """Get peer rpm of rpm from this collection"""
583 received from the Koji API, either from listRPMs or getRPM.
650 For details of APIs used within fedabipkgdiff, refer to from line
665 """Get list of RPMs of a build from Koji
670 A RPM returned from listRPMs contains following keys:
689 :param int buildID: id of a build from which to list RPMs.
708 """Get a RPM from koji
737 """Get list of builds from Koji
745 :param int packageID: id of package to list builds from.
748 state is omitted, builds with COMPLETE state are queried from Koji by
797 """Get a package from Koji
814 """Get a build from Koji
818 :param int buildID: id of build to get from Koji.
845 :return: id of the build from where the RPM is built
847 :raises KojiPackageNotFound: if name is not found from Koji if arch
858 'No builds are selected from package {0}.'.format(
871 """Get latest build from a package, for a particular distro.
878 :param str package_name: from which package to get the latest build
899 # build originates from Fedora 26 but is being re-used in
929 :param int build_id: from which build to select rpms.
935 with specific arch from build.
936 :return: a list of RPMs returned from listRPMs
959 """Get RPMs from latest build of a package
961 :param str package_name: from which package to get the rpms
969 # Get rpm and debuginfo rpm from each arch
998 """Using curl to download a RPM from Koji
1086 Output to stdout or stderr from abipkgdiff is not captured. abipkgdiff is
1222 return code from abipkgdiff.
1226 :return: exit code of the last non-zero returned from underlying abipkgdiff
1241 argument --from.
1245 latest stable package from Fedora 23, one would do:
1247 fedabipkgdiff --from fc23 ./foo-3.0.fc24.rpm
1283 fedabipkgdiff --from fc19 --to fc22 foo
1316 """Diff two nvras from koji
1371 """Compare ABI between same package from a distro
1378 fedabipkgdiff --self-compare -a --from fc25 foo
1419 description='Compare ABI of shared libraries in RPM packages from the '
1435 '--from',