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 CC369139694 for ; Mon, 5 Jun 2017 11:20:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A8F021C06B; Mon, 5 Jun 2017 11:20:17 +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 09C9721C06B for ; Mon, 5 Jun 2017 11:20:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CD5E33418F1 for ; Mon, 5 Jun 2017 11:20:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FC6E7470 for ; Mon, 5 Jun 2017 11:20: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: <1496661596.0d9e7b4f5eb7b771a86e7e9aad00d0d817c1936f.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.8.7.ebuild kde-plasma/kwallet-pam/kwallet-pam-5.9.5.ebuild X-VCS-Directories: kde-plasma/kwallet-pam/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0d9e7b4f5eb7b771a86e7e9aad00d0d817c1936f X-VCS-Branch: master Date: Mon, 5 Jun 2017 11:20: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: b8d43c74-1105-4051-a3ce-1790d6f21ba6 X-Archives-Hash: db1d6b797149eb3536807a4f873aa150 commit: 0d9e7b4f5eb7b771a86e7e9aad00d0d817c1936f Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jun 5 11:19:33 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jun 5 11:19:56 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d9e7b4f kde-plasma/kwallet-pam: Drop old Package-Manager: Portage-2.3.5, Repoman-2.3.1 kde-plasma/kwallet-pam/kwallet-pam-5.8.7.ebuild | 93 ------------------------- kde-plasma/kwallet-pam/kwallet-pam-5.9.5.ebuild | 93 ------------------------- 2 files changed, 186 deletions(-) diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.8.7.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.8.7.ebuild deleted file mode 100644 index 04d60238def..00000000000 --- a/kde-plasma/kwallet-pam/kwallet-pam-5.8.7.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_AUTODEPS="false" -inherit kde5 multibuild multilib - -DESCRIPTION="KWallet PAM module to not enter password again" -LICENSE="LGPL-2.1" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="+oldwallet" - -COMMON_DEPEND=" - dev-libs/libgcrypt:0= - virtual/pam -" -DEPEND="${COMMON_DEPEND} - $(add_frameworks_dep extra-cmake-modules) - $(add_qt_dep qtcore) -" -RDEPEND="${COMMON_DEPEND} - !kde-apps/kwalletd-pam - net-misc/socat -" - -pkg_setup() { - kde5_pkg_setup - MULTIBUILD_VARIANTS=( kf5 $(usev oldwallet) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=( - -DCMAKE_INSTALL_LIBDIR="/$(get_libdir)" - ) - [[ ${MULTIBUILD_VARIANT} = oldwallet ]] && mycmakeargs+=( -DKWALLET4=1 ) - - kde5_src_configure - } - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant kde5_src_compile -} - -src_test() { - multibuild_foreach_variant kde5_src_test -} - -src_install() { - multibuild_foreach_variant kde5_src_install -} - -pkg_postinst() { - check_dm() { - local good - 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 - good=true - fi - if use oldwallet ; then - if ! grep -Eq "auth\s+optional\s+pam_kwallet.so" "${ROOT}${2}" || \ - ! grep -Eq "session\s+optional\s+pam_kwallet.so" "${ROOT}${2}" ; then - good=false - fi - fi - fi - [[ "${good}" = true ]] && \ - elog " ${1} - ${2} ...GOOD" || \ - ewarn " ${1} - ${2} ...BAD" - } - elog - elog "This package enables auto-unlocking of kde-frameworks/kwallet:5." - use oldwallet && elog "You have also selected support for legacy kde-apps/kwalletd:4." - 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" - if use oldwallet ; then - elog " -auth optional pam_kwallet.so kdehome=.kde4" - elog " -session optional pam_kwallet.so" - fi - 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 -} diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.9.5.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.9.5.ebuild deleted file mode 100644 index 04d60238def..00000000000 --- a/kde-plasma/kwallet-pam/kwallet-pam-5.9.5.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_AUTODEPS="false" -inherit kde5 multibuild multilib - -DESCRIPTION="KWallet PAM module to not enter password again" -LICENSE="LGPL-2.1" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="+oldwallet" - -COMMON_DEPEND=" - dev-libs/libgcrypt:0= - virtual/pam -" -DEPEND="${COMMON_DEPEND} - $(add_frameworks_dep extra-cmake-modules) - $(add_qt_dep qtcore) -" -RDEPEND="${COMMON_DEPEND} - !kde-apps/kwalletd-pam - net-misc/socat -" - -pkg_setup() { - kde5_pkg_setup - MULTIBUILD_VARIANTS=( kf5 $(usev oldwallet) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=( - -DCMAKE_INSTALL_LIBDIR="/$(get_libdir)" - ) - [[ ${MULTIBUILD_VARIANT} = oldwallet ]] && mycmakeargs+=( -DKWALLET4=1 ) - - kde5_src_configure - } - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant kde5_src_compile -} - -src_test() { - multibuild_foreach_variant kde5_src_test -} - -src_install() { - multibuild_foreach_variant kde5_src_install -} - -pkg_postinst() { - check_dm() { - local good - 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 - good=true - fi - if use oldwallet ; then - if ! grep -Eq "auth\s+optional\s+pam_kwallet.so" "${ROOT}${2}" || \ - ! grep -Eq "session\s+optional\s+pam_kwallet.so" "${ROOT}${2}" ; then - good=false - fi - fi - fi - [[ "${good}" = true ]] && \ - elog " ${1} - ${2} ...GOOD" || \ - ewarn " ${1} - ${2} ...BAD" - } - elog - elog "This package enables auto-unlocking of kde-frameworks/kwallet:5." - use oldwallet && elog "You have also selected support for legacy kde-apps/kwalletd:4." - 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" - if use oldwallet ; then - elog " -auth optional pam_kwallet.so kdehome=.kde4" - elog " -session optional pam_kwallet.so" - fi - 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 -}