Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IMAGE ?= rstudio/r-system-requirements
VARIANTS ?= focal jammy noble bookworm sid centos7 centos8 rockylinux8 rockylinux9 rockylinux10 opensuse156 fedora41 alpine-3.19 alpine-3.20 alpine-3.21 alpine-edge
VARIANTS ?= focal jammy noble bookworm trixie sid centos7 centos8 rockylinux8 rockylinux9 rockylinux10 opensuse156 fedora41 alpine-3.19 alpine-3.20 alpine-3.21 alpine-edge

RULES ?= rules/*.json

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The rules in this catalog support the following operating systems:
- Red Hat Enterprise Linux 7, 8, 9
- openSUSE 15.6
- SUSE Linux Enterprise 15 SP6
- Debian 12, unstable
- Debian 12, 13, unstable
- Fedora 41
- Windows (for R 4.0-4.1 only)

Expand Down
8 changes: 8 additions & 0 deletions docker/trixie/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM debian:13

RUN apt-get update -qq && \
DEBIAN_FRONTEND=noninteractive apt-get install -y curl

# Install jq
RUN curl -fsSL -o /usr/local/bin/jq https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64 && \
chmod +x /usr/local/bin/jq
23 changes: 4 additions & 19 deletions rules/gdal.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,35 +138,20 @@
"packages": ["gdal-devel", "gdal"],
"pre_install": [
{ "command": "dnf install -y dnf-plugins-core" },
{ "command": "dnf config-manager --set-enabled crb" },
{ "command": "dnf install -y epel-release" }
{ "command": "dnf config-manager --set-enabled crb" }
],
"constraints": [
{
"os": "linux",
"distribution": "rockylinux",
"versions": ["9"]
}
]
},
{
"packages": ["gdal-devel", "gdal"],
"pre_install": [
{ "command": "dnf install -y epel-release" }
],
"constraints": [
{
"os": "linux",
"distribution": "rockylinux",
"versions": ["10"]
"versions": ["9", "10"]
}
]
},
{
"packages": ["gdal-devel", "gdal"],
"pre_install": [
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms" },
{ "command": "dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm" }
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms" }
],
"constraints": [
{
Expand All @@ -179,7 +164,7 @@
{
"packages": ["gdal-devel", "gdal"],
"pre_install": [
{ "command": "dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm" }
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-10-$(arch)-rpms" }
],
"constraints": [
{
Expand Down
19 changes: 15 additions & 4 deletions rules/geos.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
{
"packages": ["geos-devel"],
"pre_install": [
{ "command": "dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm" }
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms" }
],
"constraints": [
{
Expand All @@ -90,7 +90,7 @@
{
"packages": ["geos-devel"],
"pre_install": [
{ "command": "dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm" }
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-10-$(arch)-rpms" }
],
"constraints": [
{
Expand Down Expand Up @@ -127,10 +127,21 @@
"os": "linux",
"distribution": "centos",
"versions": ["8"]
},
}
]
},
{
"packages": ["geos-devel"],
"pre_install": [
{ "command": "dnf install -y dnf-plugins-core" },
{ "command": "dnf config-manager --set-enabled crb" },
{ "command": "dnf install -y epel-release" }
],
"constraints": [
{
"os": "linux",
"distribution": "rockylinux"
"distribution": "rockylinux",
"versions": ["9", "10"]
}
]
},
Expand Down
18 changes: 14 additions & 4 deletions rules/proj.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,20 @@
"os": "linux",
"distribution": "centos",
"versions": ["8"]
},
}
]
},
{
"packages": ["proj-devel"],
"pre_install": [
{ "command": "dnf install -y dnf-plugins-core" },
{ "command": "dnf config-manager --set-enabled crb" }
],
"constraints": [
{
"os": "linux",
"distribution": "rockylinux"
"distribution": "rockylinux",
"versions": ["9", "10"]
}
]
},
Expand Down Expand Up @@ -105,7 +115,7 @@
{
"packages": ["proj-devel"],
"pre_install": [
{ "command": "dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm" }
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms" }
],
"constraints": [
{
Expand All @@ -118,7 +128,7 @@
{
"packages": ["proj-devel"],
"pre_install": [
{ "command": "dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm" }
{ "command": "subscription-manager repos --enable codeready-builder-for-rhel-10-$(arch)-rpms" }
],
"constraints": [
{
Expand Down
2 changes: 1 addition & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"enum": [ "6", "7", "8" ]
},
"debian": {
"enum": [ "10", "11", "12", "unstable" ]
"enum": [ "10", "11", "12", "13", "unstable" ]
},
"fedora": {
"enum": [ "36", "37", "38", "39", "40", "41" ]
Expand Down
2 changes: 1 addition & 1 deletion systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"os": "linux",
"distribution": "debian",
"versions": [ "10", "11", "12", "unstable" ]
"versions": [ "10", "11", "12", "13", "unstable" ]
},
{
"os": "linux",
Expand Down
Loading