diff options
author | Mike Gilbert <floppym@gentoo.org> | 2015-09-05 09:16:54 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2015-09-05 09:18:30 -0400 |
commit | 6cb2905fafdd2f2c0407c2bb4a1bc12b6f3126a9 (patch) | |
tree | f8a5cde03cf68cba7db6c6340f7a1039edb49516 /dev-python | |
parent | media-video/totem: Drop old (diff) | |
download | gentoo-6cb2905fafdd2f2c0407c2bb4a1bc12b6f3126a9.tar.gz gentoo-6cb2905fafdd2f2c0407c2bb4a1bc12b6f3126a9.tar.bz2 gentoo-6cb2905fafdd2f2c0407c2bb4a1bc12b6f3126a9.zip |
dev-python/beautifulsoup: Tweak the chardet blocker
!dev-python/chardet[${PYTHON_USEDEP}] only blocks chardet if it happens to
have exactly the same python flags enabled.
We also need a hard blocker rather than a soft one.
Package-Manager: portage-2.2.20
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild b/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild index a5009b6e05fa..48f6ba4bab9e 100644 --- a/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild +++ b/dev-python/beautifulsoup/beautifulsoup-4.4.0.ebuild @@ -26,8 +26,9 @@ RDEPEND="$(python_gen_cond_dep 'dev-python/html5lib[${PYTHON_USEDEP}]' python2_7 $(python_gen_cond_dep 'dev-python/lxml[${PYTHON_USEDEP}]' python2_7 'python3*')" DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/nose[${PYTHON_USEDEP}] - !dev-python/chardet[${PYTHON_USEDEP}] )" + !!dev-python/chardet )" # See https://bugs.launchpad.net/beautifulsoup/+bug/1471359 to explain need for blocker +[[ ${PV} == 4.4.0 ]] || die "Don't forget to remove the chardet blocker!" S=${WORKDIR}/${MY_P} |