Commented out the package.provided code in catalyst that seemed to cause problems...
authorChris Gianelloni <wolf31o2@gentoo.org>
Thu, 12 Apr 2007 12:00:09 +0000 (12:00 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Thu, 12 Apr 2007 12:00:09 +0000 (12:00 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1230 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
catalyst
targets/support/kmerge.sh

index c69861e4f142ebf0547c55f0e7f71a70c538089c..81ce3355bcfd9cec0d0718b9e24e136326593e19 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
 # $Id: $
 
+  12 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
+  targets/support/kmerge.sh:
+  Commented out the package.provided code in catalyst that seemed to cause
+  problems with kerncache in testing. This is 2.0.4 and should be used for the
+  2007.0 release.
+
   12 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org>
   modules/netboot2_target.py, targets/netboot2/netboot2-controller.sh,
   targets/netboot2/netboot2-copyfile.sh, targets/support/functions.sh,
index 79679a4e8397e932dc5dab48142a1542f69dc10a..a8c07ee029341ca07251baa0a8fe80ab618dc694 100755 (executable)
--- a/catalyst
+++ b/catalyst
@@ -8,7 +8,7 @@ import os,sys,imp,string,getopt
 import pdb
 
 __maintainer__="Chris Gianelloni <wolf31o2@gentoo.org>"
-__version__="2.0.3"
+__version__="2.0.4"
 
 conf_values={}
 
index 490dce045796911abea9c32c8058eca6187477c8..74daffff641afd32aaf1077343d9ad7308b7915a 100755 (executable)
@@ -175,17 +175,17 @@ mkdir -p /tmp/kerncache/${clst_kname}
 if [ -n "${clst_KERNCACHE}" ]
 then
        ROOT=/tmp/kerncache/${clst_kname} PKGDIR=${PKGDIR} USE="${USE} symlink build" emerge --nodeps -uqkb  "${clst_ksource}" || exit 1
-       KERNELVERSION=`/usr/lib/portage/bin/portageq best_visible / "${clst_ksource}"`
-       if [ ! -e /etc/portage/profile/package.provided ]
-       then
-               mkdir -p /etc/portage/profile
-               echo "${KERNELVERSION}" > /etc/portage/profile/package.provided
-       else
-               if ( ! grep -q "^${KERNELVERSION}"  /etc/portage/profile/package.provided ) 
-               then
-                       echo "${KERNELVERSION}" >> /etc/portage/profile/package.provided
-               fi
-       fi
+#      KERNELVERSION=`/usr/lib/portage/bin/portageq best_visible / "${clst_ksource}"`
+#      if [ ! -e /etc/portage/profile/package.provided ]
+#      then
+#              mkdir -p /etc/portage/profile
+#              echo "${KERNELVERSION}" > /etc/portage/profile/package.provided
+#      else
+#              if ( ! grep -q "^${KERNELVERSION}"  /etc/portage/profile/package.provided ) 
+#              then
+#                      echo "${KERNELVERSION}" >> /etc/portage/profile/package.provided
+#              fi
+#      fi
        [ -d /usr/src/linux ] && rm /usr/src/linux
        ln -s /tmp/kerncache/${clst_kname}/usr/src/linux /usr/src/linux
 else