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 783FD1396D0 for ; Sat, 9 Sep 2017 16:35:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB5A4E0DBB; Sat, 9 Sep 2017 16:35:17 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 960DBE0DA7 for ; Sat, 9 Sep 2017 16:35:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6D87F341236 for ; Sat, 9 Sep 2017 16:35:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9FDF9078 for ; Sat, 9 Sep 2017 16:35:14 +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: <1504974895.84ef5e8f4678dccea76b73978742b9ef3a93dc40.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwallet-pam/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/kwallet-pam/kwallet-pam-5.10.5.ebuild X-VCS-Directories: kde-plasma/kwallet-pam/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 84ef5e8f4678dccea76b73978742b9ef3a93dc40 X-VCS-Branch: master Date: Sat, 9 Sep 2017 16:35:14 +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: 80178487-e9b3-4ec3-b42d-e96b5af88e62 X-Archives-Hash: 4bb534dc9f3d2de4c1d687bca702b01c commit: 84ef5e8f4678dccea76b73978742b9ef3a93dc40 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 9 16:33:56 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 9 16:34:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ef5e8f kde-plasma/kwallet-pam: Drop old Package-Manager: Portage-2.3.8, Repoman-2.3.3 kde-plasma/kwallet-pam/kwallet-pam-5.10.5.ebuild | 53 ------------------------ 1 file changed, 53 deletions(-) diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.10.5.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.10.5.ebuild deleted file mode 100644 index c91205f1557..00000000000 --- a/kde-plasma/kwallet-pam/kwallet-pam-5.10.5.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit kde5 - -DESCRIPTION="KWallet PAM module to not enter password again" -LICENSE="LGPL-2.1" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -DEPEND=" - dev-libs/libgcrypt:0= - virtual/pam -" -RDEPEND="${DEPEND} - net-misc/socat -" - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_LIBDIR="/$(get_libdir)" - -DKWALLET4=0 - ) - kde5_src_configure -} - -pkg_postinst() { - check_dm() { - if [[ -e "${ROOT}${2}" ]] ; then - if grep -Eq "auth\s+optional\s+pam_kwallet5.so" "${ROOT}${2}" && \ - grep -Eq "session\s+optional\s+pam_kwallet5.so" "${ROOT}${2}" ; then - elog " ${1} - ${2} ...GOOD" - else - ewarn " ${1} - ${2} ...BAD" - fi - fi - } - elog "This package enables auto-unlocking of kde-frameworks/kwallet:5." - elog "List of things to make it work:" - elog "1. Use standard blowfish encryption instead of GPG" - elog "2. Use same password for login and kwallet" - elog "3. A display manager with support for PAM" - elog "4.a Have the following lines in the display manager's pam.d file:" - elog " -auth optional pam_kwallet5.so" - elog " -session optional pam_kwallet5.so auto_start" - elog "4.b Checking installed DMs..." - has_version "x11-misc/sddm" && check_dm "SDDM" "/etc/pam.d/sddm" - has_version "x11-misc/lightdm" && check_dm "LightDM" "/etc/pam.d/lightdm" - elog - elog "See also: https://wiki.gentoo.org/wiki/KDE#KWallet_auto-unlocking" -}