From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4F80D1389E2 for ; Wed, 17 Dec 2014 15:50:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2727CE0876; Wed, 17 Dec 2014 15:50:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6D47E0876 for ; Wed, 17 Dec 2014 15:50:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9D043403C1 for ; Wed, 17 Dec 2014 15:50:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FDACCA81 for ; Wed, 17 Dec 2014 15:50:47 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1418831442.a10c5833c092e47d1219e6fd5e090353e792bf97.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: dev-vcs/PyGitUp/ X-VCS-Repository: dev/dev-zero X-VCS-Files: dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild X-VCS-Directories: dev-vcs/PyGitUp/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: a10c5833c092e47d1219e6fd5e090353e792bf97 X-VCS-Branch: master Date: Wed, 17 Dec 2014 15:50:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 624ccaf9-288e-494b-9556-7d8158214f46 X-Archives-Hash: d0186dcbb8e55b93d0b697bea8f3de38 commit: a10c5833c092e47d1219e6fd5e090353e792bf97 Author: Tiziano Müller gentoo org> AuthorDate: Wed Dec 17 15:50:42 2014 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Wed Dec 17 15:50:42 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=a10c5833 fix setup.py to avoid dep on exact version --- dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild index b7e4800..654d953 100644 --- a/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild +++ b/dev-vcs/PyGitUp/PyGitUp-1.2.1.ebuild @@ -23,3 +23,8 @@ DEPEND=">=dev-python/git-python-0.3.2.1[${PYTHON_USEDEP}] >=dev-python/termcolor-1.1.0[${PYTHON_USEDEP}] >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]" RDEPEND="${DEPEND}" + +python_prepare_all() { + sed -i -e 's|==|>=|g' setup.py || die + distutils-r1_python_prepare_all +}