[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#752024: marked as done (amanda: FTBFS with Perl 5.20: needs SWIG regeneration)



Your message dated Tue, 05 Aug 2014 15:34:37 +0000
with message-id <E1XEgl3-0005XH-Px@franck.debian.org>
and subject line Bug#752024: fixed in amanda 1:3.3.6-1
has caused the Debian Bug report #752024,
regarding amanda: FTBFS with Perl 5.20: needs SWIG regeneration
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 owner@bugs.debian.org
immediately.)


-- 
752024: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752024
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: amanda
Version: 1:3.3.3-3
Severity: important
User: debian-perl@lists.debian.org
Usertags: perl-5.20-transition

This package fails to build with Perl 5.20 (currently in experimental):

  In file included from Amanda/Application.c:734:0:
  Amanda/Application.c: In function 'SWIG_AsCharPtrAndSize':
  /usr/lib/x86_64-linux-gnu/perl/5.20/CORE/handy.h:124:34: error: 'bool' undeclared (first use in this function)
   #define cBOOL(cbool) ((cbool) ? (bool)1 : (bool)0)
                                    ^
  [...]
  
  make[5]: *** [Application.lo] Error 1
  Makefile:2548: recipe for target 'Application.lo' failed
  make[5]: Leaving directory '/«PKGBUILDDIR»/perl'
  make[4]: *** [all-recursive] Error 1
  
This seems to be fixed in SWIG 2.0.8 by
 https://github.com/swig/swig/commit/4305a3cef9b210541c3b88ab2fd03d787c3bca66#diff-e00eca1bbacd9d243e51f4bf400b3000R63
but I don't know why the commit message claims it fixes problems with
Perl 5.16 while we encounter them only with the 5.18 -> 5.20 upgrade.

The attached patch fixes the build, but it modifies generated files.
A more correct fix would be a full regeneration step with current SWIG.

I've tested that the package builds both on current sid and with
perl_5.20.0-1 from experimental with the patch.
-- 
Niko Tyni   ntyni@debian.org
>From f55dacbd2f80ce1fb91bb52885b8154aa1ce1b3c Mon Sep 17 00:00:00 2001
From: Niko Tyni <ntyni@debian.org>
Date: Wed, 18 Jun 2014 22:32:01 +0300
Subject: [PATCH] Don't undefine bool if defined by C99 stdbool.h

This is adopted from swig 2.0.8, change
 https://github.com/swig/swig/commit/4305a3cef9b210541c3b88ab2fd03d787c3bca66#diff-e00eca1bbacd9d243e51f4bf400b3000R63

and fixes build failures with Perl 5.20.

Regenerating the files with a current swig version would
be a more correct fix.
---
 perl/Amanda/Application.c | 10 ++++++----
 perl/Amanda/Archive.c     | 10 ++++++----
 perl/Amanda/Cmdline.c     | 10 ++++++----
 perl/Amanda/Config.c      | 10 ++++++----
 perl/Amanda/Debug.c       | 10 ++++++----
 perl/Amanda/Device.c      | 10 ++++++----
 perl/Amanda/Disklist.c    | 10 ++++++----
 perl/Amanda/Feature.c     | 10 ++++++----
 perl/Amanda/Header.c      | 10 ++++++----
 perl/Amanda/IPC/Binary.c  | 10 ++++++----
 perl/Amanda/Logfile.c     | 10 ++++++----
 perl/Amanda/MainLoop.c    | 10 ++++++----
 perl/Amanda/NDMP.c        | 10 ++++++----
 perl/Amanda/Tapelist.c    | 10 ++++++----
 perl/Amanda/Tests.c       | 10 ++++++----
 perl/Amanda/Util.c        | 10 ++++++----
 perl/Amanda/Xfer.c        | 10 ++++++----
 perl/Amanda/XferServer.c  | 10 ++++++----
 18 files changed, 108 insertions(+), 72 deletions(-)

