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 F388313933E for ; Sun, 18 Jul 2021 16:18:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 831E0E0CCE; Sun, 18 Jul 2021 16:18:05 +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 584BEE0CD5 for ; Sun, 18 Jul 2021 16:18:05 +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 08010342B63 for ; Sun, 18 Jul 2021 16:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E96D77DB for ; Sun, 18 Jul 2021 16:18:00 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626625052.92670031bcae20472384e7e90cd5ca49defcfb98.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/munge/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/munge/munge-0.5.13-r1.ebuild X-VCS-Directories: sys-auth/munge/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 92670031bcae20472384e7e90cd5ca49defcfb98 X-VCS-Branch: master Date: Sun, 18 Jul 2021 16:18:00 +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: 0da4cd4e-9e08-4c8b-89f8-5431aeac4c2d X-Archives-Hash: 8ef71f3537b43fcea4f760858b0fd953 commit: 92670031bcae20472384e7e90cd5ca49defcfb98 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Jul 18 11:22:33 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Jul 18 16:17:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92670031 sys-auth/munge: drop old version Closes: https://bugs.gentoo.org/781491 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> sys-auth/munge/munge-0.5.13-r1.ebuild | 69 ----------------------------------- 1 file changed, 69 deletions(-) diff --git a/sys-auth/munge/munge-0.5.13-r1.ebuild b/sys-auth/munge/munge-0.5.13-r1.ebuild deleted file mode 100644 index 0376f12d7bc..00000000000 --- a/sys-auth/munge/munge-0.5.13-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools user prefix - -DESCRIPTION="An authentication service for creating and validating credentials" -HOMEPAGE="https://github.com/dun/munge" -SRC_URI="https://github.com/dun/munge/releases/download/munge-${PV}/munge-${PV}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="debug gcrypt static-libs" - -DEPEND=" - app-arch/bzip2 - sys-libs/zlib - gcrypt? ( dev-libs/libgcrypt:0 ) - !gcrypt? ( dev-libs/openssl:0= )" -RDEPEND="${DEPEND}" - -pkg_setup() { - enewgroup munge - enewuser munge -1 -1 /var/lib/munge munge -} - -src_prepare() { - default - - hprefixify config/x_ac_path_openssl.m4 - - eautoreconf -} - -src_configure() { - econf \ - --localstatedir="${EPREFIX}"/var \ - --with-crypto-lib=$(usex gcrypt libgcrypt openssl) \ - $(use_enable debug) \ - $(use_enable static-libs static) -} - -src_install() { - local d - - default - - # 450830 - if [ -d "${ED}"/var/run ]; then - rm -rf "${ED}"/var/run || die - fi - - dodir /etc/munge - - for d in "init.d" "default" "sysconfig"; do - if [ -d "${ED}"/etc/${d} ]; then - rm -r "${ED}"/etc/${d} || die - fi - done - - newconfd "$(prefixify_ro "${FILESDIR}"/${PN}d.confd)" ${PN}d - newinitd "$(prefixify_ro "${FILESDIR}"/${PN}d.initd)" ${PN}d - - if ! use static-libs; then - find "${D}" -name '*.la' -delete || die - fi -}