-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ubuntu-24.10' into 24.10/libtheora0_libx11-xcb1
- Loading branch information
Showing
8 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package: gosu | ||
|
||
essential: | ||
- gosu_copyright | ||
|
||
slices: | ||
bins: | ||
contents: | ||
/usr/sbin/gosu: | ||
|
||
copyright: | ||
contents: | ||
/usr/share/doc/gosu/copyright: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package: libnginx-mod-http-headers-more-filter | ||
|
||
essential: | ||
- libnginx-mod-http-headers-more-filter_copyright | ||
|
||
slices: | ||
modules: | ||
essential: | ||
# libnginx-mod-http-headers-more-filter depends on nginx-abi, which is | ||
# a virtual package provided by nginx, hence the dependency on nginx_bins. | ||
- libc6_libs | ||
- libnginx-mod-http-headers-more-filter_config | ||
- nginx_bins | ||
contents: | ||
/usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so: | ||
|
||
config: | ||
contents: | ||
# This symlink is created by the maintainer scipts | ||
/etc/nginx/modules-enabled/50-mod-http-headers-more-filter.conf: | ||
symlink: /usr/share/nginx/modules-available/mod-http-headers-more-filter.conf | ||
/usr/share/nginx/modules-available/mod-http-headers-more-filter.conf: | ||
|
||
copyright: | ||
contents: | ||
/usr/share/doc/libnginx-mod-http-headers-more-filter/copyright: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package: python3-pip | ||
|
||
essential: | ||
- python3-pip_copyright | ||
|
||
slices: | ||
bins: | ||
essential: | ||
- python3-pip_libs | ||
contents: | ||
/usr/bin/pip: | ||
/usr/bin/pip3: | ||
|
||
libs: | ||
essential: | ||
- ca-certificates_data | ||
- python3-wheel_libs | ||
- python3_standard | ||
contents: | ||
/usr/lib/python3/dist-packages/pip-*.dist-info/**: | ||
/usr/lib/python3/dist-packages/pip/**: | ||
|
||
copyright: | ||
contents: | ||
/usr/share/doc/python3-pip/copyright: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package: python3-wheel | ||
|
||
essential: | ||
- python3-wheel_copyright | ||
|
||
slices: | ||
libs: | ||
essential: | ||
- python3_standard | ||
contents: | ||
/usr/lib/python3/dist-packages/wheel-*.dist-info/**: | ||
/usr/lib/python3/dist-packages/wheel/**: | ||
|
||
copyright: | ||
contents: | ||
/usr/share/doc/python3-wheel/copyright: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
summary: Integration tests for gosu | ||
|
||
execute: | | ||
# Chisel a minimum number of slices to give us a runnable system that we can | ||
# test in. | ||
rootfs="$(install-slices gosu_bins)" | ||
mkdir -p "${rootfs}"/proc/self | ||
ln -sf /usr/sbin/gosu "${rootfs}"/proc/self/exe | ||
chroot "${rootfs}/" gosu -h |
9 changes: 9 additions & 0 deletions
9
tests/spread/integration/libnginx-mod-http-headers-more-filter/task.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
summary: Integration tests for libnginx-mod-http-headers-more-filter | ||
|
||
execute: | | ||
# Chisel a minimum number of slices to give us a runnable system that we can | ||
# test in. | ||
rootfs="$(install-slices base-files_var base-passwd_data libnginx-mod-http-headers-more-filter_modules)" | ||
# This will fail if loading of the NGINX module fails. | ||
chroot "${rootfs}/" nginx -t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
summary: Integration tests for python3-pip | ||
|
||
execute: | | ||
rootfs="$(install-slices python3-pip_bins)" | ||
cp /etc/resolv.conf "${rootfs}/etc/" | ||
# Smoke tests. | ||
chroot ${rootfs} /usr/bin/pip --version | ||
chroot ${rootfs} /usr/bin/pip install --upgrade setuptools |