From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xarray/
Date: Tue, 07 Oct 2025 02:32:38 +0000 (UTC) [thread overview]
Message-ID: <1759804341.7ff35ba435670bf4a8effd38a2302ebe5347bdeb.mgorny@gentoo> (raw)
commit: 7ff35ba435670bf4a8effd38a2302ebe5347bdeb
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 7 01:59:00 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 7 02:32:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff35ba4
dev-python/xarray: Bump to 2025.10.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/xarray/Manifest | 1 +
dev-python/xarray/xarray-2025.10.0.ebuild | 131 ++++++++++++++++++++++++++++++
2 files changed, 132 insertions(+)
diff --git a/dev-python/xarray/Manifest b/dev-python/xarray/Manifest
index 092311866c19..5b9f5c6151af 100644
--- a/dev-python/xarray/Manifest
+++ b/dev-python/xarray/Manifest
@@ -1,3 +1,4 @@
+DIST xarray-2025.10.0.tar.gz 3058084 BLAKE2B 72df811cb7d7b0af3e6a718564e1061e45d116f108c8d3e431ec91fa0f514451588bd060c9243e773e6f4863294a388c0d48e1322f91a04144bccd40d8f1cc02 SHA512 03f1d3e6c124d85e84ba72ce941381c40dd39aab5ad413f129a6fb52bd0241b3d4a2105a72c5a5463945619b2d751658692e0ff38da20cc9df362eb480d7f9d2
DIST xarray-2025.6.1.tar.gz 3003185 BLAKE2B a75f68947922e922dad94dc6ab5454d9d2b2ec993e5fd06d760b2e3685b3feda2a88fb879e7ebb353b35dea5540fa8899eb8cba33ab0e5f9b59cb3fd885de1af SHA512 4fc7980f843f86c8e83015fbf9ea2c8440b046faaa1589a605cf1e2f64f9380e28e157c8afda5c0058b3fe8cfe01122ba8582f5d61b9f0eabdf7107ce6d81c0c
DIST xarray-2025.7.1.tar.gz 3013717 BLAKE2B 37abbeec6736745a9a0cc098bfdb36b76c5b07a1f762a3207e7a69bda1670ad464c328daabcb5845f65dcb0b9901f045c633fb12fed4524bcc7dacfcc259e65b SHA512 446e50cfa16a3ba54124dc9417203ea96f6232e05515de38dc191b06ee417e165fd2faefaf4718eddb9620d32675abc6c2125ac7555759eb003263a70662cb7e
DIST xarray-2025.8.0.tar.gz 3034425 BLAKE2B 089eecd4b8928bcc4cae2aa590a06f4d8b45b2886f1cb7f26114f97ea55914fecf83e58eec637c83123e1d81ff2bfb92f1d4ac18161b39495beb4975af71f255 SHA512 2ace4ae6736a5cde298f7d0da6b704326fa5b28d758744e0db022cc3e9ea6514ac447c5d7762fc273bc192ad7b31517edc0cda7a16302c3e9a63d5c952b1bcd2
diff --git a/dev-python/xarray/xarray-2025.10.0.ebuild b/dev-python/xarray/xarray-2025.10.0.ebuild
new file mode 100644
index 000000000000..7e0834c1a361
--- /dev/null
+++ b/dev-python/xarray/xarray-2025.10.0.ebuild
@@ -0,0 +1,131 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="N-D labeled arrays and datasets in Python"
+HOMEPAGE="
+ https://xarray.pydata.org/
+ https://github.com/pydata/xarray/
+ https://pypi.org/project/xarray/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="big-endian"
+
+RDEPEND="
+ >=dev-python/numpy-1.26[${PYTHON_USEDEP}]
+ >=dev-python/pandas-2.2[${PYTHON_USEDEP}]
+ >=dev-python/packaging-24.1[${PYTHON_USEDEP}]
+"
+# note: most of the test dependencies are optional
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+ test? (
+ dev-python/bottleneck[${PYTHON_USEDEP}]
+ dev-python/cftime[${PYTHON_USEDEP}]
+ dev-python/hypothesis[${PYTHON_USEDEP}]
+ dev-python/matplotlib[${PYTHON_USEDEP}]
+ !riscv? ( !x86? (
+ >=dev-python/netcdf4-1.6.0[bzip2,szip,${PYTHON_USEDEP}]
+ ) )
+ dev-python/toolz[${PYTHON_USEDEP}]
+ !hppa? ( >=dev-python/scipy-1.13[${PYTHON_USEDEP}] )
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-asyncio )
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+ # indirect pin, sigh
+ sed -i -e '/numpy/d' pyproject.toml || die
+}
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # TODO: these fail with filter errors even if netcdf4 is built
+ # with blosc/zstd support
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_compression_encoding[zstd]'
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_compression_encoding[blosc_lz]'
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_compression_encoding[blosc_lz4]'
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_compression_encoding[blosc_lz4hc]'
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_compression_encoding[blosc_zlib]'
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_compression_encoding[blosc_zstd]'
+ # requires h5netcdf package
+ xarray/tests/test_backends_datatree.py::TestNetCDF4DatatreeIO::test_open_datatree_specific_group
+ # NotImplementedError, seriously?
+ xarray/tests/test_backends.py::TestGenericNetCDF4InMemory::test_roundtrip_group_via_memoryview
+ )
+
+ if ! has_version ">=dev-python/scipy-1.4[${PYTHON_USEDEP}]" ; then
+ EPYTEST_DESELECT+=(
+ 'xarray/tests/test_missing.py::test_interpolate_na_2d[coords1]'
+ )
+
+ if ! has_version "dev-python/scipy[${PYTHON_USEDEP}]" ; then
+ EPYTEST_DESELECT+=(
+ xarray/tests/test_calendar_ops.py::test_interp_calendar
+ )
+ fi
+ fi
+
+ if use big-endian ; then
+ EPYTEST_DESELECT+=(
+ # Appears to be a numpy issue in display? See bug #916460.
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1677-09-21T00:12:43.145224193-ns-int64-20-True]'
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1970-09-21T00:12:44.145224808-ns-float64-1e+30-True]'
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1677-09-21T00:12:43.145225216-ns-float64--9.223372036854776e+18-True]'
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1677-09-21T00:12:43.145224193-ns-int64-None-False]'
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1677-09-21T00:12:43.145225-us-int64-None-False]'
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1970-01-01T00:00:01.000001-us-int64-None-False]'
+ 'xarray/tests/test_coding_times.py::test_roundtrip_datetime64_nanosecond_precision[1677-09-21T00:21:52.901038080-ns-float32-20.0-True]'
+ )
+ fi
+
+ if [[ ${ABI} != *64* ]]; then
+ EPYTEST_DESELECT+=(
+ # these tests hardcode object sizes for 64-bit arches
+ # https://github.com/pydata/xarray/issues/9127
+ xarray/tests/test_dataarray.py::TestDataArray::test_repr_multiindex
+ xarray/tests/test_dataarray.py::TestDataArray::test_repr_multiindex_long
+ xarray/tests/test_dataset.py::TestDataset::test_repr
+ xarray/tests/test_dataset.py::TestDataset::test_repr_multiindex
+ xarray/tests/test_datatree.py::TestRepr::test_doc_example
+ xarray/tests/test_datatree.py::TestRepr::test_repr_truncates_nodes
+ xarray/tests/test_formatting.py::test_array_repr_dtypes_unix
+
+ # converting timestamps into ns, causing an overflow
+ xarray/tests/test_cftimeindex.py::test_asi8
+ xarray/tests/test_coding_times.py::test_decode_cf_time_bounds
+ xarray/tests/test_coding_times.py::test_use_cftime_false_standard_calendar_in_range
+ xarray/tests/test_coding_times.py::test_decode_cf_datetime_non_standard_units
+ )
+ fi
+
+ case ${ARCH} in
+ arm64)
+ EPYTEST_DESELECT+=(
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_roundtrip_mask_and_scale[dtype0-create_unsigned_false_masked_scaled_data-create_encoded_unsigned_false_masked_scaled_data]'
+ 'xarray/tests/test_backends.py::TestNetCDF4Data::test_roundtrip_mask_and_scale[dtype1-create_unsigned_false_masked_scaled_data-create_encoded_unsigned_false_masked_scaled_data]'
+ )
+ ;;
+ esac
+
+ if ! has_version "dev-python/seaborn[${PYTHON_USEDEP}]"; then
+ EPYTEST_DESELECT+=(
+ xarray/tests/test_plot.py::TestContour::test_colors
+ )
+ fi
+
+ epytest -o addopts=
+}
next reply other threads:[~2025-10-07 2:32 UTC|newest]
Thread overview: 296+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-07 2:32 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-07 2:32 [gentoo-commits] repo/gentoo:master commit in: dev-python/xarray/ Michał Górny
2025-10-01 3:10 Michał Górny
2025-09-05 4:20 Michał Górny
2025-08-15 3:30 Michał Górny
2025-07-26 21:12 Sam James
2025-07-26 13:05 Michał Górny
2025-07-11 3:25 Michał Górny
2025-07-04 3:18 Michał Górny
2025-07-03 12:44 Michał Górny
2025-07-03 8:51 Sam James
2025-06-28 18:47 Sam James
2025-06-28 13:59 Arthur Zamarin
2025-06-28 9:41 Michał Górny
2025-06-13 4:16 Michał Górny
2025-06-11 6:22 Michał Górny
2025-05-17 13:23 Sam James
2025-04-30 5:36 Michał Górny
2025-04-24 13:38 Michał Górny
2025-04-24 8:07 Sam James
2025-04-22 12:49 Michał Górny
2025-04-22 12:49 Michał Górny
2025-04-05 17:08 Arthur Zamarin
2025-03-31 7:10 Michał Górny
2025-03-20 8:35 Arthur Zamarin
2025-03-20 6:49 Michał Górny
2025-03-20 6:49 Michał Górny
2025-02-15 9:23 Arthur Zamarin
2025-02-01 6:06 Michał Górny
2025-01-26 1:46 Sam James
2025-01-25 10:41 Sam James
2025-01-10 5:31 Michał Górny
2025-01-04 13:07 Michał Górny
2025-01-04 13:07 Michał Górny
2025-01-04 9:30 Michał Górny
2025-01-04 9:30 Michał Górny
2024-12-10 15:22 Sam James
2024-12-08 16:04 Michał Górny
2024-11-23 7:10 Michał Górny
2024-11-10 0:42 Jakov Smolić
2024-11-09 9:57 Arthur Zamarin
2024-10-25 4:04 Michał Górny
2024-10-19 19:20 Michał Górny
2024-10-19 19:20 Michał Górny
2024-10-19 18:37 Jakov Smolić
2024-10-19 17:55 Michał Górny
2024-10-19 17:53 Michał Górny
2024-10-19 17:33 Michał Górny
2024-09-12 4:43 Michał Górny
2024-07-31 5:52 Michał Górny
2024-07-27 9:28 Arthur Zamarin
2024-07-10 18:52 Michał Górny
2024-07-10 12:50 Michał Górny
2024-07-10 12:45 Michał Górny
2024-06-29 16:58 Michał Górny
2024-06-29 8:25 Sam James
2024-06-29 8:25 Sam James
2024-06-20 15:20 Michał Górny
2024-06-20 15:20 Michał Górny
2024-06-20 10:24 Sam James
2024-06-14 17:02 Michał Górny
2024-06-14 16:36 Michał Górny
2024-06-14 1:53 Michał Górny
2024-06-08 7:20 Arthur Zamarin
2024-06-08 7:15 Sam James
2024-06-07 23:40 Ionen Wolkens
2024-06-07 17:29 Michał Górny
2024-06-04 18:31 Arthur Zamarin
2024-06-01 17:29 Sam James
2024-06-01 7:25 Arthur Zamarin
2024-05-28 12:35 Sam James
2024-05-22 8:03 Michał Górny
2024-05-19 6:02 Michał Górny
2024-05-16 17:28 Arthur Zamarin
2024-05-13 14:03 Michał Górny
2024-05-07 18:31 Arthur Zamarin
2024-05-01 17:33 Michał Górny
2024-05-01 17:33 Michał Górny
2024-04-13 16:08 Michał Górny
2024-03-30 5:53 Michał Górny
2024-03-26 20:17 Ionen Wolkens
2024-03-07 20:22 Jakov Smolić
2024-03-07 17:09 Michał Górny
2024-03-02 13:39 Michał Górny
2024-03-02 12:26 Arthur Zamarin
2024-02-19 15:51 Michał Górny
2024-02-18 11:43 Jakov Smolić
2024-02-18 0:15 Sam James
2024-02-18 0:15 Sam James
2024-02-17 22:26 Sam James
2024-02-03 20:03 Michał Górny
2024-02-03 19:09 Sam James
2024-02-03 19:09 Sam James
2024-02-03 11:14 Sam James
2024-02-03 10:52 Sam James
2024-02-03 10:46 Sam James
2024-01-24 6:33 Michał Górny
2024-01-18 3:43 Michał Górny
2024-01-04 11:29 WANG Xuerui
2023-12-24 17:24 Michał Górny
2023-12-24 17:21 Arthur Zamarin
2023-12-24 1:02 Sam James
2023-12-24 1:02 Sam James
2023-12-24 1:02 Sam James
2023-12-24 1:02 Sam James
2023-12-10 19:18 Michał Górny
2023-12-10 18:29 Arthur Zamarin
2023-12-09 17:02 Michał Górny
2023-12-09 16:39 Arthur Zamarin
2023-12-09 15:47 Michał Górny
2023-12-09 15:30 Michał Górny
2023-12-09 14:22 Michał Górny
2023-12-09 13:52 Michał Górny
2023-12-09 6:53 Michał Górny
2023-12-08 19:39 Arthur Zamarin
2023-11-30 14:44 Michał Górny
2023-11-29 17:14 Michał Górny
2023-11-29 17:13 Sam James
2023-11-29 11:35 Michał Górny
2023-11-29 11:04 Michał Górny
2023-11-29 10:30 Michał Górny
2023-11-25 10:14 Arthur Zamarin
2023-11-23 13:27 Sam James
2023-11-22 12:12 Arthur Zamarin
2023-11-22 11:42 Arthur Zamarin
2023-11-22 11:11 Sam James
2023-11-19 20:07 Arthur Zamarin
2023-11-18 15:47 Michał Górny
2023-10-29 4:46 Michał Górny
2023-10-29 3:40 Sam James
2023-10-29 3:40 Sam James
2023-10-29 3:40 Sam James
2023-10-29 3:34 Sam James
2023-10-27 20:05 Sam James
2023-10-27 19:55 Arthur Zamarin
2023-10-27 19:32 Sam James
2023-10-27 19:32 Sam James
2023-10-24 21:11 Michał Górny
2023-10-20 4:19 Michał Górny
2023-09-26 16:56 Michał Górny
2023-09-25 22:47 Sam James
2023-09-25 18:54 Arthur Zamarin
2023-09-25 18:31 Arthur Zamarin
2023-09-25 18:31 Arthur Zamarin
2023-08-20 17:51 Michał Górny
2023-08-20 17:41 Michał Górny
2023-07-28 9:47 Michał Górny
2023-07-28 9:37 Sam James
2023-07-28 9:37 Sam James
2023-07-28 7:56 Sam James
2023-07-28 7:56 Sam James
2023-07-28 7:56 Sam James
2023-07-18 6:12 Michał Górny
2023-06-27 11:36 Michał Górny
2023-06-27 10:56 Sam James
2023-06-27 7:54 Sam James
2023-06-27 7:54 Sam James
2023-06-27 7:14 Sam James
2023-06-27 6:55 Sam James
2023-06-24 6:10 Michał Górny
2023-06-03 16:27 Michał Górny
2023-05-29 23:50 Sam James
2023-05-27 15:55 Sam James
2023-05-26 7:15 Sam James
2023-05-23 16:26 Arthur Zamarin
2023-05-23 15:58 Arthur Zamarin
2023-05-20 5:34 Michał Górny
2023-04-29 7:09 Michał Górny
2023-04-29 6:58 Arthur Zamarin
2023-04-28 17:33 Arthur Zamarin
2023-04-28 15:55 Arthur Zamarin
2023-04-28 15:55 Arthur Zamarin
2023-04-28 14:59 Arthur Zamarin
2023-04-28 14:49 Arthur Zamarin
2023-04-21 12:13 Michał Górny
2023-04-19 6:34 Michał Górny
2023-04-15 11:13 Michał Górny
2023-04-06 13:25 Michał Górny
2023-03-31 11:49 Arthur Zamarin
2023-03-31 11:49 Arthur Zamarin
2023-03-23 17:14 Michał Górny
2023-03-16 18:13 Michał Górny
2023-02-20 23:28 Sam James
2023-02-20 23:28 Sam James
2023-02-20 19:50 Arthur Zamarin
2023-02-20 19:22 Arthur Zamarin
2023-02-20 18:35 Michał Górny
2023-02-08 6:27 Michał Górny
2023-01-19 6:08 Michał Górny
2023-01-08 5:06 Michał Górny
2023-01-07 22:37 Sam James
2023-01-07 19:44 Sam James
2023-01-07 19:31 Arthur Zamarin
2023-01-07 18:57 Arthur Zamarin
2023-01-07 18:37 Arthur Zamarin
2023-01-07 18:05 Arthur Zamarin
2023-01-07 18:05 Arthur Zamarin
2022-12-10 14:33 Arthur Zamarin
2022-12-10 9:25 Arthur Zamarin
2022-12-10 8:59 Arthur Zamarin
2022-12-10 8:57 Arthur Zamarin
2022-12-03 9:09 Michał Górny
2022-11-14 15:03 Arthur Zamarin
2022-11-14 15:03 Arthur Zamarin
2022-11-11 12:01 Michał Górny
2022-11-07 10:20 Sam James
2022-11-07 10:11 Sam James
2022-11-07 8:03 Sam James
2022-11-06 7:46 Sam James
2022-11-06 7:25 Sam James
2022-11-06 7:25 Sam James
2022-11-05 14:34 Michał Górny
2022-11-04 10:31 Michał Górny
2022-11-04 9:02 Agostino Sarubbo
2022-11-04 8:16 Agostino Sarubbo
2022-11-03 22:04 Sam James
2022-11-03 20:13 Arthur Zamarin
2022-11-03 19:41 Arthur Zamarin
2022-11-03 19:30 Arthur Zamarin
2022-10-14 17:19 Andrew Ammerlaan
2022-10-14 5:08 Michał Górny
2022-10-01 9:26 Arthur Zamarin
2022-09-22 7:43 Agostino Sarubbo
2022-09-22 7:43 Agostino Sarubbo
2022-08-27 8:40 Agostino Sarubbo
2022-08-27 8:27 Agostino Sarubbo
2022-08-26 23:29 Sam James
2022-08-26 18:52 Arthur Zamarin
2022-07-23 6:22 Michał Górny
2022-05-06 8:18 Michał Górny
2022-05-06 8:07 Jakov Smolić
2022-04-19 16:43 Arthur Zamarin
2022-04-19 16:43 Arthur Zamarin
2022-04-19 13:46 Jakov Smolić
2022-04-19 13:46 Jakov Smolić
2022-04-19 12:24 Arthur Zamarin
2022-03-18 11:54 Arthur Zamarin
2022-03-16 10:06 Michał Górny
2022-03-15 18:16 Jakov Smolić
2022-03-15 17:56 Jakov Smolić
2022-02-07 11:36 Sam James
2022-02-01 10:06 Michał Górny
2022-01-29 7:23 Michał Górny
2022-01-11 15:01 Michał Górny
2022-01-11 12:40 Arthur Zamarin
2022-01-11 9:33 Arthur Zamarin
2022-01-11 3:49 Sam James
2022-01-11 3:49 Sam James
2022-01-10 19:54 Arthur Zamarin
2022-01-10 19:47 Arthur Zamarin
2021-12-12 18:47 Sam James
2021-12-12 18:27 Sam James
2021-12-12 18:27 Sam James
2021-12-12 9:45 Jakov Smolić
2021-12-12 9:45 Jakov Smolić
2021-12-10 10:39 Arthur Zamarin
2021-11-20 6:35 Sam James
2021-11-18 11:01 Sam James
2021-11-14 23:51 Sam James
2021-11-06 10:59 Michał Górny
2021-10-24 21:14 Sam James
2021-10-02 23:17 Sam James
2021-09-06 23:42 Sam James
2021-09-06 23:37 Sam James
2021-09-06 0:13 Sam James
2021-08-26 4:41 Agostino Sarubbo
2021-07-24 8:23 Michał Górny
2021-07-03 16:06 Michał Górny
2021-06-24 4:26 Agostino Sarubbo
2021-05-20 7:25 Michał Górny
2021-05-19 7:11 Michał Górny
2021-05-10 18:08 Michał Górny
2021-04-13 7:36 Agostino Sarubbo
2021-04-12 11:42 Michał Górny
2021-02-26 8:30 Michał Górny
2021-01-07 9:22 Michał Górny
2020-12-31 1:17 Sam James
2020-12-14 1:27 Sam James
2020-11-30 22:16 Michał Górny
2020-11-08 0:32 Sam James
2020-10-07 18:44 Joonas Niilola
2020-09-21 17:48 Michał Górny
2020-09-21 7:46 Michał Górny
2020-08-18 5:52 Sam James
2020-08-18 5:28 Sam James
2020-07-25 7:36 Michał Górny
2020-03-25 17:42 Agostino Sarubbo
2020-03-17 8:08 Michał Górny
2020-01-17 7:47 Michał Górny
2020-01-17 7:47 Michał Górny
2019-04-26 16:24 Virgil Dupras
2019-04-26 16:24 Virgil Dupras
2018-07-29 22:34 Patrice Clement
2018-01-06 13:39 Michał Górny
2017-07-12 19:29 Sebastien Fabbro
2016-12-03 13:45 Justin Lecher
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=1759804341.7ff35ba435670bf4a8effd38a2302ebe5347bdeb.mgorny@gentoo \
--to=mgorny@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