From 37bafdf91a1aa65b9d88b5f6af8af614b8c2b2d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 9 Feb 2014 14:19:54 +0200 Subject: [PATCH] Make default config Python 3 compatible. --- rpmlint.config | 2 +- rpmlint.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/rpmlint.config b/rpmlint.config index 59e78ce..540b5ab 100644 --- a/rpmlint.config +++ b/rpmlint.config @@ -21,7 +21,7 @@ setOption("UseDefaultRunlevels", False) setOption("UseEpoch", False) setOption("UseUTF8", True) setOption("UseVersionInChangeLog", True) -setOption("ValidSrcPerms", (0664, 0644, )) +setOption("ValidSrcPerms", (int("664",8), int("644",8), )) setOption("ValidShells", ( "", diff --git a/rpmlint.spec b/rpmlint.spec index 674ef03..bb2a6b2 100644 --- a/rpmlint.spec +++ b/rpmlint.spec @@ -1,6 +1,6 @@ Name: rpmlint Version: 1.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tool for checking common errors in RPM packages Group: Development/Tools @@ -111,6 +111,9 @@ make check %changelog +* Sun Feb 9 2014 Ville Skyttä - 1.5-7 +- Make default config Python 3 compatible. + * Thu Dec 12 2013 Tom Callaway - 1.5-6 - fix unicode naming bug (bz 1036310)