The unified diff between revisions [5918e9c8..] and [81139096..] is displayed below. It can also be downloaded as a raw diff.

#
#
# patch "debian/ALDH.DEV_PKG.examples"
#  from [896f8a99698eba15ba402220ec80bca4985f1751]
#    to [f0535f39f81dfc4e492a71ec9c92ca6896b1f93e]
#
# patch "debian/changelog"
#  from [6ca8679bf864e19cfdf97ec45c1e39ea80699214]
#    to [09274b5806e3e1dcbb1c0023ef900b5f76dea2f7]
#
# patch "debian/control"
#  from [9908decf16828f75e8a63ca3d3c8c3197a6cd88e]
#    to [f00abdc1afb25ab94d3e86486fde7ce7096b29e2]
#
# patch "debian/patches/rm_fstack_check"
#  from [3f4a815189b38ec345f7d4694d664709d40a8abe]
#    to [46233a57593c10ceaf86f6895735c4138ae82c7d]
#
============================================================
--- debian/ALDH.DEV_PKG.examples	896f8a99698eba15ba402220ec80bca4985f1751
+++ debian/ALDH.DEV_PKG.examples	f0535f39f81dfc4e492a71ec9c92ca6896b1f93e
@@ -1,6 +1,2 @@
 # debian/rules will preprocess and rename that file
-# demo/* would copy the examples created by dh_test
-demo/Makefile
-demo/demo.adb
-demo/demo.gpr
-demo/devel.gpr
+demo/*
============================================================
--- debian/changelog	6ca8679bf864e19cfdf97ec45c1e39ea80699214
+++ debian/changelog	09274b5806e3e1dcbb1c0023ef900b5f76dea2f7
@@ -1,9 +1,12 @@ libgmpada (0.0.20100805-1) unstable; urg
 libgmpada (0.0.20100805-1) unstable; urgency=low

   * New upstream release.
-  * Removed two patches integrated upstream, updated one.
+  * control: (Build-Depends) upstream now uses gprbuild.
+    (Standards-Version) Updated to 3.9.1.
+    Development package renaming, Conflicts & Replaces due to debian-ada-policy.
+  * patches: two integrated upstream, one updated.

- -- Nicolas Boulenguez <nicolas.boulenguez@free.fr>  Thu, 05 Aug 2010 15:02:55 +0200
+ -- Nicolas Boulenguez <nicolas.boulenguez@free.fr>  Thu, 05 Aug 2010 16:45:30 +0200

 libgmpada (0.0.20091124-4) unstable; urgency=low

============================================================
--- debian/control	9908decf16828f75e8a63ca3d3c8c3197a6cd88e
+++ debian/control	f00abdc1afb25ab94d3e86486fde7ce7096b29e2
@@ -3,15 +3,17 @@ DM-Upload-Allowed: yes
 Priority: extra
 Maintainer: Nicolas Boulenguez <nicolas.boulenguez@free.fr>
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 7.0.50~), gnat, gnat-4.4, libgmp3-dev, libmpfr-dev
-Standards-Version: 3.9.0.0
+Build-Depends: debhelper (>= 7.0.50~), gnat, gnat-4.4, libgmp3-dev, libmpfr-dev, gprbuild
+Standards-Version: 3.9.1
 Vcs-Browser: http://www.ada-france.org:8081/branch/changes/org.debian.libgmpada
 Vcs-Mtn: www.ada-france.org org.debian.libgmpada
 Homepage: http://mtn-host.prjek.net/projects/libgmpada

-Package: libgmpada1-dev
+Package: libgmpada2-dev
 Architecture: any
 Depends: ${misc:Depends}, gnat, gnat-4.4, ada-compiler, libgmpada1 (= ${binary:Version})
+Conflicts: libgmpada1-dev
+Replaces: libgmpada1-dev
 Description: Ada binding to the GNU MultiPrecision library: development
  GMPAda allows programmers to use the GNU MultiPrecision library
  within the Ada language: unbounded integers, rationals and
@@ -37,7 +39,7 @@ Depends: ${misc:Depends}, libgmpada1 (=
 Section: debug
 Architecture: any
 Depends: ${misc:Depends}, libgmpada1 (= ${binary:Version})
-Recommends: libgmpada1-dev (= ${binary:Version})
+Recommends: libgmpada2-dev (= ${binary:Version})
 Suggests: gnat, gnat-4.4, ada-compiler
 Description: Ada binding to the GNU MultiPrecision library: debug symbols
  GMPAda allows programmers to use the GNU MultiPrecision library
============================================================
--- debian/patches/rm_fstack_check	3f4a815189b38ec345f7d4694d664709d40a8abe
+++ debian/patches/rm_fstack_check	46233a57593c10ceaf86f6895735c4138ae82c7d
@@ -5,18 +5,19 @@ Index: b/Makefile_test.gpr
 Index: b/Makefile_test.gpr
 ===================================================================
 --- a/Makefile_test.gpr	2010-08-05 14:58:55.000000000 +0200
-+++ b/Makefile_test.gpr	2010-08-05 14:59:44.000000000 +0200
-@@ -33,11 +33,11 @@
++++ b/Makefile_test.gpr	2010-08-05 15:07:46.000000000 +0200
+@@ -32,12 +32,10 @@
+         "-gnaty",         --  all style checks
          "-gnatyM159",     --  max line length
          "-gnato",         --  runtime overflow checking
-         "-gnatE",         --  checks for access-before-elaboration
+-        "-gnatE",         --  checks for access-before-elaboration
 -        "-fstack-check"); --  stack overflow checking
-+       );                 --  stack overflow checking
++        "-gnatE");        --  checks for access-before-elaboration
       for Default_Switches ("C") use
         ("-g",                       --  debugging information
-         "-Wall", "-Wextra",         --  activate all optional warnings
+-        "-Wall", "-Wextra",         --  activate all optional warnings
 -        "-fstack-check");           --  stack overflow checking
-+       );			    --  stack overflow checking
++        "-Wall", "-Wextra");        --  activate all optional warnings
    end Compiler;
    package Linker is
       for Default_Switches ("Ada") use ("-lgmp", "-lmpfr");