Skip to content

Commit 7f22f6c

Browse files
Merge pull request #8985 from ThomasWaldmann/vagrant-debian-testing-1.4
Vagrant: debian testing/trixie box (1.4-maint)
2 parents 3f824ac + 0991d38 commit 7f22f6c

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

Vagrantfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,22 @@ Vagrant.configure(2) do |config|
300300
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("jammy", ".*none.*")
301301
end
302302

303+
config.vm.define "trixie" do |b|
304+
b.vm.box = "debian/testing64"
305+
b.vm.provider :virtualbox do |v|
306+
v.memory = 1024 + $wmem
307+
end
308+
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
309+
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
310+
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("trixie")
311+
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("trixie")
312+
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("trixie")
313+
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
314+
b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
315+
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("trixie")
316+
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("trixie", ".*none.*")
317+
end
318+
303319
config.vm.define "bookworm" do |b|
304320
b.vm.box = "debian/bookworm64"
305321
b.vm.provider :virtualbox do |v|

docs/binaries/00_README.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Download the correct files
1111
amd64 / x86_64 architecture
1212
~~~~~~~~~~~~~~~~~~~~~~~~~~~
1313

14+
borg-linux-glibc241 Linux (built on Debian 13 "Trixie" with glibc 2.41)
1415
borg-linux-glibc236 Linux (built on Debian 12 "Bookworm" with glibc 2.36)
1516
borg-linux-glibc231 Linux (built on Debian 11 "Bullseye" with glibc 2.31)
1617
borg-linux-glibc228 Linux (built on Debian 10 "Buster" with glibc 2.28)

scripts/borg.exe.spec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ basepath = os.path.abspath(os.path.join(here, '..'))
1212
if is_win32:
1313
hiddenimports = []
1414
else:
15-
hiddenimports = ['borg.platform.posix', 'pkg_resources.py2_warn', ]
15+
hiddenimports = ['borg.platform.posix', ]
1616

1717
block_cipher = None
1818

@@ -27,6 +27,7 @@ a = Analysis([os.path.join(basepath, 'src', 'borg', '__main__.py'), ],
2727
runtime_hooks=[],
2828
excludes=[
2929
'_ssl', 'ssl',
30+
'pkg_resources', # avoid pkg_resources related warnings
3031
],
3132
win_no_prefer_redirects=False,
3233
win_private_assemblies=False,

scripts/fetch-binaries

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ check_and_copy () {
1515
check_and_copy buster borg-linux-glibc228
1616
check_and_copy bullseye borg-linux-glibc231
1717
check_and_copy bookworm borg-linux-glibc236
18+
check_and_copy trixie borg-linux-glibc241
1819

1920
check_and_copy freebsd13 borg-freebsd13
2021
check_and_copy freebsd14 borg-freebsd14

0 commit comments

Comments
 (0)