From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xz-utils/
Date: Fri, 24 Jan 2025 12:24:38 +0000 (UTC) [thread overview]
Message-ID: <1737721456.2872e1eec634e44c2e067a50cfda3c2ea8d8d233.sam@gentoo> (raw)
commit: 2872e1eec634e44c2e067a50cfda3c2ea8d8d233
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 24 12:23:46 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 24 12:24:16 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2872e1ee
app-arch/xz-utils: add 5.7.1_alpha (unkeyworded)
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/xz-utils/Manifest | 2 +
app-arch/xz-utils/xz-utils-5.7.1_alpha.ebuild | 203 ++++++++++++++++++++++++++
2 files changed, 205 insertions(+)
diff --git a/app-arch/xz-utils/Manifest b/app-arch/xz-utils/Manifest
index fbf5b268f6ca..1a4437e1b966 100644
--- a/app-arch/xz-utils/Manifest
+++ b/app-arch/xz-utils/Manifest
@@ -6,3 +6,5 @@ DIST xz-5.6.3.tar.gz 2279396 BLAKE2B 9f09926f1ec7d72e6564f5816101512717bcb37610b
DIST xz-5.6.3.tar.gz.sig 566 BLAKE2B b59899d9ddc3325bd0de084dac420440ccdeb5f57f3656300f235fdae997a8943c2dc44edc3b83150b78717a7bf761152f09b41035d245fa536c45b8c06dd00d SHA512 65a0eb674b804309417d736b3ec9edb9c9bf39485593d81f352ee847662f5a95b3d5084fab21451e3510d74e4e2ee8f9cf4e8615d1128b6e16d5c211481481db
DIST xz-5.6.4.tar.gz 2280985 BLAKE2B 3d27c143f4856589d501bc47ff5c86c1c49b1d0b8c8fd2143bcbfe86b860ca93f6a103f628e06ce5c2839ce1941cecc7552d91b1aac5c11def40fd9182d93eee SHA512 b966950eb9206e31f284c9dc3bb0a79f2fabbaf515e88c89da53d3da41ddfeebd2fc6d3d3f8fcd150c70caaaefa43dec0bce84aa183e08bf339d1aebbe041751
DIST xz-5.6.4.tar.gz.sig 566 BLAKE2B 475b576431f573b9ce390ae2c43fc4f307f00ef523a741ec6795f182f5ff2c30f2049b1b4d2a3a7e61769bb7dc568de0f5af89661cb09341a58bbcdcdda3c877 SHA512 1ece59b7a540f6d215206ced14759aa971f192433705f8803b6ad8db0857e246145300c853cb571d8750b8152483d13736c478a7c0abb40d7ed25305d80a841c
+DIST xz-5.7.1alpha.tar.gz 2334409 BLAKE2B 98e98ebde9175fe8b135fa59f8e8acff1b8c6278f75a3ea997ebbe9aac25cb1a6a1f1bde163af4788ca0532bc270fe5baaf6cd89ba4c81ed3e3f7a6f08e741eb SHA512 40349652f3903e1d37e1cdc0b0b6f5479db0bc5bcbdc371f34b7cf7de730b1781748e1a6cad3dcc9e721243a0bd6f1c062a5ae54e966d23ff80ae0f0c9371246
+DIST xz-5.7.1alpha.tar.gz.sig 566 BLAKE2B 33c23b3aace6856f67b927d2f5b46f60f1e96eedde6a7e2cf5085e44b96da6503a8c38d5977a1dd7b068d9cb9ae652d457e9344eb40b482979d810afeb38f888 SHA512 f3fce937be1753b94110f2cf8ea1da52905133f8a62f9b2f91f6b5c91d2400ae63e000b392a0b992cd16495227077c0f26f1e36349b048e84a6bb8d3e618fd28
diff --git a/app-arch/xz-utils/xz-utils-5.7.1_alpha.ebuild b/app-arch/xz-utils/xz-utils-5.7.1_alpha.ebuild
new file mode 100644
index 000000000000..c27c74e7eeef
--- /dev/null
+++ b/app-arch/xz-utils/xz-utils-5.7.1_alpha.ebuild
@@ -0,0 +1,203 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Remember: we cannot leverage autotools in this ebuild in order
+# to avoid circular deps with autotools
+
+EAPI=8
+
+inherit libtool multilib multilib-minimal preserve-libs toolchain-funcs
+
+if [[ ${PV} == 9999 ]] ; then
+ # Per tukaani.org, git.tukaani.org is a mirror of github and
+ # may be behind.
+ EGIT_REPO_URI="
+ https://github.com/tukaani-project/xz
+ https://git.tukaani.org/xz.git
+ "
+ inherit git-r3 autotools
+
+ # bug #272880 and bug #286068
+ BDEPEND="sys-devel/gettext >=dev-build/libtool-2"
+else
+ VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/lassecollin.asc
+ inherit verify-sig
+
+ MY_P="${PN/-utils}-${PV/_}"
+ SRC_URI="
+ https://github.com/tukaani-project/xz/releases/download/v${PV/_}/${MY_P}.tar.gz
+ https://downloads.sourceforge.net/lzmautils/${MY_P}.tar.gz
+ https://tukaani.org/xz/${MY_P}.tar.gz
+ verify-sig? (
+ https://github.com/tukaani-project/xz/releases/download/v${PV/_}/${MY_P}.tar.gz.sig
+ https://tukaani.org/xz/${MY_P}.tar.gz.sig
+ )
+ "
+
+ if [[ ${PV} != *_alpha* && ${PV} != *_beta* ]] ; then
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+ fi
+
+ S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Utils for managing LZMA compressed files"
+HOMEPAGE="https://tukaani.org/xz/"
+
+# See top-level COPYING file as it outlines the various pieces and their licenses.
+LICENSE="0BSD LGPL-2.1+ GPL-2+ doc? ( CC-BY-SA-4.0 )"
+SLOT="0"
+IUSE="cpu_flags_arm_crc32 doc +extra-filters pgo nls static-libs"
+
+if [[ ${PV} != 9999 ]] ; then
+ BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-lassecollin-20240529 )"
+fi
+
+src_prepare() {
+ default
+
+ if [[ ${PV} == 9999 ]] ; then
+ eautopoint
+ eautoreconf
+ else
+ # Allow building shared libs on Solaris/x64
+ elibtoolize
+ fi
+}
+
+multilib_src_configure() {
+ # Workaround for bug #934370 (libtool-2.5.0), drop when dist tarball
+ # uses newer libtool with the fix.
+ export ac_cv_prog_ac_ct_FILECMD='file' FILECMD='file'
+
+ local myconf=(
+ --enable-threads
+ $(multilib_native_use_enable doc)
+ $(use_enable nls)
+ $(use_enable static-libs static)
+ $(use_enable cpu_flags_arm_crc32 arm64-crc32)
+ )
+
+ if ! multilib_is_native_abi ; then
+ myconf+=(
+ --disable-{xz,xzdec,lzmadec,lzmainfo,lzma-links,scripts}
+ )
+ fi
+
+ if ! use extra-filters ; then
+ myconf+=(
+ # LZMA1 + LZMA2 for standard .lzma & .xz files
+ --enable-encoders=lzma1,lzma2
+ --enable-decoders=lzma1,lzma2
+
+ # those are used by default, depending on preset
+ --enable-match-finders=hc3,hc4,bt4
+
+ # CRC64 is used by default, though 7-Zip uses CRC32 by default.
+ # Also, XZ Embedded in Linux doesn't support CRC64, so
+ # kernel modules and friends are CRC32.
+ --enable-checks=crc32,crc64
+ )
+ fi
+
+ if [[ ${CHOST} == *-solaris* ]] ; then
+ export gl_cv_posix_shell="${EPREFIX}"/bin/sh
+
+ # Undo Solaris-based defaults pointing to /usr/xpg4/bin
+ myconf+=( --disable-path-for-script )
+ fi
+
+ ECONF_SOURCE="${S}" econf "${myconf[@]}"
+}
+
+multilib_src_compile() {
+ local pgo_generate_flags=$(usev pgo "-fprofile-update=atomic -fprofile-dir=${T}/${ABI}-pgo -fprofile-generate=${T}/${ABI}-pgo")
+ local pgo_use_flags=$(usev pgo "-fprofile-use=${T}/${ABI}-pgo -fprofile-dir=${T}/${ABI}-pgo")
+
+ emake CFLAGS="${CFLAGS} ${pgo_generate_flags}"
+
+ if use pgo ; then
+ emake CFLAGS="${CFLAGS} ${pgo_generate_flags}" -k check
+
+ local tar_pgo_args=()
+
+ if has_version -b "app-alternatives/tar[gnu]" ; then
+ tar_pgo_args+=(
+ --mtime=@2718281828
+ --sort=name
+ )
+ fi
+
+ if multilib_is_native_abi ; then
+ (
+ shopt -s globstar
+
+ tar \
+ "${tar_pgo_args[@]}" \
+ -cf xz-pgo-test-01.tar \
+ {"${S}","${BUILD_DIR}"}/**/*.[cho] \
+ {"${S}","${BUILD_DIR}"}/**/.libs/* \
+ {"${S}","${BUILD_DIR}"}/**/**.txt \
+ {"${S}","${BUILD_DIR}"}/tests/files
+
+ stat --printf="xz-pgo-test-01.tar.tar size: %s\n" xz-pgo-test-01.tar || die
+ md5sum xz-pgo-test-01.tar || die
+ )
+
+ local test_variants=(
+ # Borrowed from ALT Linux
+ # https://packages.altlinux.org/en/sisyphus/srpms/xz/specfiles/#line-80
+ '-0 -C none'
+ '-2 -C crc32'
+ "$(usev extra-filters '-6 --arm --lzma2 -C crc64')"
+ "$(usev extra-filters '-6 --x86 --lzma2=lc=4 -C sha256')"
+ '-7e --format=lzma'
+
+ # Our own variants
+ ''
+ '-e'
+ "$(usev extra-filters '--x86 --lzma2=preset=6e')"
+ )
+ local test_variant
+ for test_variant in "${test_variants[@]}" ; do
+ einfo "Testing '${test_variant}' variant"
+ "${BUILD_DIR}"/src/xz/xz -c ${test_variant} xz-pgo-test-01.tar | "${BUILD_DIR}"/src/xz/xz -c -d - > /dev/null
+ assert "Testing '${test_variant}' variant failed"
+ done
+ fi
+
+ if tc-is-clang; then
+ llvm-profdata merge "${T}"/${ABI}-pgo --output="${T}"/${ABI}-pgo/default.profdata || die
+ fi
+
+ emake clean
+ emake CFLAGS="${CFLAGS} ${pgo_use_flags}"
+ fi
+}
+
+multilib_src_install() {
+ default
+
+ # bug #934370 and bug #450436 (and bug #934515)
+ if ! tc-is-static-only && [[ ! -f "${ED}/usr/$(get_libdir)/liblzma$(get_libname)" ]] ; then
+ eerror "Sanity check for liblzma$(get_libname) failed."
+ eerror "Shared library wasn't built, possible libtool bug"
+ [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && die "liblzma$(get_libname) not found in build, aborting"
+ fi
+}
+
+multilib_src_install_all() {
+ find "${ED}" -type f -name '*.la' -delete || die
+
+ if use doc ; then
+ rm "${ED}"/usr/share/doc/${PF}/COPYING* || die
+ fi
+}
+
+pkg_preinst() {
+ preserve_old_lib /usr/$(get_libdir)/liblzma$(get_libname 0)
+}
+
+pkg_postinst() {
+ preserve_old_lib_notify /usr/$(get_libdir)/liblzma$(get_libname 0)
+}
next reply other threads:[~2025-01-24 12:24 UTC|newest]
Thread overview: 260+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-24 12:24 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-14 5:39 [gentoo-commits] repo/gentoo:master commit in: app-arch/xz-utils/ Sam James
2025-03-14 5:39 Sam James
2025-03-13 4:16 Sam James
2025-03-13 1:37 Sam James
2025-03-13 1:28 Sam James
2025-03-13 1:09 Sam James
2025-03-13 1:09 Sam James
2025-03-13 1:09 Sam James
2025-03-13 0:53 Sam James
2025-02-09 4:56 Sam James
2025-01-24 15:33 Matt Turner
2025-01-24 12:24 Sam James
2024-11-13 11:10 Arthur Zamarin
2024-11-11 14:47 Sam James
2024-10-30 15:14 Sam James
2024-10-05 10:23 Sam James
2024-10-02 2:11 Sam James
2024-07-23 5:02 Sam James
2024-07-23 5:02 Sam James
2024-07-23 5:02 Sam James
2024-07-23 5:02 Sam James
2024-07-23 5:02 Sam James
2024-07-23 5:02 Sam James
2024-07-23 5:02 Sam James
2024-07-23 4:17 Sam James
2024-07-17 5:05 Sam James
2024-07-17 4:56 Sam James
2024-07-17 4:56 Sam James
2024-07-17 4:55 Sam James
2024-07-17 4:44 Sam James
2024-07-17 4:44 Sam James
2024-07-17 4:44 Sam James
2024-06-24 0:32 Sam James
2024-06-21 22:55 Sam James
2024-06-18 15:49 Fabian Groffen
2024-06-16 9:39 Sam James
2024-06-16 9:16 Sam James
2024-06-16 9:16 Sam James
2024-06-16 9:16 Sam James
2024-06-15 22:46 Sam James
2024-06-02 3:43 Sam James
2024-05-31 21:58 Sam James
2024-05-31 21:48 Sam James
2024-05-31 14:30 Sam James
2024-05-31 14:28 Sam James
2024-05-31 14:28 Sam James
2024-05-29 18:37 Sam James
2024-05-29 17:31 Sam James
2024-05-29 17:31 Sam James
2024-04-16 1:24 Sam James
2024-04-15 23:13 Sam James
2024-04-03 6:36 Sam James
2024-03-30 21:52 Sam James
2024-03-30 21:48 Sam James
2024-03-30 19:42 Sam James
2024-03-28 4:21 Sam James
2024-03-24 12:12 Sam James
2024-03-24 11:39 Sam James
2024-03-24 11:37 Sam James
2024-03-24 11:34 Sam James
2024-03-19 3:42 Ionen Wolkens
2024-03-09 21:05 Sam James
2024-03-04 10:05 Sam James
2024-03-03 2:27 Sam James
2024-03-02 22:07 Sam James
2024-02-29 22:17 Sam James
2024-02-24 19:46 Arthur Zamarin
2024-02-24 14:04 Sam James
2024-02-24 10:36 Michał Górny
2024-02-24 10:22 Michał Górny
2024-02-24 10:13 Sam James
2024-02-24 10:13 Sam James
2024-02-14 18:34 Sam James
2024-02-06 22:42 Sam James
2024-01-26 12:29 Sam James
2024-01-26 12:29 Sam James
2024-01-26 12:23 Sam James
2023-12-28 4:04 Sam James
2023-11-16 16:22 Sam James
2023-11-12 16:50 Arthur Zamarin
2023-11-12 8:32 Arthur Zamarin
2023-11-12 8:32 Arthur Zamarin
2023-11-12 8:32 Arthur Zamarin
2023-11-12 8:20 Arthur Zamarin
2023-11-01 15:37 Sam James
2023-11-01 15:37 Sam James
2023-10-12 12:13 Sam James
2023-10-12 12:05 Sam James
2023-09-15 6:58 Sam James
2023-08-02 19:34 Arthur Zamarin
2023-08-02 13:14 Sam James
2023-06-17 15:13 Sam James
2023-06-17 12:05 Arthur Zamarin
2023-06-17 10:42 Arthur Zamarin
2023-06-17 9:03 Arthur Zamarin
2023-05-05 3:51 Michał Górny
2023-05-05 3:08 Sam James
2023-05-05 3:08 Sam James
2023-05-05 3:08 Sam James
2023-05-05 3:08 Sam James
2023-04-29 20:31 Sam James
2023-04-29 20:31 Sam James
2023-04-29 20:25 Sam James
2023-04-29 20:20 Sam James
2023-04-29 18:16 Arthur Zamarin
2023-04-29 18:08 Arthur Zamarin
2023-04-29 16:11 Arthur Zamarin
2023-04-29 15:23 Arthur Zamarin
2023-04-29 8:48 Sam James
2023-04-23 22:30 Sam James
2023-04-23 21:21 Sam James
2023-04-23 20:32 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:10 Sam James
2023-04-23 20:00 Sam James
2023-03-18 19:45 Sam James
2023-03-18 19:19 Sam James
2023-03-18 19:19 Sam James
2023-02-24 18:36 Sam James
2023-02-13 5:47 Sam James
2023-01-15 13:37 Sam James
2023-01-14 10:00 Arthur Zamarin
2023-01-13 20:18 Sam James
2023-01-13 19:57 Sam James
2023-01-13 19:56 Sam James
2023-01-13 19:56 Sam James
2023-01-13 19:56 Sam James
2023-01-13 19:56 Sam James
2023-01-13 19:56 Sam James
2023-01-11 23:02 Sam James
2023-01-11 22:08 Sam James
2023-01-11 22:08 Sam James
2023-01-11 22:08 Sam James
2022-12-16 7:22 Sam James
2022-12-14 5:19 Sam James
2022-12-14 5:19 Sam James
2022-12-14 5:19 Sam James
2022-12-14 5:19 Sam James
2022-12-14 5:19 Sam James
2022-12-14 5:19 Sam James
2022-12-14 3:52 Sam James
2022-12-14 3:52 Sam James
2022-12-13 20:15 Sam James
2022-12-13 20:15 Sam James
2022-12-13 20:15 Sam James
2022-12-11 17:51 Arthur Zamarin
2022-12-10 3:16 Sam James
2022-12-10 2:55 Sam James
2022-12-10 2:54 Sam James
2022-12-10 2:54 Sam James
2022-12-10 2:53 Sam James
2022-12-10 2:53 Sam James
2022-12-10 2:53 Sam James
2022-11-30 23:26 Sam James
2022-11-30 23:26 Sam James
2022-11-25 15:20 Arthur Zamarin
2022-11-25 10:34 Arthur Zamarin
2022-11-25 9:32 Arthur Zamarin
2022-11-25 8:59 Arthur Zamarin
2022-11-25 8:19 Sam James
2022-11-25 8:19 Sam James
2022-11-25 8:11 Arthur Zamarin
2022-11-25 8:11 Arthur Zamarin
2022-11-15 9:45 Sam James
2022-11-13 20:59 Sam James
2022-10-28 7:02 Sam James
2022-10-28 7:02 Sam James
2022-10-28 6:39 Arthur Zamarin
2022-10-28 6:39 Arthur Zamarin
2022-10-28 6:39 Arthur Zamarin
2022-10-28 6:39 Arthur Zamarin
2022-10-28 6:39 Arthur Zamarin
2022-10-28 5:19 Arthur Zamarin
2022-10-27 23:46 Sam James
2022-09-30 19:13 Sam James
2022-09-26 4:16 Arthur Zamarin
2022-09-23 6:39 Arthur Zamarin
2022-09-23 6:09 Arthur Zamarin
2022-09-23 5:50 Sam James
2022-09-23 5:50 Sam James
2022-09-23 5:46 Sam James
2022-09-23 5:41 Arthur Zamarin
2022-09-23 5:41 Arthur Zamarin
2022-08-22 22:37 Sam James
2022-08-12 17:32 Sam James
2022-04-10 17:38 Arthur Zamarin
2022-04-10 17:38 Arthur Zamarin
2022-04-10 17:38 Arthur Zamarin
2022-04-09 20:04 Arthur Zamarin
2022-04-09 19:50 Arthur Zamarin
2022-04-09 18:21 Arthur Zamarin
2022-04-09 17:57 Agostino Sarubbo
2022-04-08 7:06 Agostino Sarubbo
2022-04-06 23:58 Sam James
2022-04-06 23:34 Sam James
2022-04-06 23:34 Sam James
2021-07-16 22:11 David Seifert
2021-01-06 12:52 Fabian Groffen
2020-12-27 13:34 Fabian Groffen
2020-09-18 10:30 Lars Wendler
2020-09-11 12:45 Mikle Kolyada
2020-08-30 5:27 Sam James
2020-08-29 14:48 Thomas Deutschmann
2020-08-28 16:53 Sergei Trofimovich
2020-08-27 18:22 Sergei Trofimovich
2020-08-22 5:43 Agostino Sarubbo
2020-08-21 18:20 Agostino Sarubbo
2020-05-07 18:56 Fabian Groffen
2020-03-19 22:10 Thomas Deutschmann
2020-03-18 7:59 Lars Wendler
2020-03-12 8:55 Lars Wendler
2019-06-12 8:35 Michael Haubenwallner
2019-05-13 15:20 Michael Haubenwallner
2019-05-13 8:08 Lars Wendler
2019-05-04 11:02 Mikle Kolyada
2019-05-03 23:17 Andreas K. Hüttel
2019-04-09 19:07 Aaron Bauman
2019-04-06 13:39 Mikle Kolyada
2019-04-01 19:58 Thomas Deutschmann
2019-03-26 20:05 Markus Meier
2019-03-25 11:40 Mikle Kolyada
2019-03-25 11:40 Mikle Kolyada
2019-03-25 11:39 Mikle Kolyada
2019-03-24 20:25 Sergei Trofimovich
2019-03-24 20:12 Sergei Trofimovich
2019-03-24 19:44 Sergei Trofimovich
2019-03-24 13:08 Sergei Trofimovich
2019-03-20 21:09 Mikle Kolyada
2019-03-20 19:37 Sergei Trofimovich
2019-03-03 19:27 Lars Wendler
2018-05-12 21:56 Lars Wendler
2018-04-30 11:36 Thomas Deutschmann
2018-04-30 11:36 Thomas Deutschmann
2018-04-30 11:36 Thomas Deutschmann
2018-04-30 11:31 Lars Wendler
2018-04-30 2:58 Lars Wendler
2018-04-30 2:58 Lars Wendler
2018-01-26 18:55 Mike Gilbert
2017-12-25 14:43 David Seifert
2017-12-17 21:08 Thomas Deutschmann
2017-12-17 21:08 Thomas Deutschmann
2017-12-17 21:08 Thomas Deutschmann
2017-02-05 19:32 Markus Meier
2017-01-29 20:43 Jeroen Roovers
2017-01-23 18:27 Tobias Klausmann
2017-01-23 15:46 Agostino Sarubbo
2017-01-23 13:51 Agostino Sarubbo
2016-12-30 19:05 Lars Wendler
2016-12-30 19:05 Lars Wendler
2016-03-30 23:48 Mike Frysinger
2016-03-30 23:48 Mike Frysinger
2016-02-29 8:46 Stephen Klimaszewski
2016-02-13 15:33 Agostino Sarubbo
2016-02-04 11:34 Tobias Klausmann
2016-02-01 16:26 Jeroen Roovers
2016-01-28 19:24 Richard Farina
2015-09-29 13:38 Mike Frysinger
2015-09-29 13:38 Mike Frysinger
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=1737721456.2872e1eec634e44c2e067a50cfda3c2ea8d8d233.sam@gentoo \
--to=sam@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