summaryrefslogtreecommitdiffstats
path: root/recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2021-11-02 19:17:38 -0400
committerScott Murray <scott.murray@konsulko.com>2021-11-03 18:34:00 +0000
commit88c424f8b8c78dfc5520ea9be1866027df4735b8 (patch)
treec0c7337d00ae28434e55cc23afd1042c1bec00c3 /recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb
parent8635e7c6c160d06f2ba5a5a84324122d6588b891 (diff)
Update github.com git:// SRC_URIs
GitHub is dropping unauthenticated git protocol access in January 2022, per: https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git While a workaround in the BitBake git fetcher is forthcoming, not specifying protocol=https for github.com git:// SRC_URIs will start resulting in warnings in Yocto 3.5/Kirkstone. To ease our upgrade path, go ahead and update our affected SRC_URIs. Note that this has been done by running the scripts/contrib/convert-srcuri.py script from latest poky, which also makes git branch specification explicit since the git fetcher is likely to require that in the future due to widespread switches from master to main branches. Bug-AGL: SPEC-4126 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Ibfa59ef83db75f95c4b47b28213b60d8cf19fba1 (cherry picked from commit 94a051785cdb588bc3a475a5490f1f286176d646)
Diffstat (limited to 'recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb')
-rw-r--r--recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb b/recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb
index dddfcc8d6..520e7639b 100644
--- a/recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb
+++ b/recipes-apis/agl-service-cloudproxy/libcloudproxy_git.bb
@@ -12,7 +12,7 @@ DEPENDS = "af-binder json-c"
inherit cmake
-SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/libcloudproxy;protocol=https"
+SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/libcloudproxy;protocol=https;branch=master"
SRCREV = "2d66933b9bf25af66696b097283109c8a6e87151"
S = "${WORKDIR}/git"
='n201' href='#n201'>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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404