[Pkg-ocaml-maint-commits] [SCM] pkglab packaging branch, master, updated. debian/1.4.2-4-28-gddd9fab

Ralf Treinen treinen at free.fr
Fri Jan 15 09:15:41 UTC 2010


The following commit has been merged in the master branch:
commit 50fb7db42554fcbf1e72e3ffe4cc5253c1c0a6c0
Author: Ralf Treinen <treinen at free.fr>
Date:   Fri Jan 15 09:53:40 2010 +0100

    fxed a bug wih printing of vesion numbers having a release part

diff --git a/debian/changelog b/debian/changelog
index 02adcea..0cf3ac5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+pkglab (1.4.2-8) unstable; urgency=low
+
+  * distcheck/common.ml: fixed function spec_string to print a 
+    dash between upstream version and release (closes: 565324).
+
+ -- Ralf Treinen <treinen at debian.org>  Fri, 15 Jan 2010 09:52:37 +0100
+
 pkglab (1.4.2-7) unstable; urgency=low
 
   * Remove temporary file on exit (closes: #565152).
diff --git a/distcheck/common.ml b/distcheck/common.ml
index f439ef0..6465f63 100644
--- a/distcheck/common.ml
+++ b/distcheck/common.ml
@@ -129,7 +129,7 @@ let spec_string s =
   let version_string (v, r) =
     let vn = Version_index.get_version v
     and rn = Release_index.get_version r in
-      vn ^ (match rn with None -> "" | Some r -> r) in
+      vn ^ (match rn with None -> "" | Some r -> ("-".r)) in
     if !output_xml
     then
       match s with

-- 
pkglab packaging



More information about the Pkg-ocaml-maint-commits mailing list