diff --git a/perl/Amanda/Application.c b/perl/Amanda/Application.c
index 605ac6e..8327e74 100644
--- a/perl/Amanda/Application.c
+++ b/perl/Amanda/Application.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Archive.c b/perl/Amanda/Archive.c
index 3fbfc23..aac8f35 100644
--- a/perl/Amanda/Archive.c
+++ b/perl/Amanda/Archive.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Cmdline.c b/perl/Amanda/Cmdline.c
index 5a8d2ef..85709b1 100644
--- a/perl/Amanda/Cmdline.c
+++ b/perl/Amanda/Cmdline.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Config.c b/perl/Amanda/Config.c
index e8e53e0..3c1cf93 100644
--- a/perl/Amanda/Config.c
+++ b/perl/Amanda/Config.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Debug.c b/perl/Amanda/Debug.c
index 103aa3f..01a4029 100644
--- a/perl/Amanda/Debug.c
+++ b/perl/Amanda/Debug.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Device.c b/perl/Amanda/Device.c
index b8efee6..21e73dc 100644
--- a/perl/Amanda/Device.c
+++ b/perl/Amanda/Device.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Disklist.c b/perl/Amanda/Disklist.c
index 0a9874b..c064c38 100644
--- a/perl/Amanda/Disklist.c
+++ b/perl/Amanda/Disklist.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Feature.c b/perl/Amanda/Feature.c
index 6ad571a..53c6b0d 100644
--- a/perl/Amanda/Feature.c
+++ b/perl/Amanda/Feature.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Header.c b/perl/Amanda/Header.c
index faa12da..dc5c205 100644
--- a/perl/Amanda/Header.c
+++ b/perl/Amanda/Header.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/IPC/Binary.c b/perl/Amanda/IPC/Binary.c
index 5739c47..92e905d 100644
--- a/perl/Amanda/IPC/Binary.c
+++ b/perl/Amanda/IPC/Binary.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Logfile.c b/perl/Amanda/Logfile.c
index 7c39763..e4c8ef7 100644
--- a/perl/Amanda/Logfile.c
+++ b/perl/Amanda/Logfile.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/MainLoop.c b/perl/Amanda/MainLoop.c
index eeb96b1..b824e0c 100644
--- a/perl/Amanda/MainLoop.c
+++ b/perl/Amanda/MainLoop.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/NDMP.c b/perl/Amanda/NDMP.c
index cc7e75a..c2529df 100644
--- a/perl/Amanda/NDMP.c
+++ b/perl/Amanda/NDMP.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Tapelist.c b/perl/Amanda/Tapelist.c
index 611b085..dac0bd2 100644
--- a/perl/Amanda/Tapelist.c
+++ b/perl/Amanda/Tapelist.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Tests.c b/perl/Amanda/Tests.c
index 5177c57..7583d21 100644
--- a/perl/Amanda/Tests.c
+++ b/perl/Amanda/Tests.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Util.c b/perl/Amanda/Util.c
index 4357d9f..a4ad4a2 100644
--- a/perl/Amanda/Util.c
+++ b/perl/Amanda/Util.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/Xfer.c b/perl/Amanda/Xfer.c
index 4d3c0fc..ba1288c 100644
--- a/perl/Amanda/Xfer.c
+++ b/perl/Amanda/Xfer.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
diff --git a/perl/Amanda/XferServer.c b/perl/Amanda/XferServer.c
index 3ab6e64..5e5b087 100644
--- a/perl/Amanda/XferServer.c
+++ b/perl/Amanda/XferServer.c
@@ -1450,9 +1450,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
 #ifdef eof
   #undef eof
 #endif
-#ifdef bool
-  #undef bool
-#endif
 #ifdef close
   #undef close
 #endif
