summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2011-06-24 19:51:26 +0000
committerBrian Harring <ferringb@gentoo.org>2011-06-24 19:51:26 +0000
commit4c523a3cf5257d83c24acd032b75ef61a080f172 (patch)
tree16eeca0bf70ce5411220ff81c01768444d686b26 /sys-apps/pkgcore/files
parentDropped ~xf86-fbsd wrt #372885 (diff)
downloadhistorical-4c523a3cf5257d83c24acd032b75ef61a080f172.tar.gz
historical-4c523a3cf5257d83c24acd032b75ef61a080f172.tar.bz2
historical-4c523a3cf5257d83c24acd032b75ef61a080f172.zip
fix user profiles from /etc/portage/profiles in 0.6.5; reported by mgorny
Package-Manager: portage-2.1.10.3/cvs/Linux x86_64
Diffstat (limited to 'sys-apps/pkgcore/files')
-rw-r--r--sys-apps/pkgcore/files/0.6.5-fix-screwup-in-incrementals-removal.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-apps/pkgcore/files/0.6.5-fix-screwup-in-incrementals-removal.patch b/sys-apps/pkgcore/files/0.6.5-fix-screwup-in-incrementals-removal.patch
new file mode 100644
index 000000000000..e1e890ac9d20
--- /dev/null
+++ b/sys-apps/pkgcore/files/0.6.5-fix-screwup-in-incrementals-removal.patch
@@ -0,0 +1,28 @@
+From 6ada9442149d881271afcf8560db4a1b74a5eeaf Mon Sep 17 00:00:00 2001
+From: Brian Harring <ferringb@gmail.com>
+Date: Fri, 24 Jun 2011 12:46:38 -0700
+Subject: [PATCH] fix screwup in incrementals removal
+
+---
+ pkgcore/ebuild/profiles.py | 4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/pkgcore/ebuild/profiles.py b/pkgcore/ebuild/profiles.py
+index 1fa91c6..ba7f251 100644
+--- a/pkgcore/ebuild/profiles.py
++++ b/pkgcore/ebuild/profiles.py
+@@ -451,9 +451,9 @@ class UserProfile(OnDiskProfile):
+ typename='profile')
+
+ def __init__(self, user_path, parent_path, parent_profile,
+- incrementals=const.incrementals, load_profiles_base=False):
++ load_profiles_base=False):
+ OnDiskProfile.__init__(self, parent_path, parent_profile,
+- incrementals, load_profiles_base)
++ load_profiles_base)
+ self.node = UserProfileNode(user_path, pjoin(parent_path, parent_profile))
+
+
+--
+1.7.5.3
+