- /var/lib/zypp/cache -> /var/cache/zypp (#292419)
authorDuncan Mac-Vicar P <dmacvicar@suse.de>
Fri, 27 Jul 2007 11:30:35 +0000 (11:30 +0000)
committerDuncan Mac-Vicar P <dmacvicar@suse.de>
Fri, 27 Jul 2007 11:30:35 +0000 (11:30 +0000)
package/libzypp.changes
zypp/NeedAType.h
zypp/ZConfig.cc

index c718dcf..d3acdc4 100644 (file)
@@ -8,6 +8,12 @@ Thu Jul 26 16:41:30 CEST 2007 - kkaempf@suse.de
 - version 3.12.0
 
 -------------------------------------------------------------------
+Thu Jul 26 10:58:27 CEST 2007 - dmacvicar@suse.de
+
+- /var/lib/zypp/cache -> /var/cache/zypp
+  (#292419)
+
+-------------------------------------------------------------------
 Wed Jul 25 13:50:06 CEST 2007 - ma@suse.de
 
 - Make temp directory configurable  via environment
index cec3926..6528cfd 100644 (file)
@@ -59,12 +59,6 @@ namespace zypp
   /** Offer a License text and methods to remember confirmation. */
   typedef std::string License;
 
-  /** An rpm package group value. Also provide access to a
-   * (singleton) tree like group hierarchy which contains
-   * all existing groups. No more need to fiddle with YStringTreeItem
-   * classes and forgetting to add parsed groups there for use in the UI.
-   * PackageGroup can be selforganizing.
-  */
   typedef std::string PackageGroup;
 
   /** Candidate for string unification? */
index f1a52a4..9076a2e 100644 (file)
@@ -159,13 +159,13 @@ namespace zypp
   Pathname ZConfig::defaultRepoMetadataPath() const
   {
     return ( _pimpl->cfg_metadata_path.empty() 
-        ? Pathname("/var/lib/zypp/cache/raw") : _pimpl->cfg_metadata_path );
+        ? Pathname("/var/cache/zypp/raw") : _pimpl->cfg_metadata_path );
   }
 
   Pathname ZConfig::defaultRepoCachePath() const
   {
     return ( _pimpl->cfg_cache_path.empty() 
-        ? Pathname("/var/lib/zypp/cache") : _pimpl->cfg_cache_path );
+        ? Pathname("/var/cache/zypp") : _pimpl->cfg_cache_path );
   }
 
   Pathname ZConfig::defaultKnownReposPath() const