@@ -1493,7 +1490,12 @@ SWIG_Perl_SetModule(swig_module_info *module) {
   #undef stat
 #endif
 
-
+#ifdef bool
+  /* Leave if macro is from C99 stdbool.h */
+  #ifndef __bool_true_false_are_defined
+    #undef bool
+  #endif
+#endif
 
 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
 
-- 
2.0.0


--- End Message ---
--- Begin Message ---
Source: amanda
Source-Version: 1:3.3.6-1

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

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 752024@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Hideki Yamane <henrich@debian.org> (supplier of updated amanda 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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 30 Jul 2014 23:20:42 +0900
Source: amanda
Binary: amanda-common amanda-server amanda-client
Architecture: source amd64
Version: 1:3.3.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <packages@qa.debian.org>
Changed-By: Hideki Yamane <henrich@debian.org>
Description:
 amanda-client - Advanced Maryland Automatic Network Disk Archiver (Client)
 amanda-common - Advanced Maryland Automatic Network Disk Archiver (Libs)
 amanda-server - Advanced Maryland Automatic Network Disk Archiver (Server)
Closes: 752024
Changes:
 amanda (1:3.3.6-1) unstable; urgency=low
 .
   * QA upload.
   * New upstream release
     - include swig 3.0.2: fix FTBFS with Perl 5.20: needs SWIG regeneration
       (Closes: #752024)
   * debian/patches
     - drop gets-undef-ftbfs: it's unnecessary
   * debian/control
     - set Standards-Version: 3.9.5
     - move Vcs repository to alioth collabmaint
Checksums-Sha1:
 6dbf4da6cd9a77fddcbf8cdca89059b4f5570962 2143 amanda_3.3.6-1.dsc
 85a470eb889a55470b925ae92779f1acdd93ea7c 4572464 amanda_3.3.6.orig.tar.gz
 e64d145b3663c89ab879ff0184ada42166dddce0 31756 amanda_3.3.6-1.debian.tar.xz
 16431bcbfd4a8371631dec4b65561d4501f38171 1552306 amanda-common_3.3.6-1_amd64.deb
 f048ada215c3942644ad26eba2a0e9fd1e00e41f 286684 amanda-server_3.3.6-1_amd64.deb
 1451d4e7c9beb44386cb23a4bb4193940b5bde0d 213666 amanda-client_3.3.6-1_amd64.deb
Checksums-Sha256:
 40d81cfbe63d17644a5c5b025afe445170995fa21a4d0ee54bcd4c261c7133a9 2143 amanda_3.3.6-1.dsc
 30929b301b85ab5bc864e4bb05fd3d346ded0db2ff687e621b67e1b91dd8a3ce 4572464 amanda_3.3.6.orig.tar.gz
 e308d4fd83ab4571613b633bbc4253256f65c88fe5ddbd9c2ba625a9c7bce4db 31756 amanda_3.3.6-1.debian.tar.xz
 7b00423cd7af2e21e78dac072392d7f1a4128bd115925b3643f480c2678f447f 1552306 amanda-common_3.3.6-1_amd64.deb
 5e34dc486b400218b7e6b0d7760a3f160097c107c68f9ce0557efe7ce001e547 286684 amanda-server_3.3.6-1_amd64.deb
 3d76dfa16a49497fd2941ad47ba4cf6c1b7c1bfc6783ffdde6d9065941597683 213666 amanda-client_3.3.6-1_amd64.deb
Files:
 6b2deccddf45000d9b772c46d4fd5c03 1552306 utils optional amanda-common_3.3.6-1_amd64.deb
 59d1d478592230da10df994da4a87c34 286684 utils optional amanda-server_3.3.6-1_amd64.deb
 cd40d7f4ee5ea3098fbde4f9935cb8cd 213666 utils optional amanda-client_3.3.6-1_amd64.deb
 10f99221474140cab400c2ff4884257a 2143 utils optional amanda_3.3.6-1.dsc
 1c28b59fea4f113b1ce818cc146356be 4572464 utils optional amanda_3.3.6.orig.tar.gz
 e87500b89af8a0abf6f0c596a38bc886 31756 utils optional amanda_3.3.6-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJT4OqAAAoJEF0yjQgqqrFA22MP/RaDBVxRjn7s37q3UxlVSKdN
Jbwgjc/s3rHLOucvzWHSWQ+HUMzF6ezOThWrEo7zkNTvPmZyR0KFmCr1mPL26CfW
kZ/SN1gr5rUaEjnxL2licefFrdFZL7lkpWKta3wTkE5IrCf4kxfHF2ZmLdrXfYzo
0iYErX7JUEGbhlL8gYUUZeXs9hYUQyZbh5P6WFGSlLHiljMREfbr4oJU8Xi4pFI4
umhxtXYEI1FiYobYff6U/KLPQq729Q+oHSO7nCwJDCkGxvzHsXmsa/FLjWC53G28
9J5yhWwGd82e0XdKAWQmjq7ZBndPtUb2hKMYxhYSninI0e/aQBW8Ugzes4l+tRQh
H5rkJY/BxNoAMEB7etnufyVR0h0pEIpfbk//vSR6jTn1SWouZRaPXFlKRCBhQF13
MV/iaYwixJOKTqOE+rs0I6d1AJ28R8AI1zVQFu0b6SJrLu6NF9aynYjMto1cjDaa
aCb0lqM/2a7oQFcWrrFKB58ZX0OIDe6uDdWeOkdgTMqT00L26jjHkU+zRonuyR0s
gZxxo/8oFXIbegDRnJWmGPGgoCqY0Umlv24Qk4B6+w7FgNNBv9CturuiySy/FAM8
Fj6f4BDA7gVInVHxwRWItu6A79Wwg+oH5YQHwqBZbgFDCFEunk6hg1iLRaVu0Z93
xEoQ0NM7YuMHVo7bp0Rx
=x3QR
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: