[Pkg-cli-libs-commits] r4137 - in /packages/boo/trunk/debian: changelog control patches/00list patches/nodecollection-ftbfs.dpatch

laney-guest at users.alioth.debian.org laney-guest at users.alioth.debian.org
Sun Mar 8 00:02:20 UTC 2009


Author: laney-guest
Date: Sun Mar  8 00:02:19 2009
New Revision: 4137

URL: http://svn.debian.org/wsvn/pkg-cli-libs/?sc=1&rev=4137
Log:
* debian/patches/nodecollection-ftbfs.dpatch: Add. Use value of correct type
  when replacing nodes.
* debian/control:
   + Add ${misc:Depends} to all binary packages
   + Bump standards-version to 3.8.0.
* debian/control: Update build-deps for Mono 2.0 transition. nant handles
  the rest.

Added:
    packages/boo/trunk/debian/patches/nodecollection-ftbfs.dpatch   (with props)
Modified:
    packages/boo/trunk/debian/changelog
    packages/boo/trunk/debian/control
    packages/boo/trunk/debian/patches/00list

Modified: packages/boo/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-libs/packages/boo/trunk/debian/changelog?rev=4137&op=diff
==============================================================================
--- packages/boo/trunk/debian/changelog (original)
+++ packages/boo/trunk/debian/changelog Sun Mar  8 00:02:19 2009
@@ -1,3 +1,15 @@
+boo (0.8.1.2865-3) UNRELEASED; urgency=low
+
+  * debian/patches/nodecollection-ftbfs.dpatch: Add. Use value of correct type
+    when replacing nodes.
+  * debian/control:
+     + Add ${misc:Depends} to all binary packages
+     + Bump standards-version to 3.8.0.
+  * debian/control: Update build-deps for Mono 2.0 transition. nant handles
+    the rest.
+
+ -- Iain Lane <laney at ubuntu.com>  Sat, 07 Mar 2009 23:52:36 +0000
+
 boo (0.8.1.2865-2) unstable; urgency=high
 
   * debian/libboo2.0-cil.install

Modified: packages/boo/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-cli-libs/packages/boo/trunk/debian/control?rev=4137&op=diff
==============================================================================
--- packages/boo/trunk/debian/control (original)
+++ packages/boo/trunk/debian/control Sun Mar  8 00:02:19 2009
@@ -3,17 +3,21 @@
 Priority: optional
 Maintainer: Debian CLI Libraries Team <pkg-cli-libs-team at lists.alioth.debian.org>
 Uploaders: Sam Clegg <samo at debian.org>, Mirco Bauer <meebey at debian.org>
-Build-Depends: debhelper (>= 5), nant, cdbs, dpatch
-Build-Depends-Indep: cli-common-dev (>= 0.5.6), mono-gmcs (>= 1.1.8) | c-sharp-2.0-compiler, mono-gac | global-assembly-cache-tool, mono-2.0-devel
+Build-Depends: debhelper (>= 5),
+               nant,
+               cdbs,
+               dpatch
+Build-Depends-Indep: cli-common-dev (>= 0.5.6),
+                     mono-devel (>= 2.0)
 Build-Conflicts: boo (< 0.8.0.2730)
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://boo.codehaus.org/
 Vcs-Svn: svn://svn.debian.org/pkg-cli-libs/packages/boo/trunk
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-cli-libs/packages/boo/trunk/
 
 Package: boo
 Architecture: all
-Depends: ${cli:Depends}, libmono2.0-cil
+Depends: ${cli:Depends}, ${misc:Depends}, libmono2.0-cil
 Description: python-like language and compiler for the CLI
  Boo is an object oriented statically typed programming language
  for the Common Language Infrastructure (CLI) with a Python inspired
@@ -28,7 +32,7 @@
 Section: libs
 Architecture: all
 Replaces: boo (<= 0.8.0.2730-2)
-Depends: ${cli:Depends}
+Depends: ${cli:Depends}, ${misc:Depends}
 Description: python-like language and compiler for the CLI - library files
  Boo is an object oriented statically typed programming language
  for the Common Language Infrastructure (CLI) with a Python inspired

Modified: packages/boo/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-cli-libs/packages/boo/trunk/debian/patches/00list?rev=4137&op=diff
==============================================================================
--- packages/boo/trunk/debian/patches/00list (original)
+++ packages/boo/trunk/debian/patches/00list Sun Mar  8 00:02:19 2009
@@ -1,1 +1,2 @@
 fix_boo.pc.in
+nodecollection-ftbfs

Added: packages/boo/trunk/debian/patches/nodecollection-ftbfs.dpatch
URL: http://svn.debian.org/wsvn/pkg-cli-libs/packages/boo/trunk/debian/patches/nodecollection-ftbfs.dpatch?rev=4137&op=file
==============================================================================
--- packages/boo/trunk/debian/patches/nodecollection-ftbfs.dpatch (added)
+++ packages/boo/trunk/debian/patches/nodecollection-ftbfs.dpatch Sun Mar  8 00:02:19 2009
@@ -1,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## nodecollection-ftbfs.dpatch by Iain Lane <laney at ubuntu.com>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Fixes a type error in a comparison in NodeCollection.cs
+
+ at DPATCH@
+diff -urNad boo-0.8.1.2865~/src/Boo.Lang.Compiler/Ast/NodeCollection.cs boo-0.8.1.2865/src/Boo.Lang.Compiler/Ast/NodeCollection.cs
+--- boo-0.8.1.2865~/src/Boo.Lang.Compiler/Ast/NodeCollection.cs	2007-12-09 14:51:00.000000000 +0000
++++ boo-0.8.1.2865/src/Boo.Lang.Compiler/Ast/NodeCollection.cs	2009-03-07 23:43:13.000000000 +0000
+@@ -274,7 +274,7 @@
+ 			AssertNotNull("existing", existing);
+ 			for (int i = 0; i < _list.Count; ++i)
+ 			{
+-				if (_list[i] == existing)
++				if (this[i] == existing)
+ 				{
+ 					if (null == newItem)
+ 					{

Propchange: packages/boo/trunk/debian/patches/nodecollection-ftbfs.dpatch
------------------------------------------------------------------------------
    svn:executable = *




More information about the Pkg-cli-libs-commits mailing list