public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ionen Wolkens" <ionen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/
Date: Thu, 13 Mar 2025 22:10:21 +0000 (UTC)	[thread overview]
Message-ID: <1741903569.074e76f99694b894ca7b7025ff9735c01a131154.ionen@gentoo> (raw)

commit:     074e76f99694b894ca7b7025ff9735c01a131154
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 13 12:29:35 2025 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Mar 13 22:06:09 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074e76f9

dev-util/maturin: add 1.8.3

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-util/maturin/Manifest             |   2 +
 dev-util/maturin/maturin-1.8.3.ebuild | 160 ++++++++++++++++++++++++++++++++++
 2 files changed, 162 insertions(+)

diff --git a/dev-util/maturin/Manifest b/dev-util/maturin/Manifest
index bf2bee76186f..789b0f508157 100644
--- a/dev-util/maturin/Manifest
+++ b/dev-util/maturin/Manifest
@@ -1,2 +1,4 @@
 DIST maturin-1.8.2-vendor.tar.xz 17297348 BLAKE2B 400ae0e41d3c3a7e330482902fe73c1def631bbdb32734e6fa110eb6d2d954b464d9feeca5727d8f551d30cb6868c3000afcaed452c3f10a661e6f03d79edd02 SHA512 c5faa7ff3c49e5097a27f19821bf4a355dd17ed74efae503ec1639cb8a695873cdc5a89a94da77fe7cb7cb1e1685ab895c801bbf94828c22d7c0ba29105213fa
 DIST maturin-1.8.2.gh.tar.gz 544160 BLAKE2B d5784b76ee7dbbb48818e3ef0acebe32cee423e787f9c4bdcc50af90656a34d1dd1a89c414948b07e983edc1047382b82a1590d4c0de0e59279be81e06bbbdfc SHA512 83ca2dc64e1933f18b66d06bb985f6834a41ae289cf74d01689158febda783157cbecfb5c10c6da9544eda501acb9fdc52dd9cd7f351c2c4c5c0c0a1e6cffc4f
+DIST maturin-1.8.3-vendor.tar.xz 15014308 BLAKE2B 5dec263a5297108e5ac36ca6a05f7013f0bcc1704e8b5038418ac7c17d979dc449e1a06ec3a5b6439498b3473e68765fd2ae69ed671b9d4d9aef8e20f325a1a9 SHA512 106e7d0a013f715e1eb8008d31518317bb7e66c3d429c2972ddcfb457afc89de4359d4d85f19fce50861eff219063e666106e284916290e6cca08e7dd6c54889
+DIST maturin-1.8.3.gh.tar.gz 544455 BLAKE2B 0e0115331a8e23d03b8c96348b505d9573988c1f6fdbf9c179d6c94a0d3aa3d448727babb9d7f6e85ae2bc3f2a8201c7b32dbba894228f0035055662449b1556 SHA512 b4f79df7b099777d6068d2705fd6ca6a79c0a96c77530dcca26fef5d09b39a57feabab9d3871fc5b4760df234955329222dc29a86df5404d880140f1a3736431

diff --git a/dev-util/maturin/maturin-1.8.3.ebuild b/dev-util/maturin/maturin-1.8.3.ebuild
new file mode 100644
index 000000000000..1c7441b0628e
--- /dev/null
+++ b/dev-util/maturin/maturin-1.8.3.ebuild
@@ -0,0 +1,160 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
+RUST_MIN_VER=1.75.0
+inherit cargo distutils-r1 flag-o-matic shell-completion toolchain-funcs
+
+DESCRIPTION="Build and publish crates with pyo3, rust-cpython and cffi bindings"
+HOMEPAGE="https://www.maturin.rs/"
+SRC_URI="
+	https://github.com/PyO3/maturin/archive/refs/tags/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+	https://dev.gentoo.org/~ionen/distfiles/${P}-vendor.tar.xz
+"
+# ^ tarball also includes test-crates' Cargo.lock(s) crates for tests
+
+# rustls+ring is unused, so openssl license can be skipped
+LICENSE="|| ( Apache-2.0 MIT ) doc? ( CC-BY-4.0 OFL-1.1 )"
+LICENSE+="
+	0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD Boost-1.0 MIT
+	MPL-2.0 Unicode-3.0 Unicode-DFS-2016
+" # crates
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="doc +ssl test"
+RESTRICT="!test? ( test )"
+
+TOMLI_DEPEND="$(python_gen_cond_dep 'dev-python/tomli[${PYTHON_USEDEP}]' 3.10)"
+DEPEND="
+	app-arch/xz-utils
+	ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="
+	${DEPEND}
+	${TOMLI_DEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( app-text/mdbook )
+	test? (
+		${TOMLI_DEPEND}
+		$(python_gen_cond_dep 'dev-python/cffi[${PYTHON_USEDEP}]' 'python*')
+		dev-python/boltons[${PYTHON_USEDEP}]
+		dev-python/virtualenv[${PYTHON_USEDEP}]
+		dev-vcs/git
+		elibc_musl? ( dev-util/patchelf )
+	)
+"
+
+QA_FLAGS_IGNORED="usr/bin/${PN}"
+
+src_prepare() {
+	distutils-r1_src_prepare
+
+	# we build the Rust executable (just once) via cargo_src_compile
+	sed -i -e '/setuptools_rust/d' -e '/rust_extensions/d' setup.py || die
+
+	if use test; then
+		# used to prevent use of network during tests, and silence pip
+		# if it finds unrelated issues with system packages (bug #913613)
+		cat > "${T}"/pip.conf <<-EOF || die
+			[global]
+			quiet = 2
+
+			[install]
+			no-index = yes
+			no-dependencies = yes
+		EOF
+
+		# uv does not work easily w/ network-sandbox, force virtualenv
+		sed -i 's/"uv"/"uv-not-found"/' tests/common/mod.rs || die
+
+		# increase timeouts for tests (bug #950332)
+		sed -i '/^#\[timeout/s/secs(60)/secs(300)/' tests/run.rs || die
+
+		# used by *git_sdist_generator tests
+		git init -q || die
+		git config --global user.email "larry@gentoo.org" || die
+		git config --global user.name "Larry the Cow" || die
+		git add . || die
+		git commit -qm init || die
+	fi
+}
+
+src_configure() {
+	export OPENSSL_NO_VENDOR=1
+
+	# https://github.com/rust-lang/stacker/issues/79
+	use s390 && ! is-flagq '-march=*' &&
+		append-cflags $(test-flags-CC -march=z10)
+
+	local myfeatures=(
+		# like release.yml + native-tls for better platform support than rustls
+		full
+		password-storage
+		$(usev ssl native-tls)
+	)
+
+	cargo_src_configure --no-default-features
+}
+
+python_compile_all() {
+	cargo_src_compile
+
+	use !doc || mdbook build -d html guide || die
+
+	if ! tc-is-cross-compiler; then
+		local maturin=$(cargo_target_dir)/maturin
+		"${maturin}" completions bash > "${T}"/${PN} || die
+		"${maturin}" completions fish > "${T}"/${PN}.fish || die
+		"${maturin}" completions zsh > "${T}"/_${PN} || die
+	else
+		ewarn "shell completion files were skipped due to cross-compilation"
+	fi
+}
+
+python_test() {
+	local -x MATURIN_TEST_PYTHON=${EPYTHON}
+	local -x PIP_CONFIG_FILE=${T}/pip.conf
+	local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1
+
+	# need this for (new) python versions not yet recognized by pyo3
+	local -x PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1
+
+	local skip=(
+		# picky cli output test that easily benignly fail (bug #937992)
+		--skip cli_tests
+		# avoid need for wasm over a single hello world test
+		--skip integration_wasm_hello_world
+		# fragile depending on rust version, also wants libpypy*-c.so for pypy
+		--skip pyo3_no_extension_module
+		# unimportant tests that require uv, and not obvious to get it
+		# to work with network-sandbox (not worth the trouble)
+		--skip develop_hello_world::case_2
+		--skip develop_pyo3_ffi_pure::case_2
+		# compliance test using zig requires an old libc to pass (bug #946967)
+		--skip integration_pyo3_mixed_py_subdir
+		# fails on sparc since rust-1.74 (bug #934573), skip for now given
+		# should not affect the pep517 backend which is all we need on sparc
+		$(usev sparc '--skip build_context::test::test_macosx_deployment_target')
+	)
+
+	cargo_src_test -- "${skip[@]}"
+}
+
+python_install_all() {
+	cargo_src_install
+
+	dodoc Changelog.md README.md
+	use doc && dodoc -r guide/html
+
+	if ! tc-is-cross-compiler; then
+		dobashcomp "${T}"/${PN}
+		dofishcomp "${T}"/${PN}.fish
+		dozshcomp "${T}"/_${PN}
+	fi
+}


             reply	other threads:[~2025-03-13 22:10 UTC|newest]

Thread overview: 313+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-13 22:10 Ionen Wolkens [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-13 22:10 [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/ Ionen Wolkens
2025-03-12 17:56 Sam James
2025-03-12 17:56 Sam James
2025-03-12 17:56 Sam James
2025-03-12 17:56 Sam James
2025-03-12 17:56 Sam James
2025-03-12 17:56 Sam James
2025-03-12 17:56 Sam James
2025-03-09  0:51 Ionen Wolkens
2025-02-27 11:33 Ionen Wolkens
2025-02-15  8:30 Ionen Wolkens
2025-02-15  8:27 Arthur Zamarin
2025-02-15  8:27 Arthur Zamarin
2025-02-15  8:27 Arthur Zamarin
2025-02-15  8:27 Arthur Zamarin
2025-02-15  8:23 Arthur Zamarin
2025-02-05 15:49 Ionen Wolkens
2025-01-19 18:35 Sam James
2025-01-19 18:03 Sam James
2025-01-12 14:08 Ionen Wolkens
2024-12-30 14:44 Ionen Wolkens
2024-12-26 22:40 Ionen Wolkens
2024-12-25 14:39 Ionen Wolkens
2024-12-18 12:14 Sam James
2024-12-18 12:14 Sam James
2024-12-18 12:14 Sam James
2024-12-18 12:14 Sam James
2024-12-18 12:14 Sam James
2024-12-18  5:14 Ionen Wolkens
2024-12-04 12:19 Ionen Wolkens
2024-12-04 12:19 Ionen Wolkens
2024-12-02 12:57 Ionen Wolkens
2024-11-26 17:20 Ionen Wolkens
2024-11-04 16:15 Ionen Wolkens
2024-10-31  0:33 Sam James
2024-10-15 14:33 Sam James
2024-10-14 23:37 Ionen Wolkens
2024-10-14  7:04 Sam James
2024-10-14  7:04 Sam James
2024-10-14  7:04 Sam James
2024-10-14  6:37 Sam James
2024-09-26  4:14 Ionen Wolkens
2024-09-26  4:14 Ionen Wolkens
2024-09-25 14:41 Ionen Wolkens
2024-09-24 15:53 Ionen Wolkens
2024-09-24 15:53 Ionen Wolkens
2024-09-13  1:23 Sam James
2024-09-12 12:27 Arthur Zamarin
2024-09-09 13:46 Sam James
2024-09-07 14:27 Sam James
2024-09-07 14:16 Arthur Zamarin
2024-09-07 13:21 Jakov Smolić
2024-09-01 13:15 Ionen Wolkens
2024-08-25 18:38 Arthur Zamarin
2024-08-22  1:52 Ionen Wolkens
2024-08-16 13:58 Sam James
2024-08-16  0:05 Ionen Wolkens
2024-07-31 19:14 Arthur Zamarin
2024-07-31 13:45 Arthur Zamarin
2024-07-31  9:41 Arthur Zamarin
2024-07-31  9:41 Arthur Zamarin
2024-07-07  6:09 Ionen Wolkens
2024-07-07  6:09 Ionen Wolkens
2024-07-02  3:56 Ionen Wolkens
2024-07-01  0:33 Ionen Wolkens
2024-06-30  6:10 Sam James
2024-06-30  6:10 Sam James
2024-06-30  6:10 Sam James
2024-06-30  5:23 Sam James
2024-06-30  5:10 Sam James
2024-06-30  5:10 Sam James
2024-06-17  9:39 James Le Cuirot
2024-06-04 19:36 Ionen Wolkens
2024-05-24  2:46 Ionen Wolkens
2024-05-11 11:35 Ionen Wolkens
2024-04-13  6:26 Arthur Zamarin
2024-04-13  6:17 Ionen Wolkens
2024-04-03 12:30 Ionen Wolkens
2024-03-26  4:42 Ionen Wolkens
2024-03-26  4:42 Ionen Wolkens
2024-03-25 15:18 Sam James
2024-03-25 15:18 Sam James
2024-03-25 14:54 Sam James
2024-03-25 14:54 Sam James
2024-03-21 14:41 Ionen Wolkens
2024-03-08 21:31 Ionen Wolkens
2024-03-08 18:28 Michał Górny
2024-03-08 16:00 Ionen Wolkens
2024-03-05  6:03 Ionen Wolkens
2024-01-08 12:59 Ionen Wolkens
2023-12-23 17:37 Arthur Zamarin
2023-12-23 15:32 Arthur Zamarin
2023-12-23 15:11 Sam James
2023-12-23 14:29 Arthur Zamarin
2023-12-23 14:29 Arthur Zamarin
2023-12-23 14:29 Arthur Zamarin
2023-12-23 14:29 Arthur Zamarin
2023-12-12 21:25 Ionen Wolkens
2023-12-02 16:26 Ionen Wolkens
2023-11-14 15:21 Ionen Wolkens
2023-11-09 15:49 Ionen Wolkens
2023-11-05 11:13 Arthur Zamarin
2023-11-05 10:23 Sam James
2023-11-05 10:04 Sam James
2023-11-05 10:04 Sam James
2023-11-05 10:04 Sam James
2023-11-05 10:04 Sam James
2023-11-05 10:04 Sam James
2023-10-25  7:58 Ionen Wolkens
2023-10-24 13:47 Ionen Wolkens
2023-10-04  7:40 Joonas Niilola
2023-10-02 16:25 Ionen Wolkens
2023-09-04 14:25 Ionen Wolkens
2023-09-04 13:21 Ionen Wolkens
2023-09-04  6:27 Arthur Zamarin
2023-09-04  6:27 Arthur Zamarin
2023-09-04  6:27 Arthur Zamarin
2023-09-04  6:27 Arthur Zamarin
2023-09-04  6:09 Sam James
2023-09-04  6:09 Sam James
2023-08-22 16:12 Ionen Wolkens
2023-08-17 11:00 Ionen Wolkens
2023-08-17 11:00 Ionen Wolkens
2023-08-15 15:01 Ionen Wolkens
2023-08-14 16:39 Ionen Wolkens
2023-08-06  9:36 Ionen Wolkens
2023-08-02 16:54 Sam James
2023-07-20 10:16 WANG Xuerui
2023-07-17 15:28 Ionen Wolkens
2023-07-15  8:19 Arthur Zamarin
2023-07-15  8:19 Arthur Zamarin
2023-07-15  6:08 Sam James
2023-07-15  3:10 Sam James
2023-07-14 16:20 Arthur Zamarin
2023-06-20  3:11 Ionen Wolkens
2023-06-11 15:04 Sam James
2023-06-11 15:04 Sam James
2023-06-11 13:32 Sam James
2023-06-11 13:32 Sam James
2023-06-11 13:32 Sam James
2023-06-10 14:07 Ionen Wolkens
2023-06-02  6:54 Ionen Wolkens
2023-05-28  3:14 Ionen Wolkens
2023-05-27 15:55 Ionen Wolkens
2023-05-26 23:16 Ionen Wolkens
2023-05-23 18:57 Ionen Wolkens
2023-05-23 15:16 Arthur Zamarin
2023-05-23 14:35 Ionen Wolkens
2023-05-20 15:44 Ionen Wolkens
2023-05-16 14:47 Ionen Wolkens
2023-05-07 15:42 Ionen Wolkens
2023-05-07 15:42 Ionen Wolkens
2023-05-07  8:47 Ionen Wolkens
2023-05-07  8:47 Ionen Wolkens
2023-05-06 14:28 Ionen Wolkens
2023-05-04 18:32 Ionen Wolkens
2023-04-19  5:58 Ionen Wolkens
2023-04-19  5:58 Ionen Wolkens
2023-04-06 15:02 Ionen Wolkens
2023-04-05 14:56 Ionen Wolkens
2023-04-05 14:56 Ionen Wolkens
2023-04-05 13:25 Ionen Wolkens
2023-04-05 13:25 Ionen Wolkens
2023-04-05 13:25 Ionen Wolkens
2023-03-28 10:45 Ionen Wolkens
2023-03-26  7:38 Ionen Wolkens
2023-03-25  3:19 Ionen Wolkens
2023-03-12  9:49 Ionen Wolkens
2023-03-09 20:13 Ionen Wolkens
2023-03-09 20:13 Ionen Wolkens
2023-03-03 11:14 Ionen Wolkens
2023-03-03 11:14 Ionen Wolkens
2023-02-25 22:26 Ionen Wolkens
2023-02-25 12:52 Ionen Wolkens
2023-02-24  9:02 Ionen Wolkens
2023-02-16  8:55 Ionen Wolkens
2023-02-15 19:23 Ionen Wolkens
2023-02-15 19:23 Ionen Wolkens
2023-02-15 19:23 Ionen Wolkens
2023-02-15  6:25 Ionen Wolkens
2023-02-14 12:14 Ionen Wolkens
2023-02-13 11:46 Ionen Wolkens
2023-02-12  8:04 Ionen Wolkens
2023-02-12  8:04 Ionen Wolkens
2023-02-01 21:04 Ionen Wolkens
2023-01-31 13:46 Ionen Wolkens
2023-01-31  3:34 Ionen Wolkens
2023-01-30 19:11 Ionen Wolkens
2023-01-26 15:13 Ionen Wolkens
2023-01-14 13:48 Ionen Wolkens
2023-01-14 13:48 Ionen Wolkens
2023-01-13  5:58 Ionen Wolkens
2023-01-13  5:58 Ionen Wolkens
2023-01-10 17:19 Ionen Wolkens
2023-01-10 17:19 Ionen Wolkens
2022-12-31 23:23 Ionen Wolkens
2022-12-29 20:29 Ionen Wolkens
2022-12-20 12:10 Ionen Wolkens
2022-12-19  7:23 Ionen Wolkens
2022-12-13  9:13 Ionen Wolkens
2022-12-11  1:58 Ionen Wolkens
2022-12-11  1:58 Ionen Wolkens
2022-12-08  5:31 Ionen Wolkens
2022-12-08  5:31 Ionen Wolkens
2022-12-05  9:50 Ionen Wolkens
2022-12-05  9:50 Ionen Wolkens
2022-12-01 14:50 Ionen Wolkens
2022-11-24 14:34 Ionen Wolkens
2022-11-20 17:12 Ionen Wolkens
2022-11-19 17:20 Ionen Wolkens
2022-11-19 17:20 Ionen Wolkens
2022-11-09 21:24 Ionen Wolkens
2022-11-09 21:24 Ionen Wolkens
2022-11-09 21:24 Ionen Wolkens
2022-11-07 19:30 Ionen Wolkens
2022-10-30 13:59 Ionen Wolkens
2022-10-29 11:19 Ionen Wolkens
2022-10-27 22:19 Ionen Wolkens
2022-10-22  8:32 Ionen Wolkens
2022-10-08 16:49 Arthur Zamarin
2022-10-08 16:03 Arthur Zamarin
2022-10-08  6:02 Ionen Wolkens
2022-10-04 19:58 Ionen Wolkens
2022-10-03 22:35 Ionen Wolkens
2022-09-28 21:27 Sam James
2022-09-27 23:46 Ionen Wolkens
2022-09-27 11:10 Ionen Wolkens
2022-09-17  8:42 Ionen Wolkens
2022-09-15 10:48 Ionen Wolkens
2022-09-15 10:48 Ionen Wolkens
2022-09-15 10:48 Ionen Wolkens
2022-08-14 19:33 Ionen Wolkens
2022-08-13 11:17 Arthur Zamarin
2022-08-13  6:57 Arthur Zamarin
2022-08-09  8:33 Ionen Wolkens
2022-08-07 13:59 Ionen Wolkens
2022-07-28 14:05 Ionen Wolkens
2022-07-28 12:21 Jakov Smolić
2022-07-28 12:21 Jakov Smolić
2022-07-28  4:13 Ionen Wolkens
2022-07-28  4:13 Ionen Wolkens
2022-07-26 15:41 Ionen Wolkens
2022-07-22 12:36 Ionen Wolkens
2022-07-21  0:14 Ionen Wolkens
2022-07-12 21:39 Ionen Wolkens
2022-07-10  1:03 Ionen Wolkens
2022-07-10  1:03 Ionen Wolkens
2022-07-06  8:57 Ionen Wolkens
2022-06-28  7:46 Ionen Wolkens
2022-06-19 23:18 Yixun Lan
2022-06-19  9:15 Jakov Smolić
2022-06-18  9:31 Ionen Wolkens
2022-06-18  9:31 Ionen Wolkens
2022-06-18  9:31 Ionen Wolkens
2022-06-18  6:47 Michał Górny
2022-06-16 13:59 Ionen Wolkens
2022-06-16 13:16 Ionen Wolkens
2022-06-16 13:16 Ionen Wolkens
2022-06-06  8:26 Ionen Wolkens
2022-06-02 15:07 Ionen Wolkens
2022-06-02 15:07 Ionen Wolkens
2022-05-29 12:20 Ionen Wolkens
2022-05-26  6:07 Ionen Wolkens
2022-05-18 21:38 Ionen Wolkens
2022-05-16 18:40 Ionen Wolkens
2022-05-16 18:40 Ionen Wolkens
2022-05-16  6:45 Ionen Wolkens
2022-05-13 14:51 Ionen Wolkens
2022-05-07  8:49 Ionen Wolkens
2022-05-07  8:49 Ionen Wolkens
2022-04-25 23:14 Ionen Wolkens
2022-04-25 21:00 Ionen Wolkens
2022-04-07 12:20 Ionen Wolkens
2022-04-01 16:17 Ionen Wolkens
2022-03-30  7:16 Ionen Wolkens
2022-03-30  7:16 Ionen Wolkens
2022-03-15 20:03 Ionen Wolkens
2022-03-14 11:43 Ionen Wolkens
2022-03-09 13:29 Ionen Wolkens
2022-02-11 23:17 Ionen Wolkens
2022-02-09 15:33 Ionen Wolkens
2022-02-09 15:33 Ionen Wolkens
2022-02-09 15:33 Ionen Wolkens
2022-01-13  8:06 Ionen Wolkens
2021-12-31 17:03 Ionen Wolkens
2021-12-20 19:56 Ionen Wolkens
2021-12-16 19:11 Ionen Wolkens
2021-12-16 19:11 Ionen Wolkens
2021-12-06 21:21 Ionen Wolkens
2021-12-06 21:21 Ionen Wolkens
2021-12-01 10:05 Ionen Wolkens
2021-12-01  4:01 Ionen Wolkens
2021-12-01  4:01 Ionen Wolkens
2021-11-29 14:55 Ionen Wolkens
2021-11-29 14:55 Ionen Wolkens
2021-11-26 18:19 Ionen Wolkens
2021-11-21 14:38 Ionen Wolkens
2021-11-19 16:53 Ionen Wolkens
2021-10-30 13:10 Ionen Wolkens
2021-10-24 22:10 Ionen Wolkens
2021-10-22 14:35 Agostino Sarubbo
2021-10-19  0:12 Sam James
2021-10-15 15:53 Ionen Wolkens
2021-10-15 15:53 Ionen Wolkens
2021-10-15 15:53 Ionen Wolkens
2021-10-15 15:53 Ionen Wolkens
2021-10-15 15:53 Ionen Wolkens
2021-07-18 13:21 Stefan Strogin
2021-06-22 13:53 Stefan Strogin
2021-06-21 11:33 Stefan Strogin
2021-06-21 10:47 Stefan Strogin
2021-06-21 10:09 Stefan Strogin

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=1741903569.074e76f99694b894ca7b7025ff9735c01a131154.ionen@gentoo \
    --to=ionen@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