boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
-
15aae5bd
by Nicolas Vigier at 2025-02-17T12:47:15+01:00
1 changed file:
Changes:
... | ... | @@ -32,6 +32,11 @@ targets: |
32 | 32 | # some foreign-arch packages fail to install when /var/lib/dpkg/available
|
33 | 33 | # does not exist, so create it as an empty file
|
34 | 34 | echo > /var/lib/dpkg/available
|
35 | + post_pkginst: |
|
|
36 | + # Alter the symbols file for libgdk-pixbuf to handle the transition to libgdk-pixbuf-2.0-0
|
|
37 | + # This is only necessary until we upgrade to something newer than buster.
|
|
38 | + # See mullvad-browser#394 and https://bugzilla.mozilla.org/show_bug.cgi?id=1933835
|
|
39 | + find /var/lib/dpkg/info/ -name libgdk-pixbuf2.0-0*symbols | xargs sed -i "/libgdk-pixbuf2.0-0/s/libgdk-pixbuf2.0-0/libgdk-pixbuf2.0-0 #MINVER# | libgdk-pixbuf-2.0-0/"
|
|
35 | 40 | arch_deps:
|
36 | 41 | # Packages needed to build the deb package
|
37 | 42 | - dpkg-dev
|
... | ... | @@ -67,6 +72,11 @@ targets: |
67 | 72 | # some foreign-arch packages fail to install when /var/lib/dpkg/available
|
68 | 73 | # does not exist, so create it as an empty file
|
69 | 74 | echo > /var/lib/dpkg/available
|
75 | + post_pkginst: |
|
|
76 | + # Alter the symbols file for libgdk-pixbuf to handle the transition to libgdk-pixbuf-2.0-0
|
|
77 | + # This is only necessary until we upgrade to something newer than buster.
|
|
78 | + # See mullvad-browser#394 and https://bugzilla.mozilla.org/show_bug.cgi?id=1933835
|
|
79 | + find /var/lib/dpkg/info/ -name libgdk-pixbuf2.0-0*symbols | xargs sed -i "/libgdk-pixbuf2.0-0/s/libgdk-pixbuf2.0-0/libgdk-pixbuf2.0-0 #MINVER# | libgdk-pixbuf-2.0-0/"
|
|
70 | 80 | arch_deps:
|
71 | 81 | # Packages needed to build the deb package
|
72 | 82 | - dpkg-dev
|