From: "Nowa Ammerlaan" <nowa@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tpm2-pytss/files/, dev-python/tpm2-pytss/
Date: Fri, 18 Apr 2025 14:20:34 +0000 (UTC) [thread overview]
Message-ID: <1744985764.a9f8de59d14d8cca367950d0ecfee3e223e39b39.nowa@gentoo> (raw)
commit: a9f8de59d14d8cca367950d0ecfee3e223e39b39
Author: Christopher Byrne <salah.coronya <AT> gmail <DOT> com>
AuthorDate: Thu Mar 6 19:15:14 2025 +0000
Commit: Nowa Ammerlaan <nowa <AT> gentoo <DOT> org>
CommitDate: Fri Apr 18 14:16:04 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f8de59
dev-python/tpm2-pytss: Respect CC when preprocessing
Closes: https://bugs.gentoo.org/902001
Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/40902
Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org>
...-pytss-2.3.0-use-CC-enviromental-variable.patch | 54 ++++++++++++++++++++++
dev-python/tpm2-pytss/tpm2-pytss-2.3.0-r1.ebuild | 48 +++++++++++++++++++
2 files changed, 102 insertions(+)
diff --git a/dev-python/tpm2-pytss/files/tpm2-pytss-2.3.0-use-CC-enviromental-variable.patch b/dev-python/tpm2-pytss/files/tpm2-pytss-2.3.0-use-CC-enviromental-variable.patch
new file mode 100644
index 000000000000..9e7de8ef7c03
--- /dev/null
+++ b/dev-python/tpm2-pytss/files/tpm2-pytss-2.3.0-use-CC-enviromental-variable.patch
@@ -0,0 +1,54 @@
+diff --git a/setup.py b/setup.py
+index 0e6208f..eec85ad 100644
+--- a/setup.py
++++ b/setup.py
+@@ -20,6 +20,14 @@ from textwrap import dedent
+ site.ENABLE_USER_SITE = "--user" in sys.argv[1:]
+
+
++def cpp_path():
++ return os.environ.get("CC", "cc")
++
++
++def cpp_args(args=[]):
++ return ["-E"] + args
++
++
+ class type_generator(build_ext):
+ cares = set(
+ (
+@@ -184,7 +192,9 @@ class type_generator(build_ext):
+ f"unable to find tss2_tpm2_types.h in {pk['include_dirs']}"
+ )
+ pdata = preprocess_file(
+- header_path, cpp_args=["-std=c99", "-D__extension__=", "-D__attribute__(x)="]
++ header_path,
++ cpp_path=cpp_path(),
++ cpp_args=cpp_args(["-std=c99", "-D__extension__=", "-D__attribute__(x)="]),
+ )
+ parser = c_parser.CParser()
+ ast = parser.parse(pdata, "tss2_tpm2_types.h")
+@@ -204,13 +214,16 @@ class type_generator(build_ext):
+ if policy_header_path:
+ pdata = preprocess_file(
+ policy_header_path,
+- cpp_args=[
+- "-std=c99",
+- "-D__extension__=",
+- "-D__attribute__(x)=",
+- "-D__float128=long double",
+- "-D_FORTIFY_SOURCE=0",
+- ],
++ cpp_path=cpp_path(),
++ cpp_args=cpp_args(
++ [
++ "-std=c99",
++ "-D__extension__=",
++ "-D__attribute__(x)=",
++ "-D__float128=long double",
++ "-D_FORTIFY_SOURCE=0",
++ ]
++ ),
+ )
+ parser = c_parser.CParser()
+ past = parser.parse(pdata, "tss2_policy.h")
diff --git a/dev-python/tpm2-pytss/tpm2-pytss-2.3.0-r1.ebuild b/dev-python/tpm2-pytss/tpm2-pytss-2.3.0-r1.ebuild
new file mode 100644
index 000000000000..73f5f426f8af
--- /dev/null
+++ b/dev-python/tpm2-pytss/tpm2-pytss-2.3.0-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python bindings for TSS"
+HOMEPAGE="
+ https://pypi.org/project/tpm2-pytss/
+ https://github.com/tpm2-software/tpm2-pytss/
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+fapi test"
+
+DEPEND="
+ app-crypt/tpm2-tss:=[fapi=]
+ fapi? ( >=app-crypt/tpm2-tss-3.0.3:= )
+ test? ( app-crypt/swtpm )
+"
+RDEPEND="${DEPEND}
+ dev-python/cffi[${PYTHON_USEDEP}]
+ dev-python/asn1crypto[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/pycparser[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/pkgconfig[${PYTHON_USEDEP}]
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.3.0-preprocess-as-C99.patch"
+ "${FILESDIR}/${PN}-2.3.0-use-CC-enviromental-variable.patch"
+ )
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+distutils_enable_tests pytest
next reply other threads:[~2025-04-18 14:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-18 14:20 Nowa Ammerlaan [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-02 14:50 [gentoo-commits] repo/gentoo:master commit in: dev-python/tpm2-pytss/files/, dev-python/tpm2-pytss/ Sam James
2024-03-04 14:54 Joonas Niilola
2022-09-05 13:07 Joonas Niilola
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1744985764.a9f8de59d14d8cca367950d0ecfee3e223e39b39.nowa@gentoo \
--to=nowa@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox