[Pkg-erlang-commits] r1099 - in manderlbot/trunk/debian: . patches

sgolovan at alioth.debian.org sgolovan at alioth.debian.org
Thu Oct 1 20:38:02 UTC 2009


Author: sgolovan
Date: 2009-10-01 20:38:02 +0000 (Thu, 01 Oct 2009)
New Revision: 1099

Added:
   manderlbot/trunk/debian/README.source
Modified:
   manderlbot/trunk/debian/changelog
   manderlbot/trunk/debian/control
   manderlbot/trunk/debian/patches/r13.diff
Log:
[manderlbot]
  * New maintainer's email address pkg-erlang-devel at lists.alioth.debian.org
    mailing list.
  * Fixed two small bugs in bloto and fortune behaviors.
  * Use ${erlang:Depends} subst variable which expands into automatically
    calculated dependencies by erlang-depends.
  * Added debian/README.source file with a reference to
    /usr/share/doc/quilt/README.source.
  * Bumped standards version to 3.8.3.


Added: manderlbot/trunk/debian/README.source
===================================================================
--- manderlbot/trunk/debian/README.source	                        (rev 0)
+++ manderlbot/trunk/debian/README.source	2009-10-01 20:38:02 UTC (rev 1099)
@@ -0,0 +1,8 @@
+This package uses quilt to manage all modifications to the upstream
+source. Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To get detailed instructions on how to apply the series of patches
+and modify them, please read /usr/share/doc/quilt/README.source
+
+ -- Sergei Golovan <sgolovan at debian.org>  Wed, 30 Sep 2009 14:53:10 +0400

Modified: manderlbot/trunk/debian/changelog
===================================================================
--- manderlbot/trunk/debian/changelog	2009-10-01 20:04:58 UTC (rev 1098)
+++ manderlbot/trunk/debian/changelog	2009-10-01 20:38:02 UTC (rev 1099)
@@ -1,8 +1,15 @@
-manderlbot (0.9.2-17) UNRELEASED; urgency=low
+manderlbot (0.9.2-17) unstable; urgency=low
 
-  * NOT RELEASED YET
+  * New maintainer's email address pkg-erlang-devel at lists.alioth.debian.org
+    mailing list.
+  * Fixed two small bugs in bloto and fortune behaviors.
+  * Use ${erlang:Depends} subst variable which expands into automatically
+    calculated dependencies by erlang-depends.
+  * Added debian/README.source file with a reference to
+    /usr/share/doc/quilt/README.source.
+  * Bumped standards version to 3.8.3.
 
- -- Sergei Golovan <sgolovan at debian.org>  Mon, 29 Jun 2009 10:47:41 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Fri, 02 Oct 2009 00:29:28 +0400
 
 manderlbot (0.9.2-16) unstable; urgency=low
 

Modified: manderlbot/trunk/debian/control
===================================================================
--- manderlbot/trunk/debian/control	2009-10-01 20:04:58 UTC (rev 1098)
+++ manderlbot/trunk/debian/control	2009-10-01 20:38:02 UTC (rev 1099)
@@ -1,15 +1,15 @@
 Source: manderlbot
 Section: net
 Priority: optional
-Maintainer: Erlang Packagers <erlang-pkg-devel at lists.berlios.de>
+Maintainer: Debian Erlang Packagers <pkg-erlang-devel at lists.alioth.debian.org>
 Uploaders: Sergei Golovan <sgolovan at debian.org>
 Build-Depends: debhelper (>= 5.0.0), quilt
-Build-Depends-Indep: erlang-dev (>= 1:13.b), lyx, docbook, docbook-utils, hevea, cm-super
-Standards-Version: 3.8.2
+Build-Depends-Indep: erlang-dev (>= 1:13.b.1-dfsg-3), lyx, docbook, docbook-utils, hevea, cm-super
+Standards-Version: 3.8.3
 
 Package: manderlbot
 Architecture: all
-Depends: ${erlang-inets:Depends}, ${erlang-xmerl:Depends}
+Depends: ${erlang:Depends}
 Description: An IRC bot, written in Erlang
  Manderlbot is an IRC bot with XML configuration file, allowing you to launch
  it on several servers and channels at once, each channel will have its own

Modified: manderlbot/trunk/debian/patches/r13.diff
===================================================================
--- manderlbot/trunk/debian/patches/r13.diff	2009-10-01 20:04:58 UTC (rev 1098)
+++ manderlbot/trunk/debian/patches/r13.diff	2009-10-01 20:38:02 UTC (rev 1099)
@@ -1,4 +1,4 @@
-Patch by Sergei Golovan replaces obsolete function calls.
+Patch by Sergei Golovan replaces obsolete function calls and fixes typos.
 
 --- manderlbot-0.9.2.orig/priv/builder.erl
 +++ manderlbot-0.9.2/priv/builder.erl
@@ -246,3 +246,25 @@
  		    {ok, Buffer ++ binary_to_list(Data)};
  		NoMatch ->
  		    getData(Sock, Buffer ++ binary_to_list(Data))
+--- manderlbot-0.9.2.orig/src/mdb_bhv_bloto.erl
++++ manderlbot-0.9.2/src/mdb_bhv_bloto.erl
+@@ -60,7 +60,7 @@
+ behaviour(Input, BotName, Data, BotPid, Channel) ->
+     [NickFrom|IpFrom] = string:tokens(Input#data.header_from, "!"),
+ 
+-    case bloto:add(NickFrom, Channel) of
++    case add(NickFrom, Channel) of
+ 	{winner, Nick} ->
+ 	    mdb_bot:say(BotPid, Nick ++ " " ++ Data);
+ 
+--- manderlbot-0.9.2.orig/src/mdb_bhv_fortune.erl
++++ manderlbot-0.9.2/src/mdb_bhv_fortune.erl
+@@ -45,7 +45,7 @@
+ 
+     {A, B, C} = now(),
+     random:seed(A, B, C),
+-    list:foreach(fun(Message) ->
++    lists:foreach(fun(Message) ->
+ 			 mdb_bot:say(BotPid, Message, NickFrom)
+ 		 end,
+ 		 lists:nth(random:uniform(length(Data)), Data));




More information about the Pkg-erlang-commits mailing list