Your message dated Fri, 16 Mar 2012 21:34:03 +0000
with message-id <[email protected]>
and subject line Bug#663666: fixed in geneweb 6.04-1
has caused the Debian Bug report #663666,
regarding FTBFS with camlp5 6.05
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
663666: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663666
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:geneweb
Version: 6.03-1
Severity: wishlist
Tags: patch

Dear Maintainer,

Your package fails to build from source with camlp5 6.05 (not yet
uploaded, but available in git [1]). I've lost the build log, but the
failure is basically due to the removal of Stdpp.Exc_located (which
has been deprecated for a while, and was an alias to Ploc.Exc in
6.04). The attached patch fixes the compilation.

[1] http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/camlp5.git


Cheers,

-- 
Stéphane

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Description: Fix FTBFS with camlp5 6.05
Author: Stephane Glondu <[email protected]>

--- geneweb-6.03.orig/src/srcfile.ml
+++ geneweb-6.03/src/srcfile.ml
@@ -192,7 +192,7 @@ END;
 
 value extract_date d =
   try Some (G.Entry.parse date (G.parsable (Stream.of_string d))) with
-  [ Stdpp.Exc_located _ (Stream.Error _ | Token.Error _) -> None ]
+  [ Ploc.Exc _ (Stream.Error _ | Token.Error _) -> None ]
 ;
 
 value string_of_start_date conf =
--- geneweb-6.03.orig/src/gwd.ml
+++ geneweb-6.03/src/gwd.ml
@@ -1804,7 +1804,7 @@ value robot_exclude_arg s =
     robot_xcl.val :=
       Some (G.Entry.parse robot_xcl_arg (G.parsable (Stream.of_string s)))
   with
