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
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=E0211,E0213
"""Binary package release in Distribution Architecture Release interfaces."""
__metaclass__ = type
__all__ = [
'IDistroArchSeriesBinaryPackageRelease',
]
from zope.interface import Attribute
from lp.soyuz.interfaces.binarypackagerelease import IBinaryPackageRelease
class IDistroArchSeriesBinaryPackageRelease(IBinaryPackageRelease):
"""This is a BinaryPackageRelease-In-A-DistroArchSeries. It represents
a real binary package release that has been uploaded to a distroseries
and published for that specific architecture.
"""
distroarchseries = Attribute("The distro architecture series.")
binarypackagerelease = Attribute("The source package release.")
name = Attribute("The binary package name as text")
version = Attribute("The binary package version as text")
displayname = Attribute("Display name for this package.")
title = Attribute("Title for this package.")
distribution = Attribute("The distribution.")
distroseries = Attribute("The distro series.")
distributionsourcepackagerelease = Attribute("The source package in "
"this distribution from which this package was built.")
distroarchseriesbinarypackage = Attribute(
"The object representing all binary package versions with the "
"same name in the same DistroArchSeries, its parent object.")
pocket = Attribute("The pocket in which this release is published, "
"or None if it is not currently published.")
status = Attribute("The current publishing status of this release "
"of the binary package, in this distroarchseries.")
priority = Attribute("The current publishing priority of this release "
"of the binary package, in this distroarchseries.")
section = Attribute("The section in which this package is published "
"or None if it is not currently published.")
component = Attribute("The component in which this package is "
"published or None if it is not currently published.")
publishing_history = Attribute("Return a list of publishing "
"records for this binary package release in this series "
"and this architecture, of the distribution.")
current_publishing_record = Attribute("The current PUBLISHED record "
"of this binary package release in this distro arch release, or "
"None if there is not one.")
|