Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 556170 - dev-python/astroid-1.3.7 has an overly restrictive require for dev-python/logilab-common
Summary: dev-python/astroid-1.3.7 has an overly restrictive require for dev-python/log...
Status: RESOLVED WORKSFORME
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-07-28 20:41 UTC by Ellison Marks
Modified: 2015-07-29 17:29 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ellison Marks 2015-07-28 20:41:40 UTC
the RDEPEND in dev-python/astroid for dev-python/logilab-common changed in 1.3.7 from
">=dev-python/logilab-common-0.60.0[${PYTHON_USEDEP}]"
to
"<=dev-python/logilab-common-0.63.0[${PYTHON_USEDEP}]".
Considering that the versions of logilab-common available in the tree currently are 0.61.0, ~0.62.1, 0.63.2 and ~1.0.2, this causes some conflicts.

Reproducible: Always

Steps to Reproduce:
1.Attempt to update dev-python/astroid from 1.3.6 to 1.3.7
Actual Results:  
[ebuild     UD ] dev-python/logilab-common-0.61.0 [0.63.2]
[ebuild     U ~] dev-python/astroid-1.3.7 [1.3.6]

Expected Results:  
astroid is updated without downgrading logilab-common
Comment 1 Justin Lecher (RETIRED) gentoo-dev 2015-07-29 13:10:00 UTC
That is what upstream wants. You need to downgrade dev-python/logilab-common
Comment 2 Justin Lecher (RETIRED) gentoo-dev 2015-07-29 13:10:46 UTC
--- /var/tmp/portage/dev-python/astroid-1.3.6/work/astroid-1.3.6/astroid.egg-info/requires.txt	2015-03-14 17:33:10.000000000 +0100
+++ /var/tmp/portage/dev-python/astroid-1.3.7/work/astroid-1.3.7/astroid.egg-info/requires.txt	2015-07-27 17:33:04.000000000 +0200
@@ -1,2 +1,2 @@
-logilab-common >= 0.60.0
+logilab-common<=0.63.0
 six
Comment 3 Justin Lecher (RETIRED) gentoo-dev 2015-07-29 13:13:23 UTC
Next astroid release will completely drop the logilab dependency.
Comment 4 Ellison Marks 2015-07-29 17:29:41 UTC
Ah, I see, thanks for the info.