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 5F0D7138330 for ; Sat, 26 May 2018 20:31:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 269F7E0A6E; Sat, 26 May 2018 20:31:41 +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 F19ADE0A6D for ; Sat, 26 May 2018 20:31:40 +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 E60C4335C92 for ; Sat, 26 May 2018 20:31:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31AF32B3 for ; Sat, 26 May 2018 20:31:37 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527366687.d8948de003c8b33410e7ab3a0c707e9cb91a8b8a.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_mysql/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild X-VCS-Directories: sys-auth/pam_mysql/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: d8948de003c8b33410e7ab3a0c707e9cb91a8b8a X-VCS-Branch: master Date: Sat, 26 May 2018 20:31:37 +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: 7efa22f8-da49-4d47-ae35-05552fb9d1be X-Archives-Hash: aa13056359a1e720e46e6d300af73db5 commit: d8948de003c8b33410e7ab3a0c707e9cb91a8b8a Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 19:26:09 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 20:31:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8948de0 sys-auth/pam_mysql: drop EAPI=2 Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild | 38 -------------------------- 1 file changed, 38 deletions(-) diff --git a/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild b/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild deleted file mode 100644 index a521b12c035..00000000000 --- a/sys-auth/pam_mysql/pam_mysql-0.7_rc1-r4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 -inherit autotools libtool pam eutils - -DESCRIPTION="pam_mysql is a module for pam to authenticate users with mysql" -HOMEPAGE="http://pam-mysql.sourceforge.net/" - -SRC_URI="mirror://sourceforge/pam-mysql/${P/_rc/RC}.tar.gz" -DEPEND=">=sys-libs/pam-0.72 virtual/mysql" -RDEPEND="${DEPEND}" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ppc ~sparc x86" -IUSE="openssl" -S="${WORKDIR}/${P/_rc/RC}" - -src_prepare() { - epatch "${FILESDIR}/${P}-link-to-pam.diff" - epatch "${FILESDIR}/${P}-memleak.diff" - eautoreconf - elibtoolize -} - -src_configure() { - econf $(use_with openssl) -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" libdir="$(getpam_mod_dir)" install || die "install failed" - rm "${D}/$(getpam_mod_dir)/pam_mysql.la" || die "Failed to remove pam_mysql.la" - dodoc CREDITS ChangeLog NEWS README -}