From fbbc0f0c766ce42c3f2b487e2154603ee5b7e007 Mon Sep 17 00:00:00 2001 From: Stuart Cardall Date: Thu, 8 Sep 2016 19:46:40 +0000 Subject: community/syslog-summary: new aport https://github.com/dpaleino/syslog-summary Summarize the contents of a syslog log file / useful with logcheck Patched to support: - new thread safe version of python-magic - socklog --- community/syslog-summary/02-new-python-magic.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 community/syslog-summary/02-new-python-magic.patch (limited to 'community/syslog-summary/02-new-python-magic.patch') diff --git a/community/syslog-summary/02-new-python-magic.patch b/community/syslog-summary/02-new-python-magic.patch new file mode 100644 index 0000000000..5e0f231af5 --- /dev/null +++ b/community/syslog-summary/02-new-python-magic.patch @@ -0,0 +1,16 @@ +## use the new thread safe version of python-magic not the original ## + +--- syslog-summary-1.14/syslog-summary ++++ syslog-summary-1.14/syslog-summary.new +@@ -130,9 +130,8 @@ + """Returns True if the filename is a gzipped compressed file""" + try: + import magic +- ms = magic.open(magic.MAGIC_NONE) +- ms.load() +- if re.search("^gzip compressed data.*", ms.file(filename)): ++ ms = magic.from_file(filename) ++ if re.search("^gzip compressed data.*", ms): + return True + else: + return False -- cgit v1.2.3