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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7A481138350 for ; Tue, 28 Apr 2020 07:45:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42A14E09C3; Tue, 28 Apr 2020 07:44:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17D4DE09C3 for ; Tue, 28 Apr 2020 07:44:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 915FE34F01B for ; Tue, 28 Apr 2020 07:44:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82F15201 for ; Tue, 28 Apr 2020 07:44:32 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1588059846.31454f0e773a3d17201258e778b5e29ea9cd7217.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/trousers/files/, app-crypt/trousers/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/trousers/files/trousers-0.3.14-fno-common.patch app-crypt/trousers/trousers-0.3.14-r2.ebuild X-VCS-Directories: app-crypt/trousers/ app-crypt/trousers/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 31454f0e773a3d17201258e778b5e29ea9cd7217 X-VCS-Branch: master Date: Tue, 28 Apr 2020 07:44:32 +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: dfa37eb7-de32-44b8-bc67-11ae52d63d6a X-Archives-Hash: 57c94ab0ab70930d7aa310287e6b1a71 commit: 31454f0e773a3d17201258e778b5e29ea9cd7217 Author: Salah Coronya gmail com> AuthorDate: Sat Apr 25 04:03:52 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Apr 28 07:44:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31454f0e app-crypt/trousers: Fix -fno-common/gcc10 compile error Closes: https://bugs.gentoo.org/707244 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Salah Coronya gmail.com> Closes: https://github.com/gentoo/gentoo/pull/15509 Signed-off-by: Joonas Niilola gentoo.org> .../files/trousers-0.3.14-fno-common.patch | 15 +++++++++ app-crypt/trousers/trousers-0.3.14-r2.ebuild | 39 ++-------------------- 2 files changed, 17 insertions(+), 37 deletions(-) diff --git a/app-crypt/trousers/files/trousers-0.3.14-fno-common.patch b/app-crypt/trousers/files/trousers-0.3.14-fno-common.patch new file mode 100644 index 00000000000..5046bc70883 --- /dev/null +++ b/app-crypt/trousers/files/trousers-0.3.14-fno-common.patch @@ -0,0 +1,15 @@ +diff --git a/src/include/tcsd.h b/src/include/tcsd.h +index 5b9462b..05bae97 100644 +--- a/src/include/tcsd.h ++++ b/src/include/tcsd.h +@@ -166,8 +166,8 @@ void thread_signal_init(); + + /* signal handling */ + #ifndef __APPLE__ +-struct sigaction tcsd_sa_int; +-struct sigaction tcsd_sa_chld; ++extern struct sigaction tcsd_sa_int; ++extern struct sigaction tcsd_sa_chld; + #endif + + #endif diff --git a/app-crypt/trousers/trousers-0.3.14-r2.ebuild b/app-crypt/trousers/trousers-0.3.14-r2.ebuild index 98591153d56..b94cc955e2d 100644 --- a/app-crypt/trousers/trousers-0.3.14-r2.ebuild +++ b/app-crypt/trousers/trousers-0.3.14-r2.ebuild @@ -29,6 +29,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}/${PN}-0.3.13-nouseradd.patch" "${FILESDIR}/${P}-libressl.patch" + "${FILESDIR}/${P}-fno-common.patch" ) DOCS="AUTHORS ChangeLog NICETOHAVES README TODO" @@ -37,45 +38,9 @@ DOC_CONTENTS=" If you have problems starting tcsd, please check permissions and ownership on /dev/tpm* and ~tss/system.data " - S="${WORKDIR}" -pkg_setup() { - # Check for driver (not sure it can be an rdep, because ot depends on the - # version of virtual/linux-sources... Is that supported by portage?) - linux-info_pkg_setup - local tpm_kernel_version tpm_kernel_present tpm_module - kernel_is ge 2 6 12 && tpm_kernel_version="yes" - if linux_config_exists; then - linux_chkconfig_present TCG_TPM && tpm_kernel_present="yes" - else - ewarn "No kernel configuration could be found." - fi - has_version app-crypt/tpm-emulator && tpm_module="yes" - if [[ -n "${tpm_kernel_present}" ]]; then - einfo "Good, you seem to have in-kernel TPM support." - elif [[ -n "${tpm_module}" ]]; then - einfo "Good, you seem to have TPM support with the external module." - if [[ -n "${tpm_kernel_version}" ]]; then - elog - elog "Note that since you have a >=2.6.12 kernel, you could use" - elog "the in-kernel driver instead of (CONFIG_TCG_TPM)." - fi - elif [[ -n "${tpm_kernel_version}" ]]; then - eerror - eerror "To use this package, you will have to activate TPM support" - eerror "in your kernel configuration. That's at least CONFIG_TCG_TPM," - eerror "plus probably a chip specific driver (like CONFIG_TCG_ATMEL)." - eerror - else - eerror - eerror "To use this package, you should install a TPM driver." - eerror "You can have the following options:" - eerror " - install app-crypt/tpm-emulator" - eerror " - switch to a >=2.6.12 kernel and compile the kernel module" - eerror - fi -} +CONFIG_CHECK="~TCG_TPM" src_prepare() { default