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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 32FE5158090 for ; Sun, 1 May 2022 21:04:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 339B1E0A9F; Sun, 1 May 2022 21:04:34 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F027E0A9F for ; Sun, 1 May 2022 21:04:34 +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 0F39A341355 for ; Sun, 1 May 2022 21:04:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BB353BC for ; Sun, 1 May 2022 21:04:31 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1651439035.9932eeac53ced51c9ea4e560191c35addabd73d2.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/sdbus-c++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/sdbus-c++/sdbus-c++-0.9.0-r2.ebuild dev-cpp/sdbus-c++/sdbus-c++-1.1.0-r2.ebuild X-VCS-Directories: dev-cpp/sdbus-c++/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 9932eeac53ced51c9ea4e560191c35addabd73d2 X-VCS-Branch: master Date: Sun, 1 May 2022 21:04:31 +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: e6155971-4c9e-4b87-94a2-690fddf57390 X-Archives-Hash: 57db06a6a3fa6b47c80aa08816ae6fab commit: 9932eeac53ced51c9ea4e560191c35addabd73d2 Author: James Le Cuirot gentoo org> AuthorDate: Sun May 1 21:03:55 2022 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun May 1 21:03:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9932eeac dev-cpp/sdbus-c++: Fix musl build by disabling systemd features I have disabled these features unconditionally as I don't think they're needed, regardless of whether you're using musl. Closes: https://bugs.gentoo.org/841749 Signed-off-by: James Le Cuirot gentoo.org> dev-cpp/sdbus-c++/sdbus-c++-0.9.0-r2.ebuild | 5 ++++- dev-cpp/sdbus-c++/sdbus-c++-1.1.0-r2.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-cpp/sdbus-c++/sdbus-c++-0.9.0-r2.ebuild b/dev-cpp/sdbus-c++/sdbus-c++-0.9.0-r2.ebuild index 0dcc953b32f4..c5d7db3dcb17 100644 --- a/dev-cpp/sdbus-c++/sdbus-c++-0.9.0-r2.ebuild +++ b/dev-cpp/sdbus-c++/sdbus-c++-0.9.0-r2.ebuild @@ -81,7 +81,10 @@ src_configure() { --includedir "${SDP}/src" \ -Drootlibdir="${SDB}" \ -Dselinux=false \ - -Dstatic-libsystemd=pic + -Dstatic-libsystemd=pic \ + -Dgshadow=false \ + -Dsmack=false \ + -Dutmp=false # systemd doesn't generate the needed pkg-config file during configure. BUILD_DIR=${SDB} \ diff --git a/dev-cpp/sdbus-c++/sdbus-c++-1.1.0-r2.ebuild b/dev-cpp/sdbus-c++/sdbus-c++-1.1.0-r2.ebuild index acaaad6ab19a..17152a67a98c 100644 --- a/dev-cpp/sdbus-c++/sdbus-c++-1.1.0-r2.ebuild +++ b/dev-cpp/sdbus-c++/sdbus-c++-1.1.0-r2.ebuild @@ -85,7 +85,10 @@ src_configure() { --includedir "${SDP}/src" \ -Drootlibdir="${SDB}" \ -Dselinux=false \ - -Dstatic-libsystemd=pic + -Dstatic-libsystemd=pic \ + -Dgshadow=false \ + -Dsmack=false \ + -Dutmp=false # systemd doesn't generate the needed pkg-config file during configure. BUILD_DIR=${SDB} \