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 D7D641384B4 for ; Mon, 23 Nov 2015 11:02:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0BD521C0AC; Mon, 23 Nov 2015 11:02:57 +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 40D2521C0AD for ; Mon, 23 Nov 2015 11:02:57 +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 47CA334069F for ; Mon, 23 Nov 2015 11:02:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADBB2A95 for ; Mon, 23 Nov 2015 11:02:53 +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: <1448276526.9e80ed2aa23342ce7a23a7956a58a937c0cff859.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/nss_wrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/nss_wrapper/Manifest sys-libs/nss_wrapper/nss_wrapper-1.1.0.ebuild X-VCS-Directories: sys-libs/nss_wrapper/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9e80ed2aa23342ce7a23a7956a58a937c0cff859 X-VCS-Branch: master Date: Mon, 23 Nov 2015 11:02:53 +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: 00063417-503f-4664-b32f-44d4731dbcb3 X-Archives-Hash: 7de133186c764617ff89a560afa8ffc8 commit: 9e80ed2aa23342ce7a23a7956a58a937c0cff859 Author: Lars Wendler gentoo org> AuthorDate: Mon Nov 23 09:46:54 2015 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Nov 23 11:02:06 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e80ed2a sys-libs/nss_wrapper: Bump to version 1.1.0 Package-Manager: portage-2.2.25 Signed-off-by: Lars Wendler gentoo.org> sys-libs/nss_wrapper/Manifest | 1 + sys-libs/nss_wrapper/nss_wrapper-1.1.0.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/sys-libs/nss_wrapper/Manifest b/sys-libs/nss_wrapper/Manifest index abe77f6..46dcc68 100644 --- a/sys-libs/nss_wrapper/Manifest +++ b/sys-libs/nss_wrapper/Manifest @@ -1 +1,2 @@ DIST nss_wrapper-1.0.3.tar.gz 42535 SHA256 285427ff84020f804b738c1e7154407b4f7017748bce48ce94c0a6b8656cda2f SHA512 3d921b1529e225d4060193ed8b491557d71c172d13d76188f2c9eaeef90f2a5f999ed1cc5b5be1feebf705147371d333355a5587049ecb66f39049a8da1dbf8d WHIRLPOOL ea643931f56e9449f6dce4d9ece943ba9701d758f7a893aae05fa0b5c0f924ba34a046b1cb3392e37c43de6e7ea60ec84db224e83bc111a321135b81addcb1d4 +DIST nss_wrapper-1.1.0.tar.gz 52804 SHA256 c495e3546762a1930ecc23aa852e25b96913ce4beea3059b1b27d7c2ac72fe39 SHA512 16e773a1c1af91bbed17fbfb0c554455bfef1420d55ab99ae127057677a0974d84a6a66276faf92745aa6f5f2d1a3d9e3c1539a1725f64a9f3052b313b1cc1d1 WHIRLPOOL 0ad94304676a89adc8199f1fe955bc6f26e3b1f747c485f60280e04cf9af8951894650e8f19d45f66092178785bbda690df142e1e4431bc523d37a68a01ea39d diff --git a/sys-libs/nss_wrapper/nss_wrapper-1.1.0.ebuild b/sys-libs/nss_wrapper/nss_wrapper-1.1.0.ebuild new file mode 100644 index 0000000..028028a --- /dev/null +++ b/sys-libs/nss_wrapper/nss_wrapper-1.1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-multilib + +DESCRIPTION="A wrapper for the user, group and hosts NSS API" +HOMEPAGE="https://cwrap.org/nss_wrapper.html" +SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="test" + +DEPEND="" +RDEPEND="${DEPEND}" + +# Work around a problem with >=dev-util/cmake-3.3.0 (bug #558340) +# Because of this we cannot use cmake-multilib_src_configure() here. +multilib_src_configure() { + local mycmakeargs=( -DCMAKE_LIBRARY_PATH=/usr/$(get_libdir) ) + cmake-utils_src_configure +}