-
Notifications
You must be signed in to change notification settings - Fork 3
/
dnf-plugin-ovl.spec
39 lines (28 loc) · 1 KB
/
dnf-plugin-ovl.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Name: dnf-plugin-ovl
Version: 0.0.4
Release: 1%{?dist}
Summary: Workaround to run dnf on overlayfs
URL: https://github.com/FlorianLudwig/dnf-plugin-ovl
License: GPLv2+
Source0: https://github.com/FlorianLudwig/dnf-plugin-ovl/archive/%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
Requires: python3-dnf
%description
Workaround to run dnf on overlayfs. A port of yum-plugin-ovl to dnf.
%prep
%autosetup
%build
%install
install -D -m 644 -p ovl.py %{buildroot}/%{python3_sitelib}/dnf-plugins/ovl.py
%files
%{python3_sitelib}/dnf-plugins/ovl.py
%{python3_sitelib}/dnf-plugins/__pycache__/ovl.*.pyc
%changelog
* Thu May 07 2020 Aaron D. Marasco <[email protected]> - 0.0.4-1
- Fix overlayfs detection on CentOS 8 / RHEL 8 / Red Hat's UBI images
* Mon Nov 05 2018 Till Hofmann <[email protected]> - 0.0.1-2
- Add missing Requires and BuildRequires
- Make package noarch
* Sun Feb 25 2018 Florian Ludwig <[email protected]> - 0.0.1-1
- Initial package