Module: tools Branch: master Commit: acf379aad4658d98ce3e189c587d84634ba9c471 URL: http://source.winehq.org/git/tools.git/?a=commit;h=acf379aad4658d98ce3e189c5...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Aug 29 16:44:26 2012 +0200
testbot/bin: CVS is not used anymore so remove WineCvsHandler.pl.
---
testbot/bin/WineCvsHandler.pl | 35 ----------------------------------- 1 files changed, 0 insertions(+), 35 deletions(-)
diff --git a/testbot/bin/WineCvsHandler.pl b/testbot/bin/WineCvsHandler.pl deleted file mode 100755 index 02f807a..0000000 --- a/testbot/bin/WineCvsHandler.pl +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/perl -Tw -# -# Tell the engine to expect a winetest.exe update on test.winehq.org -# -# Copyright 2009 Ge van Geldorp -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - -use strict; - -my $Dir; -sub BEGIN -{ - $0 =~ m=^(.*)/[^/]*$=; - $Dir = $1; -} -use lib "$Dir/../lib"; - -use WineTestBot::Engine::Notify; - -ExpectWinetestUpdate(); - -exit 0;