Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
# Installs the build dependencies
- name: Install build depends
run: |
echo "APT::Get::Always-Include-Phased-Updates \"true\";" | sudo tee /etc/apt/apt.conf.d/90phased-updates
sudo sed -i 's/Types: deb/Types: deb deb-src/g' /etc/apt/sources.list.d/ubuntu.sources
sudo apt update
sudo apt install meson python3-coverage python3-pytest python3-pytest-cov libcmocka-dev python3-cffi libpython3-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rpmbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- fedora:latest
- almalinux:10-kitten
- almalinux:10
- almalinux:9
# - almalinux:9 # lacking meson >= 1.3.0
container:
image: ${{ matrix.container }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project('netplan', 'c',
'warning_level=2',
'werror=true',
],
meson_version: '>= 0.61.0',
meson_version: '>= 1.3.0',
)

glib = dependency('glib-2.0')
Expand Down
1 change: 1 addition & 0 deletions python-cffi/netplan/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ cffi_pyext = python.extension_module(
link_with: [libnetplan],
subdir: 'netplan',
install: true,
limited_api: '3.10',
)

bindings_sources = [
Expand Down
4 changes: 2 additions & 2 deletions rpm/netplan.spec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ URL: http://netplan.io/
Source0: https://github.com/canonical/%{name}/archive/%{version}/%{name}-%{version}.tar.gz

BuildRequires: gcc
BuildRequires: meson
BuildRequires: meson >= 1.3
BuildRequires: pkgconfig(bash-completion)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gio-2.0)
Expand Down Expand Up @@ -308,4 +308,4 @@ EOF
- Rebase to 0.30

* Sun Jul 2 2017 Neal Gompa <ngompa13@gmail.com> - 0.23~17.04.1-1
- Initial packaging
- Initial packaging
Loading