From 7bc83036f0df39b5c10bbeaf48b6d8d9ea3d7a99 Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Nov 16 2019 11:49:31 +0000 Subject: Correct Python 3 conditionals in spec file (thanks to Michal Ambroz) --- diff --git a/macromilter.spec b/macromilter.spec index 1bd3884..28e3428 100644 --- a/macromilter.spec +++ b/macromilter.spec @@ -3,16 +3,16 @@ Name: macromilter URL: https://github.com/sbidy/MacroMilter Version: 3.7.0 License: MIT -%global baserelease 1 +%global baserelease 2 # Build from release or from git snapshot %bcond_without snapshot # Build python2 up till fc31 and rhel7, use python3 on fc32+ and rhel8+ -%if ( 0%{?fedora} && 0%{?fedora} >= 32 ) || ( 0%{?rhel} && 0%{?rhel} >= 7 ) -%bcond_with python3 -%else +%if ( 0%{?fedora} && 0%{?fedora} >= 32 ) || ( 0%{?rhel} && 0%{?rhel} >= 8 ) %bcond_without python3 +%else +%bcond_with python3 %endif %global gituser sbidy @@ -145,6 +145,12 @@ exit 0 %dir %attr(0750,%{name},%{name}) %{_localstatedir}/log/%{name}/ %changelog +* Sat Nov 16 2019 Robert Scheck 3.7.0-0.2.20191111git2761838 +- Correct Python 3 conditionals in spec file (thanks to Michal Ambroz) + +* Fri Nov 15 2019 Michal Ambroz - 3.7.0-0.1.20191111git2761838 +- Upgrade to 3.7.0 (GIT 20191111) (#1738083, #1770551) + * Thu Jul 25 2019 Fedora Release Engineering - 3.4.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild