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 30E671382C5 for ; Sun, 18 Apr 2021 21:33:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CB31E0833; Sun, 18 Apr 2021 21:33:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 74E96E0833 for ; Sun, 18 Apr 2021 21:33:26 +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 8DE73340861 for ; Sun, 18 Apr 2021 21:33:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EC2566A for ; Sun, 18 Apr 2021 21:33:24 +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: <1618781565.7715d1e74503dc2805c1d5f43996eefd2886fe85.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/wdm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/wdm/wdm-1.28-r6.ebuild X-VCS-Directories: x11-misc/wdm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7715d1e74503dc2805c1d5f43996eefd2886fe85 X-VCS-Branch: master Date: Sun, 18 Apr 2021 21:33:24 +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: 79353600-6054-4745-bdb6-b372ef047dc6 X-Archives-Hash: a89306f33787706a3defbc768caeca8c commit: 7715d1e74503dc2805c1d5f43996eefd2886fe85 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Apr 18 21:32:45 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 18 21:32:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7715d1e7 x11-misc/wdm: Drop 1.28-r6 Closes: https://bugs.gentoo.org/783858 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/wdm/wdm-1.28-r6.ebuild | 48 ----------------------------------------- 1 file changed, 48 deletions(-) diff --git a/x11-misc/wdm/wdm-1.28-r6.ebuild b/x11-misc/wdm/wdm-1.28-r6.ebuild deleted file mode 100644 index 1ba2a83d76c..00000000000 --- a/x11-misc/wdm/wdm-1.28-r6.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit pam - -DESCRIPTION="WINGs Display Manager" -HOMEPAGE="https://github.com/voins/wdm" -SRC_URI="http://voins.program.ru/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86" -IUSE="pam selinux truetype" - -COMMON_DEPEND=">=x11-wm/windowmaker-0.70.0 - truetype? ( x11-libs/libXft ) - x11-libs/libXmu - x11-libs/libXt - x11-libs/libXpm - pam? ( sys-libs/pam )" -DEPEND="${COMMON_DEPEND} - sys-devel/gettext" -RDEPEND="${COMMON_DEPEND} - pam? ( >=sys-auth/pambase-20080219.1 )" - -PATCHES=( - "${FILESDIR}"/${P}-terminateServer.patch - "${FILESDIR}"/${P}-remove-fakehome.patch -) - -src_configure() { - econf \ - --with-wdmdir="${EPREFIX}"/etc/X11/wdm \ - $(use_enable pam) \ - $(use_enable selinux) -} - -src_install() { - default - - rm -f "${ED%/}"/etc/pam.d/wdm || die - - if use pam; then - pamd_mimic system-local-login wdm auth account password session - fi -}