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 A709B158010 for ; Sat, 28 Jan 2023 19:19:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC27AE08FE; Sat, 28 Jan 2023 19:19:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C2040E08FE for ; Sat, 28 Jan 2023 19:19:50 +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 E419C340E97 for ; Sat, 28 Jan 2023 19:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80BB885B for ; Sat, 28 Jan 2023 19:19:48 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1674933585.4851df917d9c42839a315760f35a79dbd000e185.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/samba/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/samba/samba-4.15.12-r3.ebuild net-fs/samba/samba-4.15.12-r4.ebuild net-fs/samba/samba-4.16.7-r3.ebuild net-fs/samba/samba-4.16.7-r4.ebuild X-VCS-Directories: net-fs/samba/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 4851df917d9c42839a315760f35a79dbd000e185 X-VCS-Branch: master Date: Sat, 28 Jan 2023 19:19:48 +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: 5b0e422f-d738-4650-b224-ed7fdfc32ebe X-Archives-Hash: a55fc12957d3a6c065ec8b412671e747 commit: 4851df917d9c42839a315760f35a79dbd000e185 Author: Mike Gilbert gentoo org> AuthorDate: Sat Jan 28 19:15:23 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jan 28 19:19:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4851df91 net-fs/samba: remove empty dirs in /run and /var Closes: https://bugs.gentoo.org/892341 Signed-off-by: Mike Gilbert gentoo.org> net-fs/samba/{samba-4.15.12-r3.ebuild => samba-4.15.12-r4.ebuild} | 3 +++ net-fs/samba/{samba-4.16.7-r3.ebuild => samba-4.16.7-r4.ebuild} | 3 +++ 2 files changed, 6 insertions(+) diff --git a/net-fs/samba/samba-4.15.12-r3.ebuild b/net-fs/samba/samba-4.15.12-r4.ebuild similarity index 98% rename from net-fs/samba/samba-4.15.12-r3.ebuild rename to net-fs/samba/samba-4.15.12-r4.ebuild index 7cd4ba9cba8b..685dbfdbc549 100644 --- a/net-fs/samba/samba-4.15.12-r3.ebuild +++ b/net-fs/samba/samba-4.15.12-r4.ebuild @@ -270,6 +270,9 @@ multilib_src_install() { # smbspool_krb5_wrapper must only be accessible to root, bug #880739 find "${ED}" -type f -name "smbspool_krb5_wrapper" -exec chmod go-rwx {} + || die + # Remove empty runtime dirs created by build system (bug #892341) + find "${ED}"/{run,var} -type d -empty -delete || die + if multilib_is_native_abi ; then # install ldap schema for server (bug #491002) if use ldap ; then diff --git a/net-fs/samba/samba-4.16.7-r3.ebuild b/net-fs/samba/samba-4.16.7-r4.ebuild similarity index 98% rename from net-fs/samba/samba-4.16.7-r3.ebuild rename to net-fs/samba/samba-4.16.7-r4.ebuild index 3f91c4f83dab..3186d2557a34 100644 --- a/net-fs/samba/samba-4.16.7-r3.ebuild +++ b/net-fs/samba/samba-4.16.7-r4.ebuild @@ -310,6 +310,9 @@ multilib_src_install() { # smbspool_krb5_wrapper must only be accessible to root, bug #880739 find "${ED}" -type f -name "smbspool_krb5_wrapper" -exec chmod go-rwx {} + || die + # Remove empty runtime dirs created by build system (bug #892341) + find "${ED}"/{run,var} -type d -empty -delete || die + if multilib_is_native_abi ; then # Install ldap schema for server (bug #491002) if use ldap ; then