Hello community,

here is the log from the commit of package ca-certificates-mozilla for 
openSUSE:11.4
checked in at Wed Aug 31 15:33:20 CEST 2011.



--------
--- 
old-versions/11.4/all/ca-certificates-mozilla/ca-certificates-mozilla.changes   
    2011-01-31 14:45:34.000000000 +0100
+++ 11.4/ca-certificates-mozilla/ca-certificates-mozilla.changes        
2011-08-31 11:03:51.000000000 +0200
@@ -1,0 +2,18 @@
+Wed Aug 31 09:02:10 UTC 2011 - lnus...@suse.de
+
+- update certificates to revision 1.76
+  * new: Go_Daddy_Root_Certificate_Authority_G2.pem
+  * new: Starfield_Root_Certificate_Authority_G2.pem
+  * new: Starfield_Services_Root_Certificate_Authority_G2.pem
+  * new: AffirmTrust_Commercial.pem
+  * new: AffirmTrust_Networking.pem
+  * new: AffirmTrust_Premium.pem
+  * new: AffirmTrust_Premium_ECC.pem
+  * new: Certum_Trusted_Network_CA.pem
+  * new: Certinomis_Autorit_Racine.pem
+  * new: Root_CA_Generalitat_Valenciana.pem
+  * new: A_Trust_nQual_03.pem
+  * new: TWCA_Root_Certification_Authority.pem
+  * removed: DigiNotar_Root_CA.pem (bnc#714931)
+
+-------------------------------------------------------------------

Package does not exist at destination yet. Using Fallback 
old-versions/11.4/all/ca-certificates-mozilla
Destination is old-versions/11.4/UPDATES/all/ca-certificates-mozilla
calling whatdependson for 11.4-i586


Old:
----
  certdata.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ca-certificates-mozilla.spec ++++++
--- /var/tmp/diff_new_pack.q8TtBy/_old  2011-08-31 15:32:17.000000000 +0200
+++ /var/tmp/diff_new_pack.q8TtBy/_new  2011-08-31 15:32:17.000000000 +0200
@@ -26,8 +26,8 @@
 License:        BSD3c(or similar) ; MPL 1.1/GPL 2.0/LGPL 2.1
 Group:          Productivity/Networking/Security
 AutoReqProv:    on
-Version:        1.70
-Release:        1
+Version:        1.76
+Release:        1.<RELEASE2>
 Summary:        CA certificates for OpenSSL
 Url:            http://www.mozilla.org
 # IMPORTANT: procedure to update certificates:
@@ -44,7 +44,6 @@
 Source1:        extractcerts.pl
 Source2:        %{name}.COPYING
 Source3:        compareoldnew
-Patch0:         certdata.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 # for update-ca-certificates
@@ -63,7 +62,6 @@
 %prep
 %setup -qcT
 /bin/cp %{SOURCE0} .
-%patch0 -p1
 install -m 644 %{S:1} COPYING
 
 %build

++++++ certdata.txt ++++++
++++ 15697 lines (skipped)
++++ between old-versions/11.4/all/ca-certificates-mozilla/certdata.txt
++++ and 11.4/ca-certificates-mozilla/certdata.txt

++++++ extractcerts.pl ++++++
--- /var/tmp/diff_new_pack.q8TtBy/_old  2011-08-31 15:32:17.000000000 +0200
+++ /var/tmp/diff_new_pack.q8TtBy/_new  2011-08-31 15:32:17.000000000 +0200
@@ -84,14 +84,21 @@
 {
   my $object = shift;
   return unless $object;
+  ### convert old tags to be able to compare pre 1.74 files
+  $object->{'CKA_CLASS'} =~ s/^CKO_NETSCAPE/CKO_NSS/;
+  for my $type (keys %trust_types) {
+    next unless (exists $object->{$type});
+    $object->{$type} =~ s/^CKT_NETSCAPE/CKT_NSS/;
+  }
+  ####
   if($object->{'CKA_CLASS'} eq 'CKO_CERTIFICATE' && 
$object->{'CKA_CERTIFICATE_TYPE'} eq 'CKC_X_509') {
     push @certificates, $object;
-  } elsif ($object->{'CKA_CLASS'} eq 'CKO_NETSCAPE_TRUST') {
+  } elsif ($object->{'CKA_CLASS'} eq 'CKO_NSS_TRUST') {
     my $label = $object->{'CKA_LABEL'};
     my $serial = colonhex($object->{'CKA_SERIAL_NUMBER'});
     die "$label exists ($serial)" if exists($trusts{$label.$serial});
     $trusts{$label.$serial} = $object;
-  } elsif ($object->{'CKA_CLASS'} eq 'CKO_NETSCAPE_BUILTIN_ROOT_LIST') {
+  } elsif ($object->{'CKA_CLASS'} eq 'CKO_NSS_BUILTIN_ROOT_LIST') {
     # ignore
   } else {
     print STDERR "class ", $object->{'CKA_CLASS'} ," not handled\n";
@@ -159,7 +166,7 @@
   if ($output_trustbits) {
          for my $type (keys %trust_types) {
                  if (exists $trust->{$type}
-                 && $trust->{$type} eq 'CKT_NETSCAPE_TRUSTED_DELEGATOR') {
+                 && $trust->{$type} eq 'CKT_NSS_TRUSTED_DELEGATOR') {
                          push @addtrust, $trust_types{$type};
                          if (exists $openssl_trust{$type}) {
                                  push @addtrust_openssl, $openssl_trust{$type};
@@ -168,14 +175,14 @@
                  }
          }
   } else {
-         if($trust->{'CKA_TRUST_SERVER_AUTH'} eq 
'CKT_NETSCAPE_TRUSTED_DELEGATOR') {
+         if($trust->{'CKA_TRUST_SERVER_AUTH'} eq 'CKT_NSS_TRUSTED_DELEGATOR') {
                  $trusted = 1;
          }
   }
 
   if (!$trusted) {
          my $t = $trust->{'CKA_TRUST_SERVER_AUTH'};
-         $t =~ s/CKT_NETSCAPE_//;
+         $t =~ s/CKT_NSS_//;
          print STDERR "$t: $alias\n";
          next;
   }


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to