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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 23F31158095 for ; Fri, 19 Aug 2022 08:14:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A105AE0886; Fri, 19 Aug 2022 08:14:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79E94E087E for ; Fri, 19 Aug 2022 08:14:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2C793413F0 for ; Fri, 19 Aug 2022 08:14:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F16F58A for ; Fri, 19 Aug 2022 08:14:12 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1660896817.498f06c8df94d4ed257324ce7cd9e33ca67679d5.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pam_wrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild X-VCS-Directories: sys-libs/pam_wrapper/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 498f06c8df94d4ed257324ce7cd9e33ca67679d5 X-VCS-Branch: master Date: Fri, 19 Aug 2022 08:14:12 +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: 9bbe1130-588c-4d78-a912-ade308f4c35a X-Archives-Hash: 84360079af9a665dc96b81b954d9d848 commit: 498f06c8df94d4ed257324ce7cd9e33ca67679d5 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 14 21:44:03 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 19 08:13:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498f06c8 sys-libs/pam_wrapper: drop 1.1.3 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild | 40 --------------------------- 1 file changed, 40 deletions(-) diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild b/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild deleted file mode 100644 index 2643b37d037f..000000000000 --- a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -CMAKE_ECLASS=cmake -inherit cmake-multilib python-single-r1 - -DESCRIPTION="A tool to test PAM applications and PAM modules" -HOMEPAGE="https://cwrap.org/pam_wrapper.html" -SRC_URI="https://www.samba.org/ftp/pub/cwrap/${P}.tar.gz - https://ftp.samba.org/pub/cwrap/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - sys-libs/pam:0=[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )" - -multilib_src_configure() { - local libpam="${EPREFIX}" - multilib_is_native_abi || libpam+="/usr" - libpam+="/$(get_libdir)/libpam.so.0" - - local mycmakeargs=( - -DPAM_LIBRARY="${libpam}" - -DUNIT_TESTING=$(usex test) - -DPYTHON2_LIBRARY="/dev/null" # Disabled - -DPYTHON3_INCLUDE_DIR="$(python_get_includedir)" - -DPYTHON3_SITELIB="$(python_get_sitedir)" - ) - cmake_src_configure -}