public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/
Date: Tue,  9 May 2023 15:53:11 +0000 (UTC)	[thread overview]
Message-ID: <1683647586.23c9adc04a8b5e06eccd08beecaeddebc1b5d87b.mgorny@gentoo> (raw)

commit:     23c9adc04a8b5e06eccd08beecaeddebc1b5d87b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May  9 15:43:52 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May  9 15:53:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23c9adc0

dev-python/coverage: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/coverage/Manifest              |  3 --
 dev-python/coverage/coverage-7.2.2.ebuild | 77 -----------------------------
 dev-python/coverage/coverage-7.2.3.ebuild | 81 ------------------------------
 dev-python/coverage/coverage-7.2.4.ebuild | 82 -------------------------------
 4 files changed, 243 deletions(-)

diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest
index 72a29c721029..2f9e6b63207c 100644
--- a/dev-python/coverage/Manifest
+++ b/dev-python/coverage/Manifest
@@ -1,4 +1 @@
-DIST coverage-7.2.2.tar.gz 812407 BLAKE2B 901ed01eb8411e01c3386dcecccf975f4ac0e46c14fd2c6086bcf83647ff7e26deccb3926f173a207ef2851c0f8c5f99874659a1ba2e16f85b6eb9a1ac23142c SHA512 7d2ba6540ca42c3a72b65343348a64c58156bac915434249fd8740a6727ebf034590f62a5557f6b2f76e67ed1adc2a153ce61eee71f3bc903538c440e080e3e7
-DIST coverage-7.2.3.tar.gz 757154 BLAKE2B eb2d7e9e52dd9480f806556fbb73864884365215834640a1458c06d137706d3a5ca818c0418ecc6646b0722fd23a0348eddb97521a7cd024c218b872072661ea SHA512 2710424b04f812299777497e526d259a3ac35205b425a53973954c8e51cd39e75c30f8be9d60656e7369d3fa2decd810a8cb395dd433381495db4f6a7cd9a600
-DIST coverage-7.2.4.tar.gz 759129 BLAKE2B 186f5dcd5abd86634cf6cd3c58be47cc68e8d8417df02b4e55ac3d66703664b2069cb3f94fdff726eca99108fd243f6410b0118cf4a2b21a067653f567f8f013 SHA512 f22d475a64828d0613747cf7315053c4830acb9931acfe58e1c29029028f0a48e9c633649bea92ab6bae3b67daf790eb9cf3d6ea22dec1d1f5dce7df673ff3ae
 DIST coverage-7.2.5.tar.gz 759465 BLAKE2B 79670165a2516047ce3b28c331ec62c7c578fbfe14bd1179be65e52c5e57923ffb0d365f9153a78134ed5d95e4e04a8eadb6df3cbc49559659cf8cb77aa9d611 SHA512 3c4ec5aaba06170c860baa23ba61fe6f19b95a433430f045272839c13cc5bf4fb12a2a030d987ad5713202c75273646639da1257c0a618658f090c8a9fee41a7

