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 AEC1F1382C5 for ; Sat, 17 Mar 2018 13:12:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3F14E0863; Sat, 17 Mar 2018 13:12:32 +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 97A68E0863 for ; Sat, 17 Mar 2018 13:12:32 +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 1D460335C80 for ; Sat, 17 Mar 2018 13:12:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E992F232 for ; Sat, 17 Mar 2018 13:12:28 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1521292321.b52932dd20b186dccd48bf1d7300b8e743fe3077.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/libnss-mysql/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r2.ebuild X-VCS-Directories: sys-auth/libnss-mysql/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: b52932dd20b186dccd48bf1d7300b8e743fe3077 X-VCS-Branch: master Date: Sat, 17 Mar 2018 13:12:28 +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: 9dc2d9ee-e4fe-4a25-bb6c-5d3ccfcbf715 X-Archives-Hash: 9917895c57d1d5ec52c53ca28d9b5c47 commit: b52932dd20b186dccd48bf1d7300b8e743fe3077 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Mar 17 13:12:01 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Mar 17 13:12:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b52932dd sys-auth/libnss-mysql: Drop old Closes: https://bugs.gentoo.org/648830 Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../libnss-mysql-1.5_p20060915-r2.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r2.ebuild b/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r2.ebuild deleted file mode 100644 index aa1ec7dbf98..00000000000 --- a/sys-auth/libnss-mysql/libnss-mysql-1.5_p20060915-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 - -inherit eutils multilib autotools - -KEYWORDS="amd64 ppc ~sparc x86" - -DESCRIPTION="NSS MySQL Library" -HOMEPAGE="http://libnss-mysql.sourceforge.net/" -SRC_URI="http://libnss-mysql.sourceforge.net/snapshot/${PN}-${PV/1.5_p/}.tgz" -LICENSE="GPL-2" -SLOT="0" -IUSE="debug" - -DEPEND="virtual/mysql" -RDEPEND="${DEPEND}" -S="${WORKDIR}/${PN}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-no-automagic-debug.diff - eautoconf -} - -src_configure() { - # Usually, authentication libraries don't belong into usr. - # But here, it's required that the lib is in the same dir - # as libmysql, because else failures may occur on boot if - # udev tries to access a user / group that doesn't exist - # on the system before /usr is mounted. - econf --libdir="/usr/$(get_libdir)" \ - $(use_enable debug) -} - -src_install() { - emake DESTDIR="${D}" install || die - - find "${D}" -name '*.la' -delete - - newdoc sample/README README.sample - dodoc AUTHORS DEBUGGING FAQ INSTALL NEWS README THANKS \ - TODO UPGRADING ChangeLog - - for subdir in sample/{linux,freebsd,complex,minimal} ; do - docinto "${subdir}" - dodoc "${subdir}/"{*.sql,*.cfg} - done -}