mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-06-04 04:21:30 +00:00
buildd: Implemented partial launchpadlib support (displays build status
and arches for now).
This commit is contained in:
parent
5ad8a6ed00
commit
ed15916481
15
buildd
15
buildd
@ -117,6 +117,16 @@ except ubuntutools.lp.udtexceptions.SeriesNotFoundException, e:
|
|||||||
print e
|
print e
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Initialize ubuntu distribution collection.
|
||||||
|
ubuntuDist = lp_functions.getUbuntuDistribution()
|
||||||
|
# Get main Ubuntu archive.
|
||||||
|
archive = ubuntuDist.main_archive
|
||||||
|
# Get list of published sources for package in question.
|
||||||
|
sources = archive.getPublishedSources(source_name = package,
|
||||||
|
status = 'Published')
|
||||||
|
# Get list of builds for that package.
|
||||||
|
builds = sources[0].getBuilds()
|
||||||
|
|
||||||
# Find out the version in given release.
|
# Find out the version in given release.
|
||||||
(page, version) = packages.checkSourceExists(package, release)
|
(page, version) = packages.checkSourceExists(package, release)
|
||||||
|
|
||||||
@ -136,10 +146,13 @@ release = release.split('-')[0] # strip off pocket
|
|||||||
|
|
||||||
print "Current build status for this package:"
|
print "Current build status for this package:"
|
||||||
|
|
||||||
|
# Output list of arches for package and their status.
|
||||||
|
for build in builds:
|
||||||
|
print "%s: %s." % (build.arch_tag, build.buildstate)
|
||||||
|
|
||||||
for m in re.finditer('"/ubuntu/\+source/%s/%s(/\+build/\d+)"[^\n]+\n\s*(\w+).*?<span>(\w+)</span>.*?</a>\s*([^\n]+)\n' %
|
for m in re.finditer('"/ubuntu/\+source/%s/%s(/\+build/\d+)"[^\n]+\n\s*(\w+).*?<span>(\w+)</span>.*?</a>\s*([^\n]+)\n' %
|
||||||
(package.replace('+', '\+'), version.replace('+', '\+')), page, re.S):
|
(package.replace('+', '\+'), version.replace('+', '\+')), page, re.S):
|
||||||
if m.group(2) == release:
|
if m.group(2) == release:
|
||||||
print '%s: %s.' % (m.group(3), m.group(4))
|
|
||||||
buildstats[url + m.group(1)] = [m.group(3).strip(), m.group(4).strip()]
|
buildstats[url + m.group(1)] = [m.group(3).strip(), m.group(4).strip()]
|
||||||
|
|
||||||
# Check that there actually are builds for that release.
|
# Check that there actually are builds for that release.
|
||||||
|
@ -31,10 +31,15 @@ from re import findall
|
|||||||
# singleton-style (lazily).
|
# singleton-style (lazily).
|
||||||
launchpad = lp_libsupport.get_launchpad("ubuntu-dev-tools")
|
launchpad = lp_libsupport.get_launchpad("ubuntu-dev-tools")
|
||||||
|
|
||||||
|
def getUbuntuDistribution():
|
||||||
|
ubuntu = launchpad.distributions['ubuntu']
|
||||||
|
|
||||||
|
return ubuntu
|
||||||
|
|
||||||
def ubuntuDevelopmentSeries():
|
def ubuntuDevelopmentSeries():
|
||||||
""" Get the string repr of the current Ubuntu development series """
|
""" Get the string repr of the current Ubuntu development series """
|
||||||
|
|
||||||
ubuntu = launchpad.distributions['ubuntu']
|
ubuntu = getUbuntuDistribution()
|
||||||
return ubuntu.current_series.name
|
return ubuntu.current_series.name
|
||||||
|
|
||||||
def doesUbuntuReleaseExist(name):
|
def doesUbuntuReleaseExist(name):
|
||||||
@ -48,14 +53,14 @@ def _ubuntuSeries(name):
|
|||||||
If the series is not found: raise SeriesNotFoundException
|
If the series is not found: raise SeriesNotFoundException
|
||||||
"""
|
"""
|
||||||
|
|
||||||
ubuntu = launchpad.distributions['ubuntu']
|
ubuntu = getUbuntuDistribution()
|
||||||
try:
|
try:
|
||||||
|
|
||||||
return ubuntu.getSeries(name_or_version=name)
|
return ubuntu.getSeries(name_or_version=name)
|
||||||
|
|
||||||
except launchpadlib.errors.HTTPError:
|
except launchpadlib.errors.HTTPError:
|
||||||
|
|
||||||
raise SeriesNotFoundException("Error: Unknown Ubuntu release: '%s'." % name)
|
raise SeriesNotFoundException("Error: Unknown Ubuntu release: '%s'." % name)
|
||||||
|
|
||||||
def _ubuntuSourcePackage(package, series):
|
def _ubuntuSourcePackage(package, series):
|
||||||
""" Finds an Ubuntu source package on LP
|
""" Finds an Ubuntu source package on LP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user