Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Jammy 22.04 #120

Merged
merged 48 commits into from
Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
c1b837b
update to jammy, remove invalid packages
neonphog Jan 18, 2023
253a32e
update to libarmadillo10
neonphog Jan 18, 2023
c272dd5
update to libboost 1.74.0
neonphog Jan 18, 2023
3e3016d
update to libcapnp-0.8.0
neonphog Jan 18, 2023
72dc06d
update to libcapstone4
neonphog Jan 18, 2023
d0a9f95
update to libcdio19
neonphog Jan 18, 2023
5448589
update to libcfitsio9
neonphog Jan 18, 2023
60b3b59
update to libdap27
neonphog Jan 18, 2023
dd226e0
update to libdc1394-25
neonphog Jan 18, 2023
5569b8b
update to libdns-export1110
neonphog Jan 18, 2023
542121c
update to libdns1110
neonphog Jan 18, 2023
ea41ecb
update to libgdal30
neonphog Jan 18, 2023
f858396
update to libgeos3.10.2
neonphog Jan 18, 2023
2f8a3d5
update to libglew2.2
neonphog Jan 18, 2023
3b2b4c7
update to libhogweed6
neonphog Jan 18, 2023
29e4ac1
update to libicu70
neonphog Jan 18, 2023
50a5715
update to libidn12
neonphog Jan 18, 2023
592cf53
update to libilmbase25
neonphog Jan 18, 2023
d4f068e
update to libisl23
neonphog Jan 18, 2023
9da4fa7
update to libjson-c5 libjsoncpp25
neonphog Jan 18, 2023
b5bc9d0
update to libkadm5 mit12
neonphog Jan 18, 2023
2d29a24
update to libkdb5-10
neonphog Jan 18, 2023
3a199f4
update to libldap-2.5-0
neonphog Jan 18, 2023
5c44ed0
update to libmircommon8
neonphog Jan 18, 2023
2857e0f
update to libmpdec3
neonphog Jan 18, 2023
350753a
update to libnetcdf19
neonphog Jan 18, 2023
66069c1
update to libnettle8
neonphog Jan 18, 2023
9f50d04
update to libopencv4.5
neonphog Jan 18, 2023
9b5bc22
update to libopenexr25
neonphog Jan 18, 2023
eadd885
update to libperl5.34
neonphog Jan 18, 2023
44aaa96
update to libpgm-5.30-0
neonphog Jan 18, 2023
1c228e3
update to libpoppler118
neonphog Jan 18, 2023
b36dd93
update to libproj22
neonphog Jan 18, 2023
8336741
update to libprotobuf23
neonphog Jan 18, 2023
5d3f291
update to libprotoc23
neonphog Jan 18, 2023
42ceb83
update to libpython3.10
neonphog Jan 18, 2023
f3d2b1d
update to libqhull8.0
neonphog Jan 18, 2023
8a00246
ensure ruby-dev
neonphog Jan 18, 2023
0a47296
update to libsemanage2
neonphog Jan 18, 2023
c74769b
update to libsepol2
neonphog Jan 18, 2023
b593a71
update to libssl3
neonphog Jan 18, 2023
1429097
update to libubsan1
neonphog Jan 18, 2023
8085373
update to libvpx7
neonphog Jan 18, 2023
fd6e87f
update to libvtk9.1
neonphog Jan 18, 2023
73cfb98
update to libwacom9
neonphog Jan 18, 2023
12be7fc
update to libwebp7
neonphog Jan 18, 2023
9cee64c
update to libx264-163 libx265-199
neonphog Jan 18, 2023
a76abd3
pick libayatana-app-indicator3-dev over libappindicator3-dev
neonphog Jan 18, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ If your crate fails to build on [Crater] or [docs.rs], you can:
* [Open an issue][new-issue-linux] with the names of the packages you need
* Send a PR adding the package names to the `linux/packages.txt` file

Note that the package needs to be available in the **Ubuntu 20.04** archives.
Note that the package needs to be available in the **Ubuntu 22.04** archives.

## Available containers

### `linux`

This container is based on **Ubuntu 20.04** and includes all the native
This container is based on **Ubuntu 22.04** and includes all the native
dependencies used by Rust crates we know of. It's used as the build environment
for the [Crater] and [docs.rs] projects.

Expand All @@ -32,7 +32,7 @@ docker pull ghcr.io/rust-lang/crates-build-env/linux:latest

### `linux-micro`

This container is based on **Ubuntu 20.04** and includes the minimum set of
This container is based on **Ubuntu 22.04** and includes the minimum set of
dependencies needed to compile simple Rust programs. It's used by the test
suites of [Crater] and [docs.rs] and during local development.

Expand Down
2 changes: 1 addition & 1 deletion linux-micro/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:jammy

# Install the packages contained in `packages.txt`
COPY packages.txt /opt/crates-build-env/packages.txt
Expand Down
2 changes: 1 addition & 1 deletion linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:focal
FROM ubuntu:jammy

# Install the packages contained in `packages.txt`
COPY packages.txt /opt/crates-build-env/packages.txt
Expand Down
Loading