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 C310D139083 for ; Wed, 13 Dec 2017 13:42:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DBE2E0E52; Wed, 13 Dec 2017 13:42:07 +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 DD307E0E52 for ; Wed, 13 Dec 2017 13:42:06 +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 59B9B33BF0F for ; Wed, 13 Dec 2017 13:42:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4B81AE74 for ; Wed, 13 Dec 2017 13:42:02 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1513172451.7e6e3f74766d67f12a6d1edbf317133545c214c7.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbytesize/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libbytesize/libbytesize-1.2-r1.ebuild dev-libs/libbytesize/libbytesize-1.2.ebuild X-VCS-Directories: dev-libs/libbytesize/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 7e6e3f74766d67f12a6d1edbf317133545c214c7 X-VCS-Branch: master Date: Wed, 13 Dec 2017 13:42:02 +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: 73769ed8-8a7a-465e-8f7a-3fee49da743e X-Archives-Hash: 58dc6137ce0c188f22552a8adf0f3be1 commit: 7e6e3f74766d67f12a6d1edbf317133545c214c7 Author: Sven Wegener gentoo org> AuthorDate: Wed Dec 13 13:40:06 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Dec 13 13:40:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e6e3f74 dev-libs/libbytesize: Revbump to fix creation of top-level directory. Closes: https://bugs.gentoo.org/634840 Package-Manager: Portage-2.3.18, Repoman-2.3.6 .../{libbytesize-1.2.ebuild => libbytesize-1.2-r1.ebuild} | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-libs/libbytesize/libbytesize-1.2.ebuild b/dev-libs/libbytesize/libbytesize-1.2-r1.ebuild similarity index 82% rename from dev-libs/libbytesize/libbytesize-1.2.ebuild rename to dev-libs/libbytesize/libbytesize-1.2-r1.ebuild index dbb899eae3d..132da45acc0 100644 --- a/dev-libs/libbytesize/libbytesize-1.2.ebuild +++ b/dev-libs/libbytesize/libbytesize-1.2-r1.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) -inherit autotools python-single-r1 +inherit autotools python-r1 DESCRIPTION="Tiny library providing a C \"class\" for working with arbitrary big sizes in bytes" HOMEPAGE="https://github.com/rhinstaller/libbytesize" @@ -34,7 +34,7 @@ DEPEND=" RESTRICT="test" pkg_setup() { - python-single-r1_pkg_setup + python_setup } src_prepare() { @@ -44,7 +44,13 @@ src_prepare() { src_configure() { local myeconfargs=( + --without-python3 $(use_with doc gtk-doc) ) econf "${myeconfargs[@]}" } + +src_install() { + emake install DESTDIR="${D}" + python_foreach_impl emake -C src/python install DESTDIR="${D}" +}