Hello community,

here is the log from the commit of package libzypp for openSUSE:12.1 checked in 
at 2011-10-24 16:16:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.1/libzypp (Old)
 and      /work/SRC/openSUSE:12.1/.libzypp.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libzypp", Maintainer is "m...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:12.1/libzypp/libzypp.changes     2011-10-24 
13:05:32.000000000 +0200
+++ /work/SRC/openSUSE:12.1/.libzypp.new/libzypp.changes        2011-10-24 
16:16:09.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Oct 24 13:35:56 CEST 2011 - m...@suse.de
+
+- Explicitly include textLocale in package translation download
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ libzypp-10.3.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-10.3.1/package/libzypp.changes 
new/libzypp-10.3.1/package/libzypp.changes
--- old/libzypp-10.3.1/package/libzypp.changes  2011-10-24 10:15:49.000000000 
+0200
+++ new/libzypp-10.3.1/package/libzypp.changes  2011-10-24 13:51:57.000000000 
+0200
@@ -1,4 +1,9 @@
 -------------------------------------------------------------------
+Mon Oct 24 13:35:56 CEST 2011 - m...@suse.de
+
+- Explicitly include textLocale in package translation download
+
+-------------------------------------------------------------------
 Mon Oct 24 09:37:31 CEST 2011 - m...@suse.de
 
 - Update libversion info (due to ABI change in 10.2.0 (bnc#725407)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libzypp-10.3.1/zypp/repo/susetags/Downloader.cc 
new/libzypp-10.3.1/zypp/repo/susetags/Downloader.cc
--- old/libzypp-10.3.1/zypp/repo/susetags/Downloader.cc 2011-10-24 
10:15:50.000000000 +0200
+++ new/libzypp-10.3.1/zypp/repo/susetags/Downloader.cc 2011-10-24 
13:51:58.000000000 +0200
@@ -197,22 +197,27 @@
   }
 
   // check whether to download more package translations:
-  LocaleSet wantedLocales( ZConfig::instance().repoRefreshLocales() );
-  for_( it, wantedLocales.begin(), wantedLocales.end() )
   {
-    for ( Locale toGet( *it ); toGet != Locale::noCode; toGet = 
toGet.fallback() )
-    {
-      auto it( availablePackageTranslations.find( toGet.code() ) );
-      if ( it != availablePackageTranslations.end() )
+    auto fnc_checkTransaltions( [&]( const Locale & locale_r ) {
+      for ( Locale toGet( locale_r ); toGet != Locale::noCode; toGet = 
toGet.fallback() )
       {
-       auto mit( it->second );
-       MIL << "adding job " << mit->first << endl;
-       OnMediaLocation location( repoInfo().path() + descr_dir + mit->first, 1 
);
-       location.setChecksum( mit->second );
-       enqueueDigested(location, FileChecker(), search_deltafile(_delta_dir + 
descr_dir, mit->first));
-       break;
+       auto it( availablePackageTranslations.find( toGet.code() ) );
+       if ( it != availablePackageTranslations.end() )
+       {
+         auto mit( it->second );
+         MIL << "adding job " << mit->first << endl;
+         OnMediaLocation location( repoInfo().path() + descr_dir + mit->first, 
1 );
+         location.setChecksum( mit->second );
+         enqueueDigested(location, FileChecker(), search_deltafile(_delta_dir 
+ descr_dir, mit->first));
+         break;
+       }
       }
+    });
+    for ( const Locale & it : ZConfig::instance().repoRefreshLocales() )
+    {
+      fnc_checkTransaltions( it );
     }
+    fnc_checkTransaltions( ZConfig::instance().textLocale() );
   }
 
   for_( it, _repoindex->mediaFileChecksums.begin(), 
_repoindex->mediaFileChecksums.end() )

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

Reply via email to