-  [ Stdpp.Exc_located _ (Stream.Error _ | Token.Error _) ->
+  [ Ploc.Exc _ (Stream.Error _ | Token.Error _) ->
       do {
         eprintf "Bad use of option -robot_xcl\n";
         eprintf "Use option -help for usage.\n";
--- geneweb-6.03.orig/ged2gwb/ged2gwb2.ml
+++ geneweb-6.03/ged2gwb/ged2gwb2.ml
@@ -754,10 +754,10 @@ value date_of_field pos d =
     let s = Stream.of_string (String.uppercase d) in
     date_str.val := d;
     try Some (Grammar.Entry.parse date_value s) with
-    [ Stdpp.Exc_located loc (Stream.Error _) ->
+    [ Ploc.Exc loc (Stream.Error _) ->
         let s = Stream.of_string (String.uppercase d) in
         try Some (Grammar.Entry.parse date_value_recover s) with
-        [ Stdpp.Exc_located loc (Stream.Error _) -> Some (Dtext d) ] ]
+        [ Ploc.Exc loc (Stream.Error _) -> Some (Dtext d) ] ]
   }
 ;
 
@@ -1224,7 +1224,7 @@ value decode_date_interval pos s =
     | Begin d -> (Some d, None)
     | End d -> (None, Some d) ]
   with
-  [ Stdpp.Exc_located _ _ | Not_found ->
+  [ Ploc.Exc _ _ | Not_found ->
       do { print_bad_date pos s; (None, None) } ]
 ;
 
@@ -2550,7 +2550,7 @@ The database \"%s\" already exists. Use
 try main () with e ->
   let e =
     match e with
-    [ Stdpp.Exc_located _ e -> e
+    [ Ploc.Exc _ e -> e
     |  _ -> e ]
   in
   do {
--- geneweb-6.03.orig/ged2gwb/ged2gwb.ml
+++ geneweb-6.03/ged2gwb/ged2gwb.ml
@@ -857,10 +857,10 @@ value date_of_field pos d =
     let s = Stream.of_string (String.uppercase d) in
     date_str.val := d;
     try Some (Grammar.Entry.parse date_value s) with
-    [ Stdpp.Exc_located loc (Stream.Error _) ->
+    [ Ploc.Exc loc (Stream.Error _) ->
         let s = Stream.of_string (String.uppercase d) in
         try Some (Grammar.Entry.parse date_value_recover s) with
-        [ Stdpp.Exc_located loc (Stream.Error _) -> Some (Dtext d) ] ]
+        [ Ploc.Exc loc (Stream.Error _) -> Some (Dtext d) ] ]
   }
 ;
 
@@ -1327,7 +1327,7 @@ value decode_date_interval pos s =
     | Begin d -> (Some d, None)
     | End d -> (None, Some d) ]
   with
-  [ Stdpp.Exc_located _ _ | Not_found ->
+  [ Ploc.Exc _ _ | Not_found ->
       do { print_bad_date pos s; (None, None) } ]
 ;
 
@@ -2968,7 +2968,7 @@ The database \"%s\" already exists. Use
 try main () with e ->
   let e =
     match e with
-    [ Stdpp.Exc_located _ e -> e
+    [ Ploc.Exc _ e -> e
     |  _ -> e ]
   in
   do {

--- End Message ---
--- Begin Message ---
Source: geneweb
Source-Version: 6.04-1

We believe that the bug you reported is fixed in the latest version of
geneweb, which is due to be installed in the Debian FTP archive:

geneweb_6.04-1.debian.tar.gz
  to main/g/geneweb/geneweb_6.04-1.debian.tar.gz
geneweb_6.04-1.dsc
  to main/g/geneweb/geneweb_6.04-1.dsc
geneweb_6.04-1_i386.deb
  to main/g/geneweb/geneweb_6.04-1_i386.deb
geneweb_6.04.orig.tar.bz2
  to main/g/geneweb/geneweb_6.04.orig.tar.bz2
gwsetup_6.04-1_i386.deb
  to main/g/geneweb/gwsetup_6.04-1_i386.deb
gwtp_6.04-1_i386.deb
  to main/g/geneweb/gwtp_6.04-1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Perrier <[email protected]> (supplier of updated geneweb package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Thu, 15 Mar 2012 22:34:41 +0100
Source: geneweb
Binary: geneweb gwtp gwsetup
Architecture: source i386
Version: 6.04-1
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier <[email protected]>
Changed-By: Christian Perrier <[email protected]>
Description: 
 geneweb    - genealogy software with web interface
 gwsetup    - utilities to configure and manipulate Geneweb databases
 gwtp       - web interface interacting with Geneweb databases
Closes: 663666
Changes: 
 geneweb (6.04-1) unstable; urgency=low
 .
   * New upstream release
   * Fix FTBFS with Camlp5 6.05. Closes: #663666
   * Drop no longer needed 015_fix-amd64.patch
   * Update Standards to 3.9.3 (checked)
Checksums-Sha1: 
 03b6ba18d95f0ca1f215cf69a922bf2cb76a23ea 1996 geneweb_6.04-1.dsc
 a7d35b898b3eb3b42e7b5e37dd538e1b9c7935b2 1241336 geneweb_6.04.orig.tar.bz2
 e333e38db44864d9855589fe49b0709e9e52d30a 111348 geneweb_6.04-1.debian.tar.gz
 f4db6cacbb0012815691fef687e9d641268e5c84 2974098 geneweb_6.04-1_i386.deb
 990c551c8935e5e907d153b27cf310561bacb3de 330972 gwtp_6.04-1_i386.deb
 8b883feeb89a5286799a8a8287f259d727f5d1e9 352958 gwsetup_6.04-1_i386.deb
Checksums-Sha256: 
 c358e5734da675593d6a3f4aa7a089d30848e27d92573fe6a3253be328fdf851 1996 
geneweb_6.04-1.dsc
 74401cde18c6a6ed1ad07d43b6b1c37207092871e6a626dc321e3d748561645b 1241336 
geneweb_6.04.orig.tar.bz2
 eacd3d03f4d53c6d268fc634a76d6ae72cd8c4eb05fc83977a7a01de0524e3cd 111348 
geneweb_6.04-1.debian.tar.gz
 1c4fb9558122f8df5ac98140dbc694340a3e490be9a635145d9f3fd80c23e204 2974098 
geneweb_6.04-1_i386.deb
 68a57146fa41ea38601c5e06739f15b3e48dbddd7925943c5956a952c56495ee 330972 
gwtp_6.04-1_i386.deb
 e36cfb04fce50ccb20d48662089860e6b2a9f011df953fdac4b7d3b086d7de82 352958 
gwsetup_6.04-1_i386.deb
Files: 
 ffcd47efbf653b91671f19395aec3b02 1996 misc optional geneweb_6.04-1.dsc
 e80a3899014e8561fe0d4a0e48e0cc02 1241336 misc optional 
geneweb_6.04.orig.tar.bz2
 fa4f38e1a0e851a2025a27fe37bd088c 111348 misc optional 
geneweb_6.04-1.debian.tar.gz
 7fc424c9052dd7fa285d940b456bb5ff 2974098 misc optional geneweb_6.04-1_i386.deb
 d9667b228531b848fb6a14cd56fdefab 330972 misc optional gwtp_6.04-1_i386.deb
 9c04ae0773c360fe89454d92e4cb766d 352958 misc optional gwsetup_6.04-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIVAwUBT2OuIocvcCxNbiWoAQJfHBAAg/leYPqAkYmUz9fqNC/rpYIpOxmAPRXH
gGpi6EC760GmVLSUq6d1NqHIyO9aIbKk9tM4GfjgrQeXyry1RPbHK33tiLdk1Mjh
V7dcbZr2+NOUzKftKMn6z3zoJN5b5ZaZsT8Dr9j8kpM7WmGxCp/H/vmQ5asSmf4J
YW6hN11cdhT8R6lPS49DbLbPkeZO+X4pSNUqHBNQs7RFhwHM4B10wA0QF0RGmy+M
urb/NtPdA9OhwyLyHa7QmA/SqCLHR8pWcHYXn74nFp5fnXgwzmyFoUr+j7Hmf1GN
iq8b+f8hgx45SSQEPWHgaA224HtvnNtFwPDDZmWQDYBZ/mDEl/jjcwKo5I3l/zSG
th5xdK0R3BDvab5F4hfVUUUrQDcKuTh3HhDDeAFbgfNVaqY63/gYTr7l1PkEaJsk
FeLrF8RlbSwagwWSO+GtIkfb1t8XJ3w7A7Mna1FOSWIs0hbhQ+3lj2g5zKU/LI+H
FdQgHPAfBxJHmJHO7CItN9+qO+9FHcqupcFtP+3lpu8JpWJyut4ypnga7WaorktW
rNtx8IslCwfrU9OwSULw2Mr1Dzopm4dM5BDSKA2UJbxPZ0N3MZqnhTv0NgxFaox7
ggWGrKNSinBMiUl8w4Y0wdJZFwHDPMiLwgKLjVabYsN2OaiZE9u3zoGl2nPUnMXX
z32dxcg7K0Y=
=7Bsx
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to