1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""A pocket of a source package."""
__metaclass__ = type
__all__ = [
'ISuiteSourcePackage',
]
from lazr.restful.declarations import (
export_as_webservice_entry,
exported,
)
from lazr.restful.fields import Reference
from zope.interface import Interface
from zope.schema import (
Choice,
TextLine,
)
from canonical.launchpad import _
from lp.registry.interfaces.distribution import IDistribution
from lp.registry.interfaces.distroseries import IDistroSeries
from lp.registry.interfaces.pocket import PackagePublishingPocket
from lp.registry.interfaces.sourcepackage import ISourcePackage
class ISuiteSourcePackage(Interface):
"""A source package that's on a pocket."""
export_as_webservice_entry()
displayname = exported(
TextLine(
title=_("Display name"),
description=_(
"A string for this suite / source package suitable for "
"displaying to the user.")))
distribution = exported(
Reference(
IDistribution, title=_("Distribution"), required=True,
description=_("The distribution for the source package.")))
# The interface for this is really IDistroSeries, but importing that would
# cause circular imports. Set in _schema_circular_imports.
distroseries = exported(
Reference(
IDistroSeries, title=_("Distribution Series"), required=True,
description=_("The DistroSeries for this SourcePackage")))
path = exported(
TextLine(
title=_("Suite"),
description=_("<distro>/<suite>/<sourcepackagename>")))
pocket = exported(
Choice(
title=_('Pocket'), required=True,
vocabulary=PackagePublishingPocket,
description=_("The build targeted pocket.")))
sourcepackagename = Choice(
title=_("Package"), required=False, vocabulary='SourcePackageName')
sourcepackage = exported(
Reference(
ISourcePackage, title=_('Source package'), required=True,
description=_('The source package')))
suite = exported(
TextLine(
title=_("Suite"),
description=_(
"A string naming the suite that this package is for. "
"The distro series followed by the pocket, separated by a "
"hyphen.")))
|