Remove Python 2 support
https://bugzilla.redhat.com/show_bug.cgi?id=1801932
This commit is contained in:
parent
09c9de5dbe
commit
54fb203609
1 changed files with 6 additions and 6 deletions
|
|
@ -1,14 +1,12 @@
|
|||
Name: flatpak-runtime-config
|
||||
Version: 30
|
||||
Release: 3%{?dist}
|
||||
Version: 32
|
||||
Release: 1%{?dist}
|
||||
Summary: Configuration files that live inside the flatpak runtime
|
||||
Source1: 50-flatpak.conf
|
||||
Source2: usercustomize.py
|
||||
|
||||
License: MIT
|
||||
|
||||
BuildRequires: python2
|
||||
BuildRequires: python2-rpm-macros
|
||||
BuildRequires: python3
|
||||
BuildRequires: python3-rpm-macros
|
||||
|
||||
|
|
@ -31,7 +29,7 @@ mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d
|
|||
install -t $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d -p -m 0644 %{SOURCE1}
|
||||
|
||||
# usercustomize.py to set up Python paths
|
||||
for d in %{python2_sitelib} %{python3_sitelib} ; do
|
||||
for d in %{python3_sitelib} ; do
|
||||
mkdir -p $RPM_BUILD_ROOT/$d
|
||||
install -t $RPM_BUILD_ROOT/$d -m 0644 %{SOURCE2}
|
||||
done
|
||||
|
|
@ -64,12 +62,14 @@ HOME=/root /usr/bin/fc-cache -s
|
|||
%files
|
||||
%dir %{_prefix}/cache
|
||||
%dir %{_prefix}/cache/fontconfig
|
||||
%{python2_sitelib}
|
||||
%{python3_sitelib}
|
||||
%{_sysconfdir}/fonts/conf.d/*
|
||||
%{_sysconfdir}/ld.so.conf.d/app.conf
|
||||
|
||||
%changelog
|
||||
* Fri Mar 06 2020 Kalev Lember <klember@redhat.com> - 32-1
|
||||
- Remove Python 2 support (#1801932)
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 30-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Reference in a new issue