From: Zac Medico Date: Sat, 18 Dec 2010 15:01:16 +0000 (-0800) Subject: repoman: ignore deprecated profiles.desc entries X-Git-Tag: v2.2.0_alpha10~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=389dc491de2d865ab7592f5c17fc39110921da18;p=portage.git repoman: ignore deprecated profiles.desc entries --- diff --git a/bin/repoman b/bin/repoman index c43493b99..185540d35 100755 --- a/bin/repoman +++ b/bin/repoman @@ -722,6 +722,9 @@ for path in portdb.porttrees: "Invalid %s profile (%s) for arch %s in %s line %d", arch[2], arch[1], arch[0], desc_path, i+1) continue + if os.path.exists( + os.path.join(profile_desc.abs_path, 'deprecated')): + continue profile_list.append(profile_desc) desc_file.close()