commit: 7d8979be42cabdcacc64663d28be3108c3cd89a2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Jan 31 08:57:59 2021 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Jan 31 08:57:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8979be
dev-python/gitdb: Remove smmap upper bound Closes: https://bugs.gentoo.org/767970 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/gitdb/{gitdb-4.0.5.ebuild => gitdb-4.0.5-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/gitdb/gitdb-4.0.5.ebuild b/dev-python/gitdb/gitdb-4.0.5-r1.ebuild similarity index 85% rename from dev-python/gitdb/gitdb-4.0.5.ebuild rename to dev-python/gitdb/gitdb-4.0.5-r1.ebuild index 22051202ac7..9b989f33a30 100644 --- a/dev-python/gitdb/gitdb-4.0.5.ebuild +++ b/dev-python/gitdb/gitdb-4.0.5-r1.ebuild @@ -26,6 +26,13 @@ BDEPEND=" distutils_enable_tests nose +src_prepare() { + # remove unnecessary version restriction + # https://github.com/gitpython-developers/gitdb/issues/67 + sed -i -e '/smmap/s:,<4::' setup.py || die + distutils-r1_src_prepare +} + src_test() { local i
