Skip to content

Commit

Permalink
FreeBSD quarterly repo is now missing mapnik (#348)
Browse files Browse the repository at this point in the history
Mapnik v3.1.0 requires a patch in order to support Boost v1.8.3.

A fix has been applied, but has not yet made it into the quarterly repository:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274166
  • Loading branch information
hummeltech authored Oct 28, 2023
1 parent c2896c7 commit 2577716
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@ jobs:
cpus: ${{ env.BUILD_PARALLEL_LEVEL }}
memory: 4096

# Mapnik is not in the `quarterly` repository (2023.10.12)
- name: Use "latest" repository
run: |
sudo mkdir -p /usr/local/etc/pkg/repos
sed 's#/quarterly#/latest#g' /etc/pkg/FreeBSD.conf | sudo tee /usr/local/etc/pkg/repos/FreeBSD.conf
sudo pkg upgrade
- name: Install dependencies
uses: ./.github/actions/dependencies/install

Expand Down
4 changes: 4 additions & 0 deletions docs/build/building_on_freebsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Please see our [Continuous Integration script](/.github/workflows/build-and-test
```shell
#!/usr/bin/env sh

# Mapnik is not in the `quarterly` repository (2023.10.12)
sudo mkdir -p /usr/local/etc/pkg/repos
sudo sed 's#/quarterly#/latest#g' /etc/pkg/FreeBSD.conf > /usr/local/etc/pkg/repos/FreeBSD.conf

# Update installed packages
sudo pkg upgrade --yes

Expand Down

0 comments on commit 2577716

Please sign in to comment.