diff --git a/dev-python/coverage/coverage-7.2.2.ebuild b/dev-python/coverage/coverage-7.2.2.ebuild
deleted file mode 100644
index d46c144045b8..000000000000
--- a/dev-python/coverage/coverage-7.2.2.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-PYTHON_REQ_USE="threads(+),sqlite(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Code coverage measurement for Python"
-HOMEPAGE="
-	https://coverage.readthedocs.io/en/latest/
-	https://github.com/nedbat/coveragepy/
-	https://pypi.org/project/coverage/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-
-RDEPEND="
-	$(python_gen_cond_dep '
-		dev-python/tomli[${PYTHON_USEDEP}]
-	' 3.{8..10})
-"
-BDEPEND="
-	test? (
-		dev-python/flaky[${PYTHON_USEDEP}]
-		dev-python/hypothesis[${PYTHON_USEDEP}]
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-		>=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	sed -i -e '/^addopts/s:-q -n auto::' setup.cfg || die
-	distutils-r1_src_prepare
-}
-
-test_tracer() {
-	local -x COVERAGE_TEST_TRACER=${1}
-	einfo "  Testing with the ${COVERAGE_TEST_TRACER} tracer ..."
-	epytest tests
-}
-
-python_test() {
-	local EPYTEST_IGNORE=(
-		# pip these days insists on fetching build deps from Internet
-		tests/test_venv.py
-	)
-
-	"${EPYTHON}" igor.py zip_mods || die
-
-	local -x COVERAGE_TESTING=True
-	# TODO: figure out why they can't be imported inside test env
-	local -x COVERAGE_NO_CONTRACTS=1
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x PYTEST_PLUGINS=_hypothesis_pytestplugin,flaky.flaky_pytest_plugin,xdist.plugin
-
-	local prev_opt=$(shopt -p nullglob)
-	shopt -s nullglob
-	local c_ext=( "${BUILD_DIR}/install$(python_get_sitedir)"/coverage/*.so )
-	${prev_opt}
-
-	if [[ -n ${c_ext} ]]; then
-		cp "${c_ext}" \
-			coverage/ || die
-		test_tracer c
-		rm coverage/*.so || die
-	else
-		test_tracer py
-	fi
-}

diff --git a/dev-python/coverage/coverage-7.2.3.ebuild b/dev-python/coverage/coverage-7.2.3.ebuild
deleted file mode 100644
index ed972c003934..000000000000
--- a/dev-python/coverage/coverage-7.2.3.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-PYTHON_REQ_USE="threads(+),sqlite(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Code coverage measurement for Python"
-HOMEPAGE="
-	https://coverage.readthedocs.io/en/latest/
-	https://github.com/nedbat/coveragepy/
-	https://pypi.org/project/coverage/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
-
-RDEPEND="
-	$(python_gen_cond_dep '
-		dev-python/tomli[${PYTHON_USEDEP}]
-	' 3.{8..10})
-"
-BDEPEND="
-	test? (
-		dev-python/flaky[${PYTHON_USEDEP}]
-		dev-python/hypothesis[${PYTHON_USEDEP}]
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-		>=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	sed -i -e '/addopts/s:-q -n auto::' pyproject.toml || die
-	distutils-r1_src_prepare
-}
-
-test_tracer() {
-	local -x COVERAGE_TEST_TRACER=${1}
-	einfo "  Testing with the ${COVERAGE_TEST_TRACER} tracer ..."
-	epytest tests
-}
-
-python_test() {
-	local EPYTEST_DESELECT=(
-		# TODO: fails because of additional "Terminated" print on SIGTERM
-		tests/test_concurrency.py::SigtermTest::test_sigterm_threading_saves_data
-	)
-	local EPYTEST_IGNORE=(
-		# pip these days insists on fetching build deps from Internet
-		tests/test_venv.py
-	)
-
-	"${EPYTHON}" igor.py zip_mods || die
-
-	local -x COVERAGE_TESTING=True
-	# TODO: figure out why they can't be imported inside test env
-	local -x COVERAGE_NO_CONTRACTS=1
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x PYTEST_PLUGINS=_hypothesis_pytestplugin,flaky.flaky_pytest_plugin,xdist.plugin
-
-	local prev_opt=$(shopt -p nullglob)
-	shopt -s nullglob
-	local c_ext=( "${BUILD_DIR}/install$(python_get_sitedir)"/coverage/*.so )
-	${prev_opt}
-
-	if [[ -n ${c_ext} ]]; then
-		cp "${c_ext}" \
-			coverage/ || die
-		test_tracer c
-		rm coverage/*.so || die
-	else
-		test_tracer py
-	fi
-}

diff --git a/dev-python/coverage/coverage-7.2.4.ebuild b/dev-python/coverage/coverage-7.2.4.ebuild
deleted file mode 100644
index 89226568addc..000000000000
--- a/dev-python/coverage/coverage-7.2.4.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-PYTHON_REQ_USE="threads(+),sqlite(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Code coverage measurement for Python"
-HOMEPAGE="
-	https://coverage.readthedocs.io/en/latest/
-	https://github.com/nedbat/coveragepy/
-	https://pypi.org/project/coverage/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
-
-RDEPEND="
-	$(python_gen_cond_dep '
-		dev-python/tomli[${PYTHON_USEDEP}]
-	' 3.{8..10})
-"
-BDEPEND="
-	test? (
-		dev-python/flaky[${PYTHON_USEDEP}]
-		dev-python/hypothesis[${PYTHON_USEDEP}]
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-		>=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	sed -i -e '/addopts/s:-q -n auto::' pyproject.toml || die
-	distutils-r1_src_prepare
-}
-
-test_tracer() {
-	local -x COVERAGE_TEST_TRACER=${1}
-	einfo "  Testing with the ${COVERAGE_TEST_TRACER} tracer ..."
-	epytest tests
-}
-
-python_test() {
-	local EPYTEST_DESELECT=(
-		# TODO: fails because of additional "Terminated" print on SIGTERM
-		tests/test_concurrency.py::SigtermTest::test_sigterm_threading_saves_data
-	)
-	local EPYTEST_IGNORE=(
-		# pip these days insists on fetching build deps from Internet
-		tests/test_venv.py
-	)
-
-	"${EPYTHON}" igor.py zip_mods || die
-
-	local -x COVERAGE_TESTING=True
-	# TODO: figure out why they can't be imported inside test env
-	local -x COVERAGE_NO_CONTRACTS=1
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local -x PYTEST_PLUGINS=_hypothesis_pytestplugin,flaky.flaky_pytest_plugin,xdist.plugin
-
-	local prev_opt=$(shopt -p nullglob)
-	shopt -s nullglob
-	local c_ext=( "${BUILD_DIR}/install$(python_get_sitedir)"/coverage/*.so )
-	${prev_opt}
-
-	if [[ -n ${c_ext} ]]; then
-		cp "${c_ext}" \
-			coverage/ || die
-		test_tracer c
-		rm coverage/*.so || die
-	else
-		test_tracer py
-	fi
-}


             reply	other threads:[~2023-05-09 15:53 UTC|newest]

Thread overview: 415+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-09 15:53 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-08 16:42 [gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/ Arthur Zamarin
2025-03-08 12:24 Arthur Zamarin
2025-03-08 12:00 Arthur Zamarin
2025-03-08 11:33 Arthur Zamarin
2025-03-08 11:20 Sam James
2025-03-08 11:20 Sam James
2025-03-08 10:57 Arthur Zamarin
2025-03-01  8:16 Michał Górny
2025-02-27 17:05 Michał Górny
2025-02-27 13:59 Sam James
2025-02-12  4:16 Michał Górny
2025-02-09  3:12 Michał Górny
2025-01-11 11:25 Sam James
2025-01-11 11:25 Sam James
2025-01-11  9:29 Michał Górny
2025-01-11  9:19 Sam James
2025-01-11  9:19 Sam James
2025-01-11  9:19 Sam James
2025-01-11  9:05 Sam James
2024-12-27 12:17 Sam James
2024-12-27  5:24 Michał Górny
2024-12-27  5:24 Michał Górny
2024-12-21 11:31 Michał Górny
2024-12-21 11:17 Michał Górny
2024-12-07  6:33 Michał Górny
2024-11-30 13:42 Arthur Zamarin
2024-11-30 12:04 Jakov Smolić
2024-11-30 10:47 Arthur Zamarin
2024-11-29  4:36 Michał Górny
2024-11-24  3:28 Michał Górny
2024-11-16  7:24 Michał Górny
2024-11-15  4:59 Michał Górny
2024-11-09 11:31 Sam James
2024-11-09 10:18 Sam James
2024-11-09 10:05 Arthur Zamarin
2024-11-09 10:03 Arthur Zamarin
2024-11-09  9:52 Sam James
2024-11-03  4:40 Sam James
2024-11-02 11:58 Arthur Zamarin
2024-11-02 10:23 Arthur Zamarin
2024-11-02 10:08 Arthur Zamarin
2024-11-02  9:40 Arthur Zamarin
2024-11-02  8:48 Michał Górny
2024-11-02  8:48 Michał Górny
2024-10-31 14:47 Michał Górny
2024-10-30 22:53 Sam James
2024-10-28 21:30 Sam James
2024-10-27  6:50 Arthur Zamarin
2024-10-26 15:16 Arthur Zamarin
2024-10-26 14:47 Arthur Zamarin
2024-10-26 14:47 Arthur Zamarin
2024-10-26 14:22 Arthur Zamarin
2024-10-21  4:35 Michał Górny
2024-10-14  4:11 Michał Górny
2024-10-10  5:03 Michał Górny
2024-08-24 13:36 Michał Górny
2024-08-24 10:40 Arthur Zamarin
2024-08-24  9:59 Arthur Zamarin
2024-08-24  9:24 Arthur Zamarin
2024-08-24  9:05 Arthur Zamarin
2024-08-24  9:05 Arthur Zamarin
2024-08-10  5:27 Michał Górny
2024-08-05 11:48 Michał Górny
2024-07-27  8:40 Arthur Zamarin
2024-07-27  8:30 Arthur Zamarin
2024-07-27  8:19 Arthur Zamarin
2024-07-27  8:19 Arthur Zamarin
2024-07-27  7:57 Arthur Zamarin
2024-07-27  7:35 Arthur Zamarin
2024-07-13 16:23 Arthur Zamarin
2024-07-13 12:10 Arthur Zamarin
2024-07-13 12:10 Arthur Zamarin
2024-07-13 11:05 Arthur Zamarin
2024-07-13 10:27 Arthur Zamarin
2024-07-13  9:36 Arthur Zamarin
2024-07-13  7:27 Arthur Zamarin
2024-07-12  2:33 Michał Górny
2024-07-11 11:59 Michał Górny
2024-06-23  3:05 Michał Górny
2024-06-23  2:53 Michał Górny
2024-06-14  4:22 Sam James
2024-06-12 10:16 Arthur Zamarin
2024-06-12 10:16 Arthur Zamarin
2024-06-12  8:42 Jakov Smolić
2024-06-12  7:34 Arthur Zamarin
2024-06-12  7:19 Arthur Zamarin
2024-06-12  7:00 Arthur Zamarin
2024-06-10  2:46 Ionen Wolkens
2024-05-29  4:17 Michał Górny
2024-05-27  4:17 Michał Górny
2024-05-25 13:15 Arthur Zamarin
2024-05-25  6:47 Sam James
2024-05-25  6:31 Arthur Zamarin
2024-05-25  6:27 Arthur Zamarin
2024-05-25  6:19 Arthur Zamarin
2024-05-25  6:08 Arthur Zamarin
2024-05-09 17:08 Michał Górny
2024-05-05  5:12 Michał Górny
2024-04-24 13:42 Michał Górny
2024-04-18 18:13 Michał Górny
2024-03-31 19:40 Arthur Zamarin
2024-03-30 18:02 Arthur Zamarin
2024-03-30 15:28 Michał Górny
2024-03-30 15:28 Michał Górny
2024-03-30 15:28 Michał Górny
2024-03-30 15:28 Michał Górny
2024-03-30 15:28 Michał Górny
2024-03-27  3:37 Michał Górny
2024-03-26 20:17 Ionen Wolkens
2024-03-15  5:05 Michał Górny
2024-03-09 20:24 Sam James
2024-02-28 14:04 Michał Górny
2024-02-28  2:32 Ionen Wolkens
2024-02-24  8:49 Michał Górny
2024-02-21  4:45 Michał Górny
2024-02-11 11:11 Sam James
2024-02-11 11:11 Sam James
2024-02-11 11:11 Sam James
2024-02-11 11:11 Sam James
2024-02-11  6:01 Sam James
2024-02-11  6:01 Sam James
2024-02-11  6:01 Sam James
2024-01-27  8:57 Michał Górny
2024-01-25  4:43 Michał Górny
2024-01-24 20:34 Arthur Zamarin
2024-01-23 16:40 Sam James
2024-01-13 12:02 Sam James
2024-01-13 11:15 Sam James
2024-01-13 11:15 Sam James
2024-01-13 11:15 Sam James
2024-01-13  9:29 Arthur Zamarin
2024-01-13  9:29 Arthur Zamarin
2024-01-06 11:54 Sam James
2024-01-06 10:29 Michał Górny
2024-01-06 10:16 Michał Górny
2024-01-06  9:59 Michał Górny
2024-01-06  9:59 Michał Górny
2023-12-28  8:14 Michał Górny
2023-12-21  4:30 Michał Górny
2023-12-14 13:58 Michał Górny
2023-11-29 12:07 Michał Górny
2023-11-29 12:03 Arthur Zamarin
2023-11-05 19:13 Arthur Zamarin
2023-11-05 19:12 Arthur Zamarin
2023-10-03  5:11 Michał Górny
2023-10-02  4:22 Michał Górny
2023-10-01 18:11 Arthur Zamarin
2023-09-17  5:47 Sam James
2023-09-16 22:58 Sam James
2023-09-06 16:39 Michał Górny
2023-08-13 19:00 Arthur Zamarin
2023-06-27 14:16 Michał Górny
2023-06-27 14:06 Sam James
2023-06-27 10:56 Sam James
2023-06-27  7:14 Sam James
2023-06-27  7:14 Sam James
2023-06-27  6:34 Sam James
2023-06-27  6:34 Sam James
2023-05-30  2:54 Michał Górny
2023-05-25 15:14 Michał Górny
2023-05-24  5:32 Michał Górny
2023-05-09 13:07 Sam James
2023-05-09 13:07 Sam James
2023-05-09 10:41 Jakov Smolić
2023-05-09  4:09 Arthur Zamarin
2023-05-09  4:09 Arthur Zamarin
2023-05-09  3:03 Arthur Zamarin
2023-05-09  3:03 Arthur Zamarin
2023-05-09  3:03 Arthur Zamarin
2023-04-30 14:56 Michał Górny
2023-04-28 14:13 Michał Górny
2023-04-07  4:19 Michał Górny
2023-03-30 17:12 Michał Górny
2023-03-30 17:07 Arthur Zamarin
2023-03-30 16:38 Sam James
2023-03-30 16:11 Arthur Zamarin
2023-03-30 15:50 Arthur Zamarin
2023-03-30 15:50 Arthur Zamarin
2023-03-30 15:39 Arthur Zamarin
2023-03-30 15:39 Arthur Zamarin
2023-03-30 15:34 Arthur Zamarin
2023-03-17  5:32 Michał Górny
2023-03-04 14:54 Michał Górny
2023-03-04 14:48 Arthur Zamarin
2023-02-27  5:38 Michał Górny
2023-02-26 19:49 Arthur Zamarin
2023-02-24 20:11 Arthur Zamarin
2023-02-24 19:58 Arthur Zamarin
2023-02-24 19:58 Arthur Zamarin
2023-02-24 19:58 Arthur Zamarin
2023-02-24 19:58 Arthur Zamarin
2023-02-24 19:58 Arthur Zamarin
2023-02-23  6:19 Michał Górny
2023-01-25 19:45 Michał Górny
2023-01-25 19:17 Arthur Zamarin
2023-01-25 19:17 Arthur Zamarin
2023-01-25 19:17 Arthur Zamarin
2023-01-25 11:57 Arthur Zamarin
2023-01-25 11:57 Arthur Zamarin
2023-01-25 11:57 Arthur Zamarin
2023-01-25  8:40 Jakov Smolić
2023-01-25  8:40 Jakov Smolić
2023-01-25  7:55 Michał Górny
2023-01-11  5:14 Michał Górny
2023-01-08 14:04 Michał Górny
2023-01-04 14:15 Michał Górny
2023-01-03  6:23 Michał Górny
2022-12-24  7:41 Michał Górny
2022-12-19  6:46 Michał Górny
2022-11-19 16:52 Michał Górny
2022-11-19 16:41 Sam James
2022-11-19 14:01 Arthur Zamarin
2022-11-19 11:32 Arthur Zamarin
2022-11-19 11:05 Arthur Zamarin
2022-11-19  9:09 Arthur Zamarin
2022-11-19  8:45 Arthur Zamarin
2022-11-19  8:41 Arthur Zamarin
2022-10-12 14:52 Michał Górny
2022-10-01 15:53 Michał Górny
2022-09-20 10:59 Michał Górny
2022-09-20  8:48 Agostino Sarubbo
2022-09-20  7:43 Jakov Smolić
2022-09-19 20:14 Jakov Smolić
2022-09-19 20:10 Jakov Smolić
2022-09-19 19:44 Arthur Zamarin
2022-09-19 19:42 Arthur Zamarin
2022-09-19 19:36 Arthur Zamarin
2022-09-19 19:33 Arthur Zamarin
2022-08-16 18:51 Arthur Zamarin
2022-08-15  8:08 Michał Górny
2022-08-15  7:46 Agostino Sarubbo
2022-08-15  7:41 Agostino Sarubbo
2022-08-15  7:40 Agostino Sarubbo
2022-08-14 16:33 Arthur Zamarin
2022-08-13 12:51 Arthur Zamarin
2022-08-13 11:50 Arthur Zamarin
2022-08-13 11:28 Arthur Zamarin
2022-08-13 11:25 Arthur Zamarin
2022-08-07  7:53 Michał Górny
2022-07-12 15:48 Michał Górny
2022-06-20 17:53 Arthur Zamarin
2022-06-20 17:46 Arthur Zamarin
2022-06-16 23:05 Jakov Smolić
2022-06-16 15:46 Sam James
2022-06-16 10:15 Jakov Smolić
2022-06-16 10:15 Jakov Smolić
2022-06-16  9:11 Jakov Smolić
2022-06-16  8:59 Jakov Smolić
2022-06-16  8:59 Jakov Smolić
2022-06-03  5:37 Michał Górny
2022-05-23  6:34 Michał Górny
2022-05-13  6:15 Michał Górny
2022-05-10 10:07 Michał Górny
2022-04-16  5:08 Arthur Zamarin
2022-04-16  4:47 Arthur Zamarin
2022-04-09 19:33 Arthur Zamarin
2022-04-02 12:04 Arthur Zamarin
2022-04-01 12:23 Arthur Zamarin
2022-04-01  6:53 Arthur Zamarin
2022-04-01  5:15 Arthur Zamarin
2022-03-31 14:33 Jakov Smolić
2022-03-31 14:33 Jakov Smolić
2022-03-12 19:49 Michał Górny
2022-03-12 11:06 Arthur Zamarin
2022-03-06  8:03 Sam James
2022-03-06  7:35 Sam James
2022-02-27 14:38 Yixun Lan
2022-02-21 15:00 Michał Górny
2022-02-21  9:15 Michał Górny
2022-02-02  7:13 Michał Górny
2022-01-25 18:56 Arthur Zamarin
2021-12-28 20:53 Michał Górny
2021-12-28 20:41 Sam James
2021-12-27 19:18 Jakov Smolić
2021-12-27 19:18 Jakov Smolić
2021-12-27 19:08 Arthur Zamarin
2021-12-27 18:57 Arthur Zamarin
2021-12-27 18:48 Arthur Zamarin
2021-12-27 18:48 Arthur Zamarin
2021-12-03 23:27 Michał Górny
2021-12-03 19:25 Arthur Zamarin
2021-12-03 16:52 Arthur Zamarin
2021-12-03  7:34 Arthur Zamarin
2021-12-02 19:52 Sam James
2021-12-02 19:52 Sam James
2021-12-02 13:33 Arthur Zamarin
2021-12-02 11:02 Agostino Sarubbo
2021-12-02  8:54 Jakov Smolić
2021-11-27  7:19 Michał Górny
2021-11-11  8:07 Michał Górny
2021-11-10 15:19 Arthur Zamarin
2021-11-09 22:35 Sam James
2021-11-06 19:56 Sam James
2021-11-05 17:38 Sam James
2021-11-05 17:38 Sam James
2021-11-05 17:33 Sam James
2021-11-05  2:20 Sam James
2021-11-05  2:18 Sam James
2021-11-05  2:12 Sam James
2021-11-01  8:32 Michał Górny
2021-10-27 22:41 Sam James
2021-10-12  6:18 Michał Górny
2021-10-03  8:23 Arthur Zamarin
2021-08-21 22:15 James Le Cuirot
2021-06-09 15:19 Marek Szuba
2021-04-07 23:11 Michał Górny
2021-04-07 22:47 Sam James
2021-04-07  6:21 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-03 19:08 Michał Górny
2021-03-03 18:59 Sam James
2021-03-03 13:54 Sam James
2021-03-02  4:40 Sam James
2021-03-02  3:49 Sam James
2021-03-02  2:34 Sam James
2021-03-02  1:38 Sam James
2021-03-02  1:37 Sam James
2021-03-02  1:36 Sam James
2021-03-01  8:25 Michał Górny
2021-01-31 20:04 Michał Górny
2021-01-31 18:48 Sam James
2021-01-27  3:58 Sam James
2021-01-27  3:06 Sam James
2021-01-26 21:20 Michał Górny
2021-01-25 14:10 Sam James
2021-01-25 14:09 Sam James
2021-01-25 14:07 Sam James
2021-01-25 14:06 Sam James
2021-01-25 14:04 Sam James
2021-01-01  0:14 Michał Górny
2020-12-20  8:12 Michał Górny
2020-11-28 13:41 Sam James
2020-11-28 11:26 Sergei Trofimovich
2020-11-18  8:47 Michał Górny
2020-11-18  8:47 Michał Górny
2020-11-17 19:05 Agostino Sarubbo
2020-11-02  9:47 Sam James
2020-10-20  7:04 Sergei Trofimovich
2020-10-20  7:02 Sergei Trofimovich
2020-10-20  6:57 Sergei Trofimovich
2020-10-20  4:54 Sam James
2020-10-18 23:55 Sam James
2020-10-18 18:51 Thomas Deutschmann
2020-09-18 14:36 Michał Górny
2020-09-14  3:13 Michał Górny
2020-09-13  8:44 Sergei Trofimovich
2020-09-09 21:59 Sergei Trofimovich
2020-09-09 21:35 Sergei Trofimovich
2020-09-09  0:52 Sam James
2020-09-08 19:01 Sam James
2020-07-25  7:36 Michał Górny
2020-07-11 23:18 Sam James
2020-07-11 15:21 Sam James
2020-07-09  8:41 Agostino Sarubbo
2020-07-09  8:04 Agostino Sarubbo
2020-07-08 16:35 Michał Górny
2020-06-17 19:24 Michał Górny
2020-06-08  6:41 Michał Górny
2020-06-08  6:41 Michał Górny
2020-06-06 19:31 Mart Raudsepp
2020-06-05 16:10 Sergei Trofimovich
2020-06-04  6:35 Agostino Sarubbo
2020-06-04  6:23 Agostino Sarubbo
2020-06-03 15:27 Agostino Sarubbo
2020-06-03 15:17 Agostino Sarubbo
2020-06-03 15:12 Agostino Sarubbo
2020-06-03  7:14 Michał Górny
2020-06-01 20:51 Sergei Trofimovich
2020-05-29 16:20 Michał Górny
2020-05-29 16:20 Michał Górny
2020-05-27 20:45 Michał Górny
2020-05-27 20:45 Michał Górny
2020-04-26  8:58 Sergei Trofimovich
2020-03-26 17:17 Michał Górny
2020-02-12  7:01 Patrick McLean
2020-02-05 23:49 Sergei Trofimovich
2019-12-29  9:01 Mikle Kolyada
2019-12-25 20:45 Sergei Trofimovich
2019-12-08 23:31 Sergei Trofimovich
2019-12-07 23:07 Matt Turner
2019-11-30 14:42 Aaron Bauman
2019-11-27 13:26 Mikle Kolyada
2019-11-26 19:35 Sergei Trofimovich
2019-11-16  8:21 Patrick McLean
2019-11-16  0:19 Michał Górny
2019-11-16  0:19 Michał Górny
2019-05-11 18:17 Matthew Thode
2018-09-16 18:23 Mikle Kolyada
2018-06-08  8:27 Mikle Kolyada
2018-04-29  7:35 Michał Górny
2018-01-03  9:11 Michał Górny
2017-09-21 21:56 Sergei Trofimovich
2017-05-03 12:18 Michał Górny
2017-03-16  8:19 Michael Weber
2017-03-16  8:16 Michael Weber
2017-01-24  5:38 Jeroen Roovers
2016-12-24 10:26 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-18 15:44 Agostino Sarubbo
2016-12-14 10:13 Tobias Klausmann
2016-10-02  9:54 Jeroen Roovers
2016-07-29 19:17 Dirkjan Ochtman
2016-07-18 18:27 Markus Meier
2016-07-17 16:15 Tobias Klausmann
2016-05-22  6:27 Dirkjan Ochtman
2016-05-22  6:27 Dirkjan Ochtman
2015-11-28  9:28 Justin Lecher
2015-11-04 14:15 Justin Lecher
2015-10-19 16:56 Justin Lecher
2015-10-15 14:41 Justin Lecher
2015-09-21  6:17 Dirkjan Ochtman

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=1683647586.23c9adc04a8b5e06eccd08beecaeddebc1b5d87b.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