From: Eric S. Raymond Date: Sun, 9 Dec 2012 01:37:32 +0000 (-0500) Subject: Prepare 1.15 release, with a minor bugfix in the Subversion hook.. X-Git-Tag: 1.15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2168978412725d6216ce0d8e346f887c8bfb9101;p=irker.git Prepare 1.15 release, with a minor bugfix in the Subversion hook.. --- diff --git a/NEWS b/NEWS index 0968f0b..b03c2b4 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ irker history -1.14 @ 2012-12-26 +1.15 @ 2012-12-08 + Don't append an extra newline in the Subversion hook. + +1.14 @ 2012-11-26 irclib 5.0 and urlparse compatibility fixes. 1.13 @ 2012-11-06 diff --git a/irkerd b/irkerd index 884fe6d..5f90fdc 100755 --- a/irkerd +++ b/irkerd @@ -42,7 +42,7 @@ CONNECTION_MAX = 200 # To avoid hitting a thread limit # No user-serviceable parts below this line -version = "1.14" +version = "1.15" import sys, getopt, urlparse, time, random, socket, signal import threading, Queue, SocketServer diff --git a/irkerhook.py b/irkerhook.py index 4434aa0..59bd796 100755 --- a/irkerhook.py +++ b/irkerhook.py @@ -37,7 +37,7 @@ default_channels = "irc://chat.freenode.net/#commits" # No user-serviceable parts below this line: # -version = "1.14" +version = "1.15" import os, sys, commands, socket, urllib, subprocess, locale from pipes import quote as shellquote @@ -300,7 +300,7 @@ class SvnExtractor(GenericExtractor): commit.rev = "r%s" % self.id commit.author = self.svnlook("author") commit.files = self.svnlook("dirs-changed").strip().replace("\n", " ") - commit.logmsg = self.svnlook("log").strip() + "\n" + commit.logmsg = self.svnlook("log").strip() return commit def svnlook(self, info): return do("svnlook %s %s --revision %s" % (shellquote(info), shellquote(self.repository), shellquote(self.id)))