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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D24D7158041 for ; Mon, 26 Feb 2024 10:36:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC727E2A00; Mon, 26 Feb 2024 10:36:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9686FE2A00 for ; Mon, 26 Feb 2024 10:36:45 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C9BD133BEE9 for ; Mon, 26 Feb 2024 10:36:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A173118C for ; Mon, 26 Feb 2024 10:36:43 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1708943789.c8d1ce0371f2ad86d55fde7d054ffacbf89e67e2.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/nfs-utils/nfs-utils-2.6.4-r10.ebuild X-VCS-Directories: net-fs/nfs-utils/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c8d1ce0371f2ad86d55fde7d054ffacbf89e67e2 X-VCS-Branch: master Date: Mon, 26 Feb 2024 10:36:43 +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: 02f6dfd8-1769-4dc8-8926-b3cb6e29cc11 X-Archives-Hash: 9231ad1c217b9f21d6d355708aee5aa9 commit: c8d1ce0371f2ad86d55fde7d054ffacbf89e67e2 Author: David Seifert gentoo org> AuthorDate: Mon Feb 26 10:36:29 2024 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 26 10:36:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d1ce03 net-fs/nfs-utils: remove obsolete workarounds Closes: https://github.com/gentoo/gentoo/pull/35536 Closes: https://bugs.gentoo.org/904718 Signed-off-by: David Seifert gentoo.org> net-fs/nfs-utils/nfs-utils-2.6.4-r10.ebuild | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/net-fs/nfs-utils/nfs-utils-2.6.4-r10.ebuild b/net-fs/nfs-utils/nfs-utils-2.6.4-r10.ebuild index 1a709d85f618..a50758b8b9eb 100644 --- a/net-fs/nfs-utils/nfs-utils-2.6.4-r10.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.6.4-r10.ebuild @@ -128,10 +128,6 @@ src_configure() { $(use_enable nfsv4 nfsv4server) $(use_enable uuid) $(use_with tcpd tcp-wrappers) - # XXX: Remove this hack after 2.6.3 - # See bug #904718. - # Patch: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=bc4a5deef9f820c55fdac3c0070364c17cd91cca - LIBS="-lsqlite3 -levent_core" ) econf "${myeconfargs[@]}" } @@ -210,19 +206,4 @@ pkg_postinst() { einfo "Copying default ${f##*/} from ${EPREFIX}/usr/$(get_libdir)/nfs to ${EPREFIX}/var/lib/nfs" cp -pPR "${f}" "${EROOT}"/var/lib/nfs/ done - - if systemd_is_booted; then - for v in ${REPLACING_VERSIONS}; do - if ver_test "${v}" -lt 1.3.0; then - ewarn "We have switched to upstream systemd unit files. Since" - ewarn "they got renamed, you should probably enable the new ones." - ewarn "You can run 'equery files nfs-utils | grep systemd'" - ewarn "to know what services you need to enable now." - fi - done - else - ewarn "If you use OpenRC, the nfsmount service has been replaced with nfsclient." - ewarn "If you were using nfsmount, please add nfsclient and netmount to the" - ewarn "same runlevel as nfsmount." - fi }