Lines Matching defs:repository

75 # The "core" type indicates that a repository contains all of the dependencies
76 # declared by packages in the repository. It is primarily used for operating
80 # The "supplemental" type indicates that a repository contains packages that
82 # repository.
136 # A special token used in place of the system repository URL which is
138 # system-repository.
142 """Class representing a repository URI and any transport-related
439 "A boolean value indicating whether this repository URI should be "
449 "The URI used to access a repository.")
452 "An integer value representing the importance of this repository "
456 "access this repository.")
459 "A list of proxies that can be used to access this repository."
464 "A boolean value indicating whether this repository URI is for"
465 "a system repository.")
697 "The proxy that is used to access this repository."
702 "The proxy to use to access this repository. This value checks"
707 """Class representing a repository object.
709 A repository object represents a location where clients can publish
743 """Initializes a repository object.
746 type of packages in the repository.
749 descriptive paragraph for the repository.
753 information for the repository can be found.
759 repository.
766 repository catalog or repository metadata information.
769 a client has registered with the repository's publisher.
773 obtain credentials needed to access the repository.
895 """Adds the specified legal URI to the repository.
906 """Adds the specified mirror to the repository.
926 """Adds the specified origin to the repository.
946 """Adds the specified related URI to the repository.
983 'mirror' exists for the repository.
993 'origin' exists for the repository.
1002 """Removes the legal URI matching 'uri' from the repository.
1015 """Removes the mirror matching 'mirror' from the repository.
1033 """Removes the origin matching 'origin' from the repository.
1051 """Removes the related URI matching 'uri' from the repository.
1104 """Discards the current list of repository mirrors."""
1109 """Discards the current list of repository origins."""
1116 repository. The following collection types are recognized:
1119 The "core" type indicates that the repository contains
1121 repository. It is primarily used for operating system
1125 The "supplemental" type indicates that the repository
1127 used with packages located in another repository.""")
1132 legal, and terms of service information for the repository can be
1148 register or obtain credentials needed to access the repository. If
1162 wait before refreshing cached repository metadata information. A
1205 disabled=False, meta_root=None, repository=None,
1263 if repository:
1264 self.repository = repository
1306 repository=copy.copy(self.repository),
1336 repo = self.repository
1583 selected repository, or None if available."""
1651 if not self.repository or not self.repository.origins:
1658 return [self.repository]
1677 nrepo = copy.copy(self.repository)
1694 metadata for the currently selected repository needs to be
1697 if not self.repository or not self.meta_root:
1711 rs = self.repository.refresh_seconds
1737 for origin in self.repository.origins:
1751 for o in self.repository.origins
1784 (not self.repository.origins
1785 or all(o.disabled for o in self.repository.origins)):
2022 # Create a copy of the current repository object that only
2024 repo = copy.copy(self.repository)
2044 test_pub.repository = repo
2145 repository will be checked for updates only if needs_refresh
2239 matches that provided by the repository. If the configuration
2244 containing the location of the repository. If not provided,
2245 the publisher's repository will be used instead."""
2277 origins=self.repository.origins)
2954 "publisher's selected repository was last refreshed for new "
2965 repository = property(lambda self: self.__repository,
2967 doc="A reference to the selected repository object.")