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 1CE0B139694 for ; Thu, 23 Feb 2017 11:22:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E728E0CCC; Thu, 23 Feb 2017 11:22:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18077E0CCC for ; Thu, 23 Feb 2017 11:22:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C886734161D for ; Thu, 23 Feb 2017 11:22:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDEEC51C1 for ; Thu, 23 Feb 2017 11:22:16 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1487848470.54642a7414cafeea79371dea5021cca6a72c13cb.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/selinux-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/selinux-python/selinux-python-9999.ebuild X-VCS-Directories: sys-apps/selinux-python/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 54642a7414cafeea79371dea5021cca6a72c13cb X-VCS-Branch: master Date: Thu, 23 Feb 2017 11:22:16 +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: 571741dc-8b91-46fa-aac9-460485c33fad X-Archives-Hash: 951fadd621bab612dddbf1297b134faf commit: 54642a7414cafeea79371dea5021cca6a72c13cb Author: Jason Zaman gentoo org> AuthorDate: Thu Feb 23 08:33:04 2017 +0000 Commit: Jason Zaman gentoo org> CommitDate: Thu Feb 23 11:14:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54642a74 sys-apps/selinux-python: update live ebuild need to pass the path to libsepol.a Package-Manager: portage-2.3.3 sys-apps/selinux-python/selinux-python-9999.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-apps/selinux-python/selinux-python-9999.ebuild b/sys-apps/selinux-python/selinux-python-9999.ebuild index 556173cabf..84a858b5e4 100644 --- a/sys-apps/selinux-python/selinux-python-9999.ebuild +++ b/sys-apps/selinux-python/selinux-python-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -62,9 +62,10 @@ src_compile() { src_install() { installation() { - emake -C "${BUILD_DIR}" DESTDIR="${D}" \ + emake -C "${BUILD_DIR}" \ + DESTDIR="${D}" \ LIBDIR="\$(PREFIX)/$(get_libdir)" \ - PYLIBVER="${EPYTHON}" \ + LIBSEPOLA="/usr/$(get_libdir)/libsepol.a" \ install python_optimize }