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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
fedora_version: [41, 42, 43]
fedora_version: [41, 42, 43, 44]
container:
image: fedora:${{ matrix.fedora_version }}

Expand Down Expand Up @@ -103,4 +103,4 @@ jobs:
name: srpm-fedora-${{ matrix.fedora_version }}
path: ~/rpmbuild/SRPMS/libdnf5-plugin-snapper-*.src.rpm
retention-days: 30
compression-level: 0
compression-level: 0
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
strategy:
fail-fast: false
matrix:
fedora_version: [42, 43]
fedora_version: [42, 43, 44]
container:
image: fedora:${{ matrix.fedora_version }}

Expand Down Expand Up @@ -205,6 +205,18 @@ jobs:
name: srpm-fc43
path: artifacts/

- name: Download FC44 RPMs
uses: actions/download-artifact@v4
with:
name: rpms-fc44
path: artifacts/

- name: Download FC44 SRPM
uses: actions/download-artifact@v4
with:
name: srpm-fc44
path: artifacts/

- name: List all artifacts
run: |
echo "Release artifacts:"
Expand Down
6 changes: 2 additions & 4 deletions libdnf5-plugin-snapper.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Summary: Snapper plugin for DNF5 - automatic filesystem snapshots

License: LGPL-2.1-or-later
URL: https://github.com/plenvorik/libdnf5-plugin-snapper
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz

BuildRequires: cmake >= 3.18
BuildRequires: gcc-c++
Expand All @@ -17,7 +17,6 @@ BuildRequires: catch2-devel

Requires: libdnf5%{?_isa} >= 5.0
Requires: snapper-libs%{?_isa} >= 0.10
Requires: dnf5

# Suggests the old plugin should be removed if installed
Obsoletes: python3-dnf-plugin-snapper < 5.0
Expand Down Expand Up @@ -54,7 +53,6 @@ Features:
%license COPYING
%doc README.md
%doc CHANGELOG.md
%dir %{_sysconfdir}/dnf/libdnf5-plugins
%config(noreplace) %{_sysconfdir}/dnf/libdnf5-plugins/snapper.conf
%{_libdir}/libdnf5/plugins/snapper.so

Expand All @@ -67,4 +65,4 @@ Features:
- Code cleanup and fix snapshot read-only behavior

* Tue Sep 30 2025 Andre Herrlich <plenvorik@gmail.com> - 1.0.0-1
- Initial release with automatic pre/post transaction snapshots via libsnapper API
- Initial release with automatic pre/post transaction snapshots via libsnapper API