Your message dated Mon, 25 Mar 2013 08:47:43 +0000
with message-id <[email protected]>
and subject line Bug#702433: fixed in tinyca 0.7.5-4
has caused the Debian Bug report #702433,
regarding tinyca: perl syntax error
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.)


-- 
702433: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=702433
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: tinyca
Version: 0.7.5-3
Severity: normal
Tags: patch


Use of qw(...) as parentheses is deprecated at GUI.pm line 981.
Use of qw(...) as parentheses is deprecated at GUI.pm line 1006.
Use of qw(...) as parentheses is deprecated at GUI.pm line 1032.
Use of qw(...) as parentheses is deprecated at GUI.pm line 1048.
Use of qw(...) as parentheses is deprecated at GUI.pm line 1063.

Tons of warnings due to -w flag in /usr/bin/tinyca2

Program fails if it cannot parse a date, patch only
remedies the symptom.



-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tinyca depends on:
ii  libgtk2-perl            2:1.244-1
ii  liblocale-gettext-perl  1.05-7+b1
ii  openssl                 1.0.1e-1

Versions of packages tinyca recommends:
ii  zip  3.0-7

tinyca suggests no packages.

-- no debconf information


--- /usr/share/tinyca/GUI.pm    2013-03-06 14:40:55.045693318 +0100
+++ /tmp/GUI.pm 2013-03-06 14:40:49.561661611 +0100
@@ -978,7 +978,7 @@
    $piter = $store->append($root);
    $store->set($piter, 0 => $t);
 
