From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cython/
Date: Wed, 5 Jun 2024 16:16:49 +0000 (UTC) [thread overview]
Message-ID: <1717604123.27332dcd2ae6aa0aed59ae5ac002390c11240ef5.mgorny@gentoo> (raw)
commit: 27332dcd2ae6aa0aed59ae5ac002390c11240ef5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 5 16:15:23 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 5 16:15:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27332dcd
dev-python/cython: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/cython/Manifest | 2 -
dev-python/cython/cython-3.0.8.ebuild | 84 -----------------------------------
dev-python/cython/cython-3.0.9.ebuild | 84 -----------------------------------
3 files changed, 170 deletions(-)
diff --git a/dev-python/cython/Manifest b/dev-python/cython/Manifest
index 460c3e92d543..3cdcf35a3370 100644
--- a/dev-python/cython/Manifest
+++ b/dev-python/cython/Manifest
@@ -1,3 +1 @@
DIST cython-3.0.10.gh.tar.gz 2771679 BLAKE2B f0813afc291bdc4940cd6770a368eca4f6d9fd728e41e9c341970512196154be900600146f98ce1e5a056eaeeda2df2a59fea2a9973c3ec275fe605bfd12e418 SHA512 97aa831cea96c1f3c51653c51fadb0aea8bdfdb076a2c898862637f52b826bcb9162d1b7aade3304c5650d0b894cb1083052f036365d79cd3d390e0486b33ac5
-DIST cython-3.0.8.gh.tar.gz 2764668 BLAKE2B 03202ea480fa398d2b0893cc96185467009c783cf4451fc5d1c09ec229398bc084276680ed2b64acf63253744f827427e03674be3e5985d5a2912d9f338c786a SHA512 1070fc278401990595d177b0e6396bc1eba2ea8234a7c5bb26399b6b7284de7791ee5fa60ef74d06d0f4120b9c877bfd7703a7d701838f1634737526c614b860
-DIST cython-3.0.9.gh.tar.gz 2769345 BLAKE2B 2a21b5e7060727d727902a08d7e038dacc047b724ebaa496ba5768542e28eec3c6198062ac3dd774a4321204752b373516f193f01bc6951e5f38b6029754647e SHA512 7899474882faab14716973783bbb46b981eab48192791acbbd06133efee83bfa9ace0e9a0272b0a44061a95ed94cdceaa98c4100f843220f5987791e36fa00e6
diff --git a/dev-python/cython/cython-3.0.8.ebuild b/dev-python/cython/cython-3.0.8.ebuild
deleted file mode 100644
index 65a4fd8e36be..000000000000
--- a/dev-python/cython/cython-3.0.8.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{10..12} )
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 multiprocessing toolchain-funcs
-
-MY_P=${P/_rc/rc}
-DESCRIPTION="A Python to C compiler"
-HOMEPAGE="
- https://cython.org/
- https://github.com/cython/cython/
- https://pypi.org/project/Cython/
-"
-SRC_URI="
- https://github.com/cython/cython/archive/${PV/_rc/rc}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- ${RDEPEND}
- test? (
- $(python_gen_cond_dep '
- dev-python/numpy[${PYTHON_USEDEP}]
- ' "${PYTHON_TESTED[@]}")
- )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.29.22-spawn-multiprocessing.patch"
- "${FILESDIR}/${PN}-0.29.23-test_exceptions-py310.patch"
- "${FILESDIR}/${PN}-0.29.23-pythran-parallel-install.patch"
-)
-
-distutils_enable_sphinx docs \
- dev-python/jinja \
- dev-python/sphinx-issues \
- dev-python/sphinx-tabs
-
-python_compile() {
- # Python gets confused when it is in sys.path before build.
- local -x PYTHONPATH=
-
- distutils-r1_python_compile
-}
-
-python_test() {
- if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
- einfo "Skipping tests on ${EPYTHON} (xfail)"
- return
- fi
-
- # Needed to avoid confusing cache tests
- unset CYTHON_FORCE_REGEN
-
- tc-export CC
- # https://github.com/cython/cython/issues/1911
- local -x CFLAGS="${CFLAGS} -fno-strict-overflow"
- "${PYTHON}" runtests.py \
- -vv \
- -j "$(makeopts_jobs)" \
- --work-dir "${BUILD_DIR}"/tests \
- --no-examples \
- --no-code-style \
- || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
- local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/cython/cython-3.0.9.ebuild b/dev-python/cython/cython-3.0.9.ebuild
deleted file mode 100644
index 3b1f0323887f..000000000000
--- a/dev-python/cython/cython-3.0.9.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{10..12} )
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1 multiprocessing toolchain-funcs
-
-MY_P=${P/_rc/rc}
-DESCRIPTION="A Python to C compiler"
-HOMEPAGE="
- https://cython.org/
- https://github.com/cython/cython/
- https://pypi.org/project/Cython/
-"
-SRC_URI="
- https://github.com/cython/cython/archive/${PV/_rc/rc}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- ${RDEPEND}
- test? (
- $(python_gen_cond_dep '
- dev-python/numpy[${PYTHON_USEDEP}]
- ' "${PYTHON_TESTED[@]}")
- )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.29.22-spawn-multiprocessing.patch"
- "${FILESDIR}/${PN}-0.29.23-test_exceptions-py310.patch"
- "${FILESDIR}/${PN}-0.29.23-pythran-parallel-install.patch"
-)
-
-distutils_enable_sphinx docs \
- dev-python/jinja \
- dev-python/sphinx-issues \
- dev-python/sphinx-tabs
-
-python_compile() {
- # Python gets confused when it is in sys.path before build.
- local -x PYTHONPATH=
-
- distutils-r1_python_compile
-}
-
-python_test() {
- if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
- einfo "Skipping tests on ${EPYTHON} (xfail)"
- return
- fi
-
- # Needed to avoid confusing cache tests
- unset CYTHON_FORCE_REGEN
-
- tc-export CC
- # https://github.com/cython/cython/issues/1911
- local -x CFLAGS="${CFLAGS} -fno-strict-overflow"
- "${PYTHON}" runtests.py \
- -vv \
- -j "$(makeopts_jobs)" \
- --work-dir "${BUILD_DIR}"/tests \
- --no-examples \
- --no-code-style \
- || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
- local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt )
- distutils-r1_python_install_all
-}
next reply other threads:[~2024-06-05 16:16 UTC|newest]
Thread overview: 314+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-05 16:16 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 11:00 [gentoo-commits] repo/gentoo:master commit in: dev-python/cython/ Arthur Zamarin
2025-03-08 11:00 Arthur Zamarin
2025-03-08 11:00 Arthur Zamarin
2025-03-08 11:00 Arthur Zamarin
2025-03-08 10:59 Arthur Zamarin
2025-03-08 10:59 Arthur Zamarin
2025-03-08 10:59 Arthur Zamarin
2025-02-15 14:16 Michał Górny
2025-02-12 4:16 Michał Górny
2024-10-31 5:00 Michał Górny
2024-10-30 20:51 Sam James
2024-10-30 20:51 Sam James
2024-10-08 18:22 Sam James
2024-09-01 19:46 Arthur Zamarin
2024-09-01 19:46 Arthur Zamarin
2024-09-01 19:46 Arthur Zamarin
2024-09-01 16:40 Arthur Zamarin
2024-08-24 9:05 Arthur Zamarin
2024-08-06 4:45 Michał Górny
2024-06-05 16:16 Michał Górny
2024-05-09 18:52 Michał Górny
2024-04-20 11:46 Sam James
2024-04-20 11:23 Michał Górny
2024-03-31 3:10 Michał Górny
2024-03-22 7:12 Sam James
2024-03-22 6:14 Arthur Zamarin
2024-03-22 6:14 Arthur Zamarin
2024-03-22 3:58 Sam James
2024-03-22 3:58 Sam James
2024-03-22 3:58 Sam James
2024-03-22 3:58 Sam James
2024-03-10 13:19 Michał Górny
2024-03-10 8:17 Sam James
2024-03-10 8:17 Sam James
2024-03-06 7:06 Michał Górny
2024-02-08 2:09 Ionen Wolkens
2024-02-08 2:09 Ionen Wolkens
2024-02-08 2:09 Ionen Wolkens
2024-02-08 2:09 Ionen Wolkens
2024-02-08 2:09 Ionen Wolkens
2024-02-08 2:09 Ionen Wolkens
2024-01-14 3:10 Sam James
2024-01-10 21:12 Michał Górny
2024-01-06 19:30 Viorel Munteanu
2024-01-04 5:41 Ionen Wolkens
2023-12-23 19:57 Arthur Zamarin
2023-12-23 19:57 Arthur Zamarin
2023-12-23 14:29 Arthur Zamarin
2023-12-22 10:05 Michał Górny
2023-12-22 5:07 Sam James
2023-12-21 0:07 Ionen Wolkens
2023-12-20 1:13 Sam James
2023-12-20 1:13 Sam James
2023-12-15 20:42 Sam James
2023-12-11 4:33 Arthur Zamarin
2023-11-26 20:23 Arthur Zamarin
2023-11-24 17:29 Arthur Zamarin
2023-11-23 19:53 Sam James
2023-11-22 11:06 Michał Górny
2023-10-31 7:53 Michał Górny
2023-10-18 5:06 Michał Górny
2023-10-01 18:18 Arthur Zamarin
2023-10-01 18:18 Arthur Zamarin
2023-09-30 9:00 Sam James
2023-09-30 5:44 Arthur Zamarin
2023-09-21 20:11 Sam James
2023-08-28 4:05 Sam James
2023-08-28 4:05 Sam James
2023-08-25 19:13 Sam James
2023-08-21 11:39 Michał Górny
2023-08-21 11:08 Sam James
2023-08-21 11:08 Sam James
2023-08-21 11:08 Sam James
2023-08-21 3:50 Sam James
2023-08-20 5:43 Sam James
2023-08-20 5:43 Sam James
2023-08-20 5:43 Sam James
2023-08-19 18:07 Arthur Zamarin
2023-08-19 16:51 Arthur Zamarin
2023-08-19 16:44 Arthur Zamarin
2023-08-19 16:23 Arthur Zamarin
2023-08-19 16:19 Arthur Zamarin
2023-08-19 16:19 Arthur Zamarin
2023-08-19 16:08 Arthur Zamarin
2023-07-17 17:53 Sam James
2023-07-13 6:05 Sam James
2023-06-27 18:30 Sam James
2023-06-27 10:19 Sam James
2023-06-27 9:08 Jakov Smolić
2023-06-27 7:54 Sam James
2023-06-27 6:34 Sam James
2023-06-27 5:19 Jakov Smolić
2023-06-27 5:19 Jakov Smolić
2023-05-27 8:55 Michał Górny
2023-05-27 7:52 Arthur Zamarin
2023-05-27 7:52 Arthur Zamarin
2023-05-25 3:18 Sam James
2023-05-25 3:18 Sam James
2023-05-24 10:05 Sam James
2023-05-24 10:03 Sam James
2023-05-24 10:01 Sam James
2023-05-24 9:18 Sam James
2023-05-24 9:18 Sam James
2023-05-23 19:15 Arthur Zamarin
2023-05-23 19:15 Arthur Zamarin
2023-05-23 17:48 Arthur Zamarin
2023-05-23 16:00 Arthur Zamarin
2023-05-23 15:47 Arthur Zamarin
2023-05-23 15:46 Arthur Zamarin
2023-05-02 17:18 Michał Górny
2023-04-02 19:38 Sam James
2023-03-31 12:19 Michał Górny
2023-03-31 11:52 Arthur Zamarin
2023-03-31 11:49 Arthur Zamarin
2023-03-31 11:49 Arthur Zamarin
2023-03-31 11:49 Arthur Zamarin
2023-03-27 16:49 Michał Górny
2023-03-25 3:32 Sam James
2023-03-25 3:32 Sam James
2023-03-16 14:04 Arthur Zamarin
2023-03-05 13:35 Arthur Zamarin
2023-02-17 0:56 Sam James
2023-01-06 15:27 Michał Górny
2022-08-31 17:38 Michał Górny
2022-08-31 12:05 Agostino Sarubbo
2022-08-31 12:05 Agostino Sarubbo
2022-08-31 12:04 Agostino Sarubbo
2022-08-31 12:03 Agostino Sarubbo
2022-08-31 10:27 Arthur Zamarin
2022-08-31 5:15 Agostino Sarubbo
2022-08-30 20:35 Sam James
2022-08-30 18:40 Jakov Smolić
2022-07-29 10:59 Michał Górny
2022-07-07 5:49 Michał Górny
2022-07-06 16:35 Arthur Zamarin
2022-06-28 15:44 Arthur Zamarin
2022-06-15 7:16 Agostino Sarubbo
2022-06-14 7:11 Agostino Sarubbo
2022-06-14 7:11 Agostino Sarubbo
2022-06-13 21:00 Jakov Smolić
2022-06-12 12:46 Sam James
2022-06-12 11:55 Sam James
2022-05-18 5:58 Michał Górny
2022-05-16 16:05 Michał Górny
2022-05-16 16:05 Michał Górny
2022-05-11 10:04 Michał Górny
2022-05-11 10:04 Michał Górny
2022-04-29 7:59 WANG Xuerui
2022-03-20 18:33 Michał Górny
2022-03-20 18:11 Arthur Zamarin
2022-03-19 19:21 Agostino Sarubbo
2022-03-18 12:26 Arthur Zamarin
2022-03-18 9:19 Arthur Zamarin
2022-03-16 23:53 Sam James
2022-03-16 19:22 Jakov Smolić
2022-03-16 8:13 Jakov Smolić
2022-02-17 19:03 Michał Górny
2022-02-07 6:57 Arthur Zamarin
2022-01-29 3:56 Sam James
2022-01-20 18:50 Sam James
2022-01-20 18:50 Sam James
2022-01-20 16:32 Arthur Zamarin
2022-01-20 14:15 Arthur Zamarin
2022-01-20 13:00 Arthur Zamarin
2022-01-20 12:27 Arthur Zamarin
2022-01-20 10:09 Arthur Zamarin
2022-01-08 13:39 Arthur Zamarin
2022-01-07 16:49 Arthur Zamarin
2022-01-07 15:30 Sam James
2022-01-07 15:29 Sam James
2022-01-06 20:14 Arthur Zamarin
2022-01-06 13:06 Sam James
2022-01-06 13:04 Sam James
2022-01-05 18:33 Arthur Zamarin
2021-12-17 2:52 Sam James
2021-12-06 19:37 Sam James
2021-12-06 1:16 Sam James
2021-11-20 7:56 Sam James
2021-10-11 2:52 Sam James
2021-10-11 2:52 Sam James
2021-10-03 21:13 Sam James
2021-10-03 18:48 Sam James
2021-10-03 17:50 Agostino Sarubbo
2021-10-02 23:17 Sam James
2021-08-25 17:29 Michał Górny
2021-08-21 22:15 James Le Cuirot
2021-07-16 6:12 Michał Górny
2021-07-15 22:13 Sergei Trofimovich
2021-07-15 21:00 Michał Górny
2021-05-20 1:46 Sam James
2021-05-19 23:41 Sam James
2021-05-19 17:28 Sam James
2021-05-19 17:25 Sam James
2021-05-19 17:22 Sam James
2021-05-19 3:23 Sam James
2021-05-14 21:39 Marek Szuba
2021-04-15 9:03 Michał Górny
2021-04-10 16:16 Sergei Trofimovich
2021-04-07 22:42 Sam James
2021-04-06 19:51 Sam James
2021-04-06 19:49 Sam James
2021-04-06 19:47 Sam James
2021-04-05 16:53 Sam James
2021-03-06 2:37 Sam James
2021-02-20 23:52 Michał Górny
2021-01-01 0:14 Michał Górny
2021-01-01 0:14 Michał Górny
2020-11-04 15:50 Sam James
2020-11-04 15:50 Sam James
2020-10-02 8:56 Mikle Kolyada
2020-10-02 7:50 Mikle Kolyada
2020-09-30 18:13 Sergei Trofimovich
2020-09-28 15:53 Michał Górny
2020-08-29 13:12 Sam James
2020-08-19 4:10 Sam James
2020-08-07 19:19 Sam James
2020-07-10 6:30 Michał Górny
2020-07-06 14:13 Michał Górny
2020-06-14 11:10 Michał Górny
2020-06-11 8:01 Michał Górny
2020-05-26 9:36 Michał Górny
2020-05-21 7:08 Michał Górny
2020-05-19 9:45 Michał Górny
2020-05-06 7:12 Michał Górny
2020-05-05 21:04 Sergei Trofimovich
2020-04-28 7:00 Michał Górny
2020-04-03 21:35 Mart Raudsepp
2020-03-07 15:45 Michał Górny
2020-03-07 15:11 Michał Górny
2020-02-16 13:51 Sergei Trofimovich
2020-02-13 13:03 Agostino Sarubbo
2020-02-11 11:30 Agostino Sarubbo
2020-02-11 11:09 Agostino Sarubbo
2020-02-11 10:58 Agostino Sarubbo
2020-02-11 10:55 Agostino Sarubbo
2020-02-11 9:52 Agostino Sarubbo
2020-02-11 9:43 Agostino Sarubbo
2020-02-11 8:36 Agostino Sarubbo
2020-02-10 10:54 Michał Górny
2020-02-10 10:54 Michał Górny
2019-11-25 12:35 Michał Górny
2019-11-21 1:56 Patrick McLean
2019-11-20 18:07 Patrick McLean
2019-11-02 8:02 Michał Górny
2019-08-28 15:38 Michał Górny
2019-08-07 15:41 Michał Górny
2019-07-26 13:14 Michał Górny
2019-07-26 13:14 Michał Górny
2019-07-08 19:43 Michał Górny
2019-07-01 7:56 Michał Górny
2019-07-01 7:56 Michał Górny
2019-06-13 4:45 Markus Meier
2019-06-08 18:15 Agostino Sarubbo
2019-06-03 2:22 Michał Górny
2019-05-30 11:37 Michał Górny
2019-05-30 11:37 Michał Górny
2019-05-04 19:20 Andreas K. Hüttel
2019-05-02 21:11 Mikle Kolyada
2019-04-29 19:48 Sergei Trofimovich
2019-04-28 20:35 Mikle Kolyada
2019-04-21 17:07 Sergei Trofimovich
2019-04-18 20:32 Thomas Deutschmann
2019-04-16 5:56 Michał Górny
2019-04-13 19:10 Agostino Sarubbo
2019-04-12 20:54 Aaron Bauman
2019-03-05 16:37 Michał Górny
2019-03-01 11:26 Michael Haubenwallner
2019-03-01 0:26 Aaron Bauman
2019-02-09 8:48 Michał Górny
2019-02-09 8:48 Michał Górny
2019-02-09 8:48 Michał Górny
2019-02-02 10:31 Michał Górny
2019-01-20 10:42 Michał Górny
2019-01-20 10:42 Michał Górny
2018-12-15 9:18 Michał Górny
2018-11-25 9:09 Michał Górny
2018-11-25 9:09 Michał Górny
2018-10-28 21:44 Michał Górny
2018-07-15 8:37 Michał Górny
2018-06-08 11:24 Mikle Kolyada
2018-04-29 11:13 Michał Górny
2018-04-29 6:15 Michał Górny
2018-04-28 19:29 Michał Górny
2018-03-21 22:40 Mart Raudsepp
2018-01-03 9:11 Michał Górny
2017-08-31 23:56 Tim Harder
2017-07-20 23:58 Tim Harder
2017-06-10 15:10 Agostino Sarubbo
2017-05-11 18:53 Markus Meier
2017-05-03 7:37 Michał Górny
2017-04-29 12:14 Jeroen Roovers
2017-04-22 7:33 Tobias Klausmann
2017-02-12 22:20 Zac Medico
2017-01-16 10:15 Jeroen Roovers
2016-12-24 10:26 Agostino Sarubbo
2016-12-18 15:44 Agostino Sarubbo
2016-12-14 9:14 Tobias Klausmann
2016-12-09 3:12 Tim Harder
2016-10-27 17:31 Kacper Kowalik
2016-10-27 17:13 Tim Harder
2016-10-27 5:38 Tim Harder
2016-10-27 5:34 Tim Harder
2016-07-17 21:03 Patrick Lauer
2016-06-20 18:41 Mike Gilbert
2016-06-17 15:20 Tim Harder
2016-03-31 11:34 Patrick Lauer
2015-10-11 20:15 Justin Lecher
2015-10-11 11:25 Justin Lecher
2015-10-01 7:03 Justin Lecher
2015-09-17 18:23 Justin Lecher
2015-09-14 8:22 Justin Lecher
2015-08-24 10:12 Justin Lecher
2015-08-09 15:18 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=1717604123.27332dcd2ae6aa0aed59ae5ac002390c11240ef5.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