File size: 5,678 Bytes
71687cf | 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""
Handle the planning of installs and their execution.
NOTE:
conda.install uses canonical package names in its interface functions,
whereas conda.resolve uses package filenames, as those are used as index
keys. We try to keep fixes to this "impedance mismatch" local to this
module.
"""
import sys
from collections import defaultdict
from logging import getLogger
from boltons.setutils import IndexedSet
from .base.constants import DEFAULTS_CHANNEL_NAME, UNKNOWN_CHANNEL
from .base.context import context, reset_context
from .common.constants import TRACE
from .common.io import dashlist, env_vars, time_recorder
from .common.iterators import groupby_to_dict as groupby
from .core.index import LAST_CHANNEL_URLS
from .core.link import PrefixSetup, UnlinkLinkTransaction
from .deprecations import deprecated
from .instructions import FETCH, LINK, SYMLINK_CONDA, UNLINK
from .models.channel import Channel, prioritize_channels
from .models.dist import Dist
from .models.enums import LinkType
from .models.match_spec import MatchSpec
from .models.records import PackageRecord
from .models.version import normalized_version
from .utils import human_bytes
deprecated.module("25.9", "26.3")
deprecated.constant(
"25.9",
"26.3",
"log",
getLogger(__name__),
addendum="Use builtin `logging` instead.",
)
deprecated.constant("25.9", "26.3", "sys", sys, addendum="Use builtin `sys` instead.")
del sys
deprecated.constant(
"25.9",
"26.3",
"defaultdict",
defaultdict,
addendum="Use builtin `collections.defaultdict` instead.",
)
del defaultdict
deprecated.constant(
"25.9",
"26.3",
"IndexedSet",
IndexedSet,
addendum="Use `boltons.setutils.IndexedSet` instead.",
)
del IndexedSet
deprecated.constant(
"25.9",
"26.3",
"DEFAULTS_CHANNEL_NAME",
DEFAULTS_CHANNEL_NAME,
addendum="Use `conda.base.constants.DEFAULTS_CHANNEL_NAME` instead.",
)
del DEFAULTS_CHANNEL_NAME
deprecated.constant(
"25.9",
"26.3",
"UNKNOWN_CHANNEL",
UNKNOWN_CHANNEL,
addendum="Use `conda.base.constants.UNKNOWN_CHANNEL` instead.",
)
del UNKNOWN_CHANNEL
deprecated.constant(
"25.9",
"26.3",
"context",
context,
addendum="Use `conda.base.context.context` instead.",
)
del context
deprecated.constant(
"25.9",
"26.3",
"reset_context",
reset_context,
addendum="Use `conda.base.context.reset_context` instead.",
)
del reset_context
deprecated.constant(
"25.9",
"26.3",
"TRACE",
TRACE,
addendum="Use `conda.common.constants.TRACE` instead.",
)
del TRACE
deprecated.constant(
"25.9",
"26.3",
"dashlist",
dashlist,
addendum="Use `conda.common.io.dashlist` instead.",
)
del dashlist
deprecated.constant(
"25.9",
"26.3",
"env_vars",
env_vars,
addendum="Use `conda.common.io.env_vars` instead.",
)
del env_vars
deprecated.constant(
"25.9",
"26.3",
"time_recorder",
time_recorder,
addendum="Use `conda.common.io.time_recorder` instead.",
)
del time_recorder
deprecated.constant(
"25.9",
"26.3",
"groupby",
groupby,
addendum="Use `conda.common.iterators.groupby_to_dict` instead.",
)
del groupby
deprecated.constant(
"25.9",
"26.3",
"LAST_CHANNEL_URLS",
LAST_CHANNEL_URLS,
addendum="Use `conda.core.index.LAST_CHANNEL_URLS` instead.",
)
del LAST_CHANNEL_URLS
deprecated.constant(
"25.9",
"26.3",
"PrefixSetup",
PrefixSetup,
addendum="Use `conda.core.link.PrefixSetup` instead.",
)
del PrefixSetup
deprecated.constant(
"25.9",
"26.3",
"UnlinkLinkTransaction",
UnlinkLinkTransaction,
addendum="Use `conda.core.link.UnlinkLinkTransaction` instead.",
)
del UnlinkLinkTransaction
deprecated.constant(
"25.9",
"26.3",
"FETCH",
FETCH,
addendum="Use `conda.instructions.FETCH` instead.",
)
del FETCH
deprecated.constant(
"25.9", "26.3", "LINK", LINK, addendum="Use `conda.instructions.LINK` instead."
)
del LINK
deprecated.constant(
"25.9",
"26.3",
"SYMLINK_CONDA",
SYMLINK_CONDA,
addendum="Use `conda.instructions.SYMLINK_CONDA` instead.",
)
del SYMLINK_CONDA
deprecated.constant(
"25.9",
"26.3",
"UNLINK",
UNLINK,
addendum="Use `conda.instructions.UNLINK` instead.",
)
del UNLINK
deprecated.constant(
"25.9",
"26.3",
"Channel",
Channel,
addendum="Use `conda.models.channel.Channel` instead.",
)
del Channel
deprecated.constant(
"25.9",
"26.3",
"prioritize_channels",
prioritize_channels,
addendum="Use `conda.models.channel.prioritize_channels` instead.",
)
del prioritize_channels
deprecated.constant(
"25.9",
"26.3",
"Dist",
Dist,
addendum="Use `conda.models.dist.Dist` instead.",
)
del Dist
deprecated.constant(
"25.9",
"26.3",
"LinkType",
LinkType,
addendum="Use `conda.models.enums.LinkType` instead.",
)
del LinkType
deprecated.constant(
"25.9",
"26.3",
"MatchSpec",
MatchSpec,
addendum="Use `conda.models.match_spec.MatchSpec` instead.",
)
del MatchSpec
deprecated.constant(
"25.9",
"26.3",
"PackageRecord",
PackageRecord,
addendum="Use `conda.models.records.PackageRecord` instead.",
)
del PackageRecord
deprecated.constant(
"25.9",
"26.3",
"normalized_version",
normalized_version,
addendum="Use `conda.models.version.normalized_version` instead.",
)
del normalized_version
deprecated.constant(
"25.9",
"26.3",
"human_bytes",
human_bytes,
addendum="Use `conda.utils.human_bytes` instead.",
)
del human_bytes
|