-   for my $l (qw(CN EMAIL O OU C ST L)) {
+   for my $l qw(CN EMAIL O OU C ST L) {
       if(defined($parsed->{$l})) {
          if($l eq "OU") {
             foreach my $ou (@{$parsed->{'OU'}}) {
@@ -1003,7 +1003,7 @@
       $piter = $store->append($root);
       $store->set($piter, 0 => $t);
    
-      for my $l (qw(CN EMAIL O OU C ST L)) {
+      for my $l qw(CN EMAIL O OU C ST L) {
          if(defined($parsed->{'ISSUERDN'}->{$l})) {
             if($l eq "OU") {
                foreach my $ou (@{$parsed->{'ISSUERDN'}->{'OU'}}) {
@@ -1029,7 +1029,7 @@
       $piter = $store->append($root);
       $store->set($piter, 0 => $t);
    
-      for my $l (qw(STATUS NOTBEFORE NOTAFTER)) {
+      for my $l qw(STATUS NOTBEFORE NOTAFTER) {
          if(defined($parsed->{$l})) {
             $citer = $store->append($piter);
             $store->set($citer, 
@@ -1045,7 +1045,7 @@
    $store->set($piter, 0 => $t);
 
 
-   for my $l (qw(STATUS SERIAL KEYSIZE PK_ALGORITHM SIG_ALGORITHM TYPE)) {
+   for my $l qw(STATUS SERIAL KEYSIZE PK_ALGORITHM SIG_ALGORITHM TYPE) {
       if(defined($parsed->{$l})) {
          $citer = $store->append($piter);
          $store->set($citer, 
@@ -1060,7 +1060,7 @@
       $piter = $store->append($root);
       $store->set($piter, 0 => $t);
    
-      for my $l (qw(FINGERPRINTMD5 FINGERPRINTSHA1)) {
+      for my $l qw(FINGERPRINTMD5 FINGERPRINTSHA1) {
          if(defined($parsed->{$l})) {
             $citer = $store->append($piter);
             $store->set($citer, 
--- /tmp/OpenSSL.pm     2013-03-06 15:06:11.578455127 +0100
+++ /usr/share/tinyca/OpenSSL.pm        2013-03-06 15:04:56.254020175 +0100
@@ -1039,7 +1039,8 @@
 
 sub _get_date {
    my $string = shift;
-         
+
+   return 0 unless $string;
    $string =~ s/  / /g;
             
    my @t1 = split(/ /, $string);

--- End Message ---
--- Begin Message ---
Source: tinyca
Source-Version: 0.7.5-4

We believe that the bug you reported is fixed in the latest version of
tinyca, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christoph Ulrich Scholler <[email protected]> (supplier of updated 
tinyca 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: SHA256

Format: 1.8
Date: Mon, 25 Mar 2013 02:25:09 +0100
Source: tinyca
Binary: tinyca
Architecture: source all
Version: 0.7.5-4
Distribution: unstable
Urgency: medium
Maintainer: Christoph Ulrich Scholler <[email protected]>
Changed-By: Christoph Ulrich Scholler <[email protected]>
Description: 
 tinyca     - simple graphical program for certification authority management
Closes: 702233 702433
Changes: 
 tinyca (0.7.5-4) unstable; urgency=medium
 .
   * Ensured compatibility with openssl 1.0.1 (Closes: #702233). Thanks to
     Mateusz Kijowski for the bug report.
   * Fixed deprecation warning form perl about use of qw() without
     parentheses (Closes: 702433). Thanks to Jörgen Hägg for the patch.
Checksums-Sha1: 
 f45d4a6830301d1a639bb10b109e1c1527cc9aaa 1709 tinyca_0.7.5-4.dsc
 165ba4e2a6460dcf8d8e416085593c28096bf23b 9431 tinyca_0.7.5-4.diff.gz
 62c603b5afb0a244a432b8eec304b547db8fba7f 130092 tinyca_0.7.5-4_all.deb
Checksums-Sha256: 
 b7b441ff14cec88b06cb3489ed6e2d9bc6bc9e00a091f2e2d15b0335ff8e7ee9 1709 
tinyca_0.7.5-4.dsc
 77372d88a9b0c7a35ab9720a94f9632eeca399971d0aa2bc2c0d03cbcf94d56c 9431 
tinyca_0.7.5-4.diff.gz
 bea7d7ee3a66913b3955d045097dccc269c7b80a0c97cb33a3656c62a0851e82 130092 
tinyca_0.7.5-4_all.deb
Files: 
 d355e38d9246931340363b9fc7ad7548 1709 utils optional tinyca_0.7.5-4.dsc
 8fd9c1281ac99fefe1948a7661ff3c72 9431 utils optional tinyca_0.7.5-4.diff.gz
 8ac5c524da5f66120e62b6dda6b44da4 130092 utils optional tinyca_0.7.5-4_all.deb

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

iQIcBAEBCAAGBQJRUAUEAAoJEFOxrG2xG2J7OhkP/i84rCrZhNI6csaXYs1GoRiP
/lJoVtVUCrp+pI12a5inDcd2ZZS4Ore1NSayIh4YNDf+NdwmOkCR40NbltluZNvj
sI03WiPW2n7HVLKK+kA82iU4TAR8QSEg1eGHUb7/Il2cSv85ZLG3kT0Z5XuNYY6A
qTdJuF6IG0aa4uB2UE4E7pZRhqAD/DT1vhGEQnUpVZpnhNVrdWND/XYTXu9Tf1uV
D3hbiPCJ0FOOnOJE8JBT/w5R+5KV8y9QQoFHY9/6wPR0PozAKrymgRAgWIahlKt0
G52vYbua2hX7IuxpQSP6jj1/PLQDAn+Xe9vBAcznHowZdCtCWydC3QRoAwp5iEm4
SO2Ori5sGR22HJ4bnQ0UW4FXBfTJyKlI0MS3VuBd2oX1zVGv/Dhrpp33g7EhnSgE
tZwgj/5g/wrHV3EhKtUl76mfl/wy5sRbmyIhtaJSZfkzcC8vGprRLrFb9c7SJjDj
zabM95sAaGcbt7wIWC4iEIXK5uoN/RhXWTYNk5qUinVfwNpKq+ane04PSfYleMoQ
kOEwkUbt1EgPD1NYUWUxh/WXrK9yziy3wv3nUWVD2ozPOM+3NqDGjZbGJhIzvGr5
ZrTQq2NWoXbwM3eLIQAv98qd996fOdCRJN7GqWt5Si9R4rl4R1H2wBnxXsKuXz1q
ujMe42o8o8crp7RZT014
=Us4M
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to