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 C77B9158094 for ; Thu, 21 Jul 2022 13:32:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E90DE0BA4; Thu, 21 Jul 2022 13:32:12 +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 1177EE0BA4 for ; Thu, 21 Jul 2022 13:32:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 55EA0340F85 for ; Thu, 21 Jul 2022 13:32:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C034A456 for ; Thu, 21 Jul 2022 13:32:08 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1658410318.1094e45a73df9f21d7722ade484141b9787731c5.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ell/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ell/ell-0.51.ebuild dev-libs/ell/ell-0.52.ebuild X-VCS-Directories: dev-libs/ell/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 1094e45a73df9f21d7722ade484141b9787731c5 X-VCS-Branch: master Date: Thu, 21 Jul 2022 13:32:08 +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: 33e41cfa-0a8e-407a-a37c-2f91042f861e X-Archives-Hash: c4b2ca0c9bae2f6044c55913a99ec791 commit: 1094e45a73df9f21d7722ade484141b9787731c5 Author: Ben Kohler gentoo org> AuthorDate: Thu Jul 21 13:30:48 2022 +0000 Commit: Ben Kohler gentoo org> CommitDate: Thu Jul 21 13:31:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1094e45a dev-libs/ell: use random name for test socket Closes: https://bugs.gentoo.org/859538 Signed-off-by: Ben Kohler gentoo.org> dev-libs/ell/ell-0.51.ebuild | 2 ++ dev-libs/ell/ell-0.52.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dev-libs/ell/ell-0.51.ebuild b/dev-libs/ell/ell-0.51.ebuild index 946a72c8ea24..a1ef12c741f4 100644 --- a/dev-libs/ell/ell-0.51.ebuild +++ b/dev-libs/ell/ell-0.51.ebuild @@ -39,6 +39,8 @@ PATCHES=( src_prepare() { default + sed -i -e "s#/tmp/ell-test-bus#/tmp/ell-test-bus-$(uuidgen)#" \ + unit/test-dbus*.c unit/dbus.conf || die [[ "${PV}" == *9999 ]] && eautoreconf } diff --git a/dev-libs/ell/ell-0.52.ebuild b/dev-libs/ell/ell-0.52.ebuild index 56c48e4f83d1..50ed0735d11b 100644 --- a/dev-libs/ell/ell-0.52.ebuild +++ b/dev-libs/ell/ell-0.52.ebuild @@ -35,6 +35,8 @@ CONFIG_CHECK=" src_prepare() { default + sed -i -e "s#/tmp/ell-test-bus#/tmp/ell-test-bus-$(uuidgen)#" \ + unit/test-dbus*.c unit/dbus.conf || die [[ "${PV}" == *9999 ]] && eautoreconf }