Version in base suite: 2.3.4+dfsg-1 Base version: vagrant_2.3.4+dfsg-1 Target version: vagrant_2.3.4+dfsg-1+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/v/vagrant/vagrant_2.3.4+dfsg-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/v/vagrant/vagrant_2.3.4+dfsg-1+deb12u1.dsc changelog | 8 +++ patches/0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch | 23 ++++++++++ patches/series | 1 3 files changed, 32 insertions(+) diff -Nru vagrant-2.3.4+dfsg/debian/changelog vagrant-2.3.4+dfsg/debian/changelog --- vagrant-2.3.4+dfsg/debian/changelog 2022-12-31 00:47:34.000000000 +0000 +++ vagrant-2.3.4+dfsg/debian/changelog 2025-01-24 21:31:10.000000000 +0000 @@ -1,3 +1,11 @@ +vagrant (2.3.4+dfsg-1+deb12u1) bookworm; urgency=medium + + * Add patch 0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch: + Work-around change introduced by Hashicorp that broke the public Vagrant + registry with this version of Vagrant. Closes: #1092987 + + -- Lucas Nussbaum Fri, 24 Jan 2025 22:31:10 +0100 + vagrant (2.3.4+dfsg-1) unstable; urgency=medium * New upstream version 2.3.4+dfsg diff -Nru vagrant-2.3.4+dfsg/debian/patches/0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch vagrant-2.3.4+dfsg/debian/patches/0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch --- vagrant-2.3.4+dfsg/debian/patches/0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch 1970-01-01 00:00:00.000000000 +0000 +++ vagrant-2.3.4+dfsg/debian/patches/0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch 2025-01-24 21:31:10.000000000 +0000 @@ -0,0 +1,23 @@ +From: Jarek Prokop +Date: Thu, 16 Jan 2025 13:36:05 +0100 +Subject: Fix the default vagrant URL for pulling boxes. + +Origin: Fedora, https://src.fedoraproject.org/rpms/vagrant/blob/28f6e257f9df947e327d693daab09c42aefb0249/f/vagrant-2.3.4-Fix-the-default-vagrant-URL-for-pulling-boxes.patch +Bug-Debian: http://bugs.debian.org/1092987 +--- + lib/vagrant/shared_helpers.rb | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/vagrant/shared_helpers.rb b/lib/vagrant/shared_helpers.rb +index 21e3d7f..fb440e5 100644 +--- a/lib/vagrant/shared_helpers.rb ++++ b/lib/vagrant/shared_helpers.rb +@@ -10,7 +10,7 @@ module Vagrant + # of Vagrant that may require remote access. + # + # @return [String] +- DEFAULT_SERVER_URL = "https://vagrantcloud.com".freeze ++ DEFAULT_SERVER_URL = "https://vagrantcloud.com/api/v2/vagrant".freeze + + # Max number of seconds to wait for joining an active thread. + # diff -Nru vagrant-2.3.4+dfsg/debian/patches/series vagrant-2.3.4+dfsg/debian/patches/series --- vagrant-2.3.4+dfsg/debian/patches/series 2022-12-31 00:47:34.000000000 +0000 +++ vagrant-2.3.4+dfsg/debian/patches/series 2025-01-24 21:31:10.000000000 +0000 @@ -5,3 +5,4 @@ 0005-Skip-tests-that-require-winrm.patch 0006-tests-fix-tests-to-work-against-installed-package.patch 0007-test-unit-base.rb-don-t-load-patch-for-fake_ftp.patch +0008-Fix-the-default-vagrant-URL-for-pulling-boxes.patch