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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A9F3F158042 for ; Wed, 30 Oct 2024 21:20:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBCF3E07A9; Wed, 30 Oct 2024 21:20:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AD13E07A9 for ; Wed, 30 Oct 2024 21:20:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48BB3342FA5 for ; Wed, 30 Oct 2024 21:20:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B151DB03 for ; Wed, 30 Oct 2024 21:20:27 +0000 (UTC) From: "Andreas K. Hüttel" 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 K. Hüttel" Message-ID: <1730323212.dfb8085c1a1a3f2a593f78d4bec8b64d768d53c4.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/utempter/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/utempter/utempter-0.5.5.6-r1.ebuild X-VCS-Directories: sys-apps/utempter/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: dfb8085c1a1a3f2a593f78d4bec8b64d768d53c4 X-VCS-Branch: master Date: Wed, 30 Oct 2024 21:20:27 +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: 625a46ac-cf14-48e3-a8d7-0ef3f8f18696 X-Archives-Hash: 8c966d9c0ff0fed6a118d9ad273f54f3 commit: dfb8085c1a1a3f2a593f78d4bec8b64d768d53c4 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Oct 30 21:17:46 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Oct 30 21:20:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfb8085c sys-apps/utempter: drop 0.5.5.6-r1 Bug: https://bugs.gentoo.org/898552 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-apps/utempter/utempter-0.5.5.6-r1.ebuild | 49 ---------------------------- 1 file changed, 49 deletions(-) diff --git a/sys-apps/utempter/utempter-0.5.5.6-r1.ebuild b/sys-apps/utempter/utempter-0.5.5.6-r1.ebuild deleted file mode 100644 index bcaf8b34e2b8..000000000000 --- a/sys-apps/utempter/utempter-0.5.5.6-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_PN="${P%.*}" -MY_P="${MY_PN}-${PV##*.}" - -inherit flag-o-matic rpm toolchain-funcs - -DESCRIPTION="App that allows non-privileged apps to write utmp (login) info" -HOMEPAGE="https://www.redhat.com/" -SRC_URI="mirror://gentoo/${MY_P}.src.rpm" -S="${WORKDIR}/${MY_PN}" - -LICENSE="|| ( MIT LGPL-2 )" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 sparc x86" - -BDEPEND="acct-group/utmp" -RDEPEND=" - ${BDEPEND} - !sys-libs/libutempter -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.5.5.6-no_utmpx.patch - "${FILESDIR}"/${PN}-0.5.5.6-fix-build-system.patch -) - -src_prepare() { - default - tc-export CC - append-cflags -Wall -} - -src_install() { - local myemakeargs=( - LIBDIR="/usr/$(get_libdir)" - RPM_BUILD_ROOT="${ED}" - ) - - emake "${myemakeargs[@]}" install - - dobin utmp - - fowners root:utmp /usr/sbin/utempter - fperms 2755 /usr/sbin/utempter -}