From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 712661382C5 for ; Mon, 3 May 2021 23:33:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9FD8E089C; Mon, 3 May 2021 23:33:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A110DE089C for ; Mon, 3 May 2021 23:33:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7C8733BDCC for ; Mon, 3 May 2021 23:33:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD99B74A for ; Mon, 3 May 2021 23:33:01 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1620084445.1d9eff573b0e2423786eebc06299adcdd64f40da.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/clufter/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/clufter/clufter-0.77.2.ebuild X-VCS-Directories: dev-python/clufter/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 1d9eff573b0e2423786eebc06299adcdd64f40da X-VCS-Branch: dev Date: Mon, 3 May 2021 23:33:01 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 47019e46-927b-44ac-b02f-7a36b3b22080 X-Archives-Hash: 18ad99c0a08ad9ad6745ee233dc82635 commit: 1d9eff573b0e2423786eebc06299adcdd64f40da Author: Anna Vyalkova sysrq in> AuthorDate: Mon May 3 22:36:43 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon May 3 23:27:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d9eff57 dev-python/clufter: respect LDFLAGS Closes: https://bugs.gentoo.org/780948 Signed-off-by: Anna Vyalkova sysrq.in> dev-python/clufter/clufter-0.77.2.ebuild | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/dev-python/clufter/clufter-0.77.2.ebuild b/dev-python/clufter/clufter-0.77.2.ebuild index beca82401..c098d262d 100644 --- a/dev-python/clufter/clufter-0.77.2.ebuild +++ b/dev-python/clufter/clufter-0.77.2.ebuild @@ -10,16 +10,25 @@ inherit distutils-r1 DESCRIPTION="Tool/library for transforming/analyzing cluster configuration formats" HOMEPAGE="https://pagure.io/clufter" -SRC_URI="https://pagure.io/clufter/archive/v0.77.2/clufter-v0.77.2.tar.gz" +SRC_URI="https://pagure.io/${PN}/archive/v${PV}/${PN}-v${PV}.tar.gz" + +S="${WORKDIR}/${PN}-v${PV}" SLOT="0" -LICENSE="GPL-2" +LICENSE="GPL-2+" KEYWORDS="~amd64 ~x86" IUSE="" +DOCS=( __root__/README ) + DEPEND="dev-python/lxml dev-libs/libxml2" -S="${WORKDIR}/${PN}-v${PV}" +src_compile() { + # Build native extension first + pushd "${S}/__root__/ccs-flatten" || die + emake + popd || die -DOCS=( __root__/README ) + distutils-r1_src_compile +}