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 DA343139084 for ; Wed, 14 Dec 2016 20:34:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 621D021C072; Wed, 14 Dec 2016 20:34:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 372D521C06A for ; Wed, 14 Dec 2016 20:34:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 F3733340EAA for ; Wed, 14 Dec 2016 20:34:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3881624B0 for ; Wed, 14 Dec 2016 20:34:15 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1481747573.c4a2ee848f7151bb12d262f97633537925b17a20.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/glib/glib-2.50.2.ebuild X-VCS-Directories: dev-libs/glib/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c4a2ee848f7151bb12d262f97633537925b17a20 X-VCS-Branch: master Date: Wed, 14 Dec 2016 20:34:15 +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: bae0b64d-9d22-4a3b-ade8-f928ec9b6058 X-Archives-Hash: 29947ffd9e4a3a5df8c6da08751f7342 commit: c4a2ee848f7151bb12d262f97633537925b17a20 Author: Christophe Lermytte lermytte be> AuthorDate: Sat Nov 19 00:45:32 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Dec 14 20:32:53 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a2ee84 dev-libs/glib: libmount support + multilib dependency on util-linux (bug #599586) Starting with 2.50, libmount support is enabled by default on Linux systems. This commit brings that logic to the ebuild and updates the dependency on util-linux to a multilib one. Package-Manager: portage-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/2862 dev-libs/glib/glib-2.50.2.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-libs/glib/glib-2.50.2.ebuild b/dev-libs/glib/glib-2.50.2.ebuild index b40c2d7..d6ec977 100644 --- a/dev-libs/glib/glib-2.50.2.ebuild +++ b/dev-libs/glib/glib-2.50.2.ebuild @@ -30,6 +30,10 @@ REQUIRED_USE=" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +# Added util-linux multilib dependency to have libmount support (which +# is always turned on on linux systems, unless explicitly disabled, but +# this ebuild does not do that anyway) (bug #599586) + RDEPEND=" !=dev-libs/libpcre-8.13:3[${MULTILIB_USEDEP},static-libs?] @@ -37,6 +41,7 @@ RDEPEND=" >=virtual/libffi-3.0.13-r1[${MULTILIB_USEDEP}] >=virtual/libintl-0-r2[${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] + kernel_linux? ( sys-apps/util-linux[${MULTILIB_USEDEP}] ) selinux? ( >=sys-libs/libselinux-2.2.2-r5[${MULTILIB_USEDEP}] ) xattr? ( >=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] ) fam? ( >=virtual/fam-0-r1[${MULTILIB_USEDEP}] ) @@ -168,6 +173,7 @@ multilib_src_configure() { $(usex debug --enable-debug=yes ' ') \ $(use_enable xattr) \ $(use_enable fam) \ + $(use_enable kernel_linux libmount) \ $(use_enable selinux) \ $(use_enable static-libs static) \ $(use_enable systemtap dtrace) \