From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest/
Date: Wed, 27 Mar 2024 16:32:12 +0000 (UTC) [thread overview]
Message-ID: <1711557078.6b64a709eec83e722ea3ff812254d1d8596bd549.mgorny@gentoo> (raw)
commit: 6b64a709eec83e722ea3ff812254d1d8596bd549
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 14:58:05 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 16:31:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b64a709
dev-python/pytest: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest/Manifest | 3 -
dev-python/pytest/pytest-8.0.0.ebuild | 110 ---------------------------------
dev-python/pytest/pytest-8.0.1.ebuild | 110 ---------------------------------
dev-python/pytest/pytest-8.1.0.ebuild | 113 ----------------------------------
4 files changed, 336 deletions(-)
diff --git a/dev-python/pytest/Manifest b/dev-python/pytest/Manifest
index c2f1a7b4cc8b..12dda2dc03ae 100644
--- a/dev-python/pytest/Manifest
+++ b/dev-python/pytest/Manifest
@@ -1,6 +1,3 @@
DIST pytest-7.4.4.tar.gz 1357116 BLAKE2B 0bf281b3d4b7b2eb7805423a75c8c2befa820cc230318511e5a2d5ea35321a78a2603d5dbc033414ed73171525371efa9d9f54083d5638fc752c1c218e6d53aa SHA512 28a259dac6739683c131993409d508e10fbfee461291b8fc7697dd83f30725a3c60e681ba00b5669a215af6a5e683f07a329485d780acc9ad0372a6552f783a1
-DIST pytest-8.0.0.tar.gz 1395242 BLAKE2B 99d0dce33a2a9c0c421777779584b6f74950e27c4a3a64daaf9fbb9d6a28583cff1890ebd6f471e1ffdc6f9d3cfc69deb513b6884ec216a7e95b16eba8c59c5e SHA512 18c09d378e02a5b33bdf269aa27b6a4e84d43c46a702d34252ddf01a7cab3d56c8c9793ed4605ae041fc8c8845016b69dba4eb1f723756bab3704ab3e079b551
-DIST pytest-8.0.1.tar.gz 1396338 BLAKE2B feb21b576e1c82376481493d4c7c345f16ac7c818c13b88d37a2b5c3ecdbb6fa7397243f8672df320657a4a6fd654267760a278313fd0cba069da950834fdb55 SHA512 ce1fa9fa2a78f73320e1692681930c7bee5f6bd66b592d6f8b7e6c958cbdc180d9b1f39ecad2556c0811c5337e7fa28b84a093f064ac46f7fd3c4a6d94b3e73a
DIST pytest-8.0.2.tar.gz 1396924 BLAKE2B ad95d246f5592cfe54faea6c96e38cb60d3e2713070d1ff7cab6c42aea312883c5d97c99a930dbcbd8493e966c4b8351320f6494b4ab904afbf21d7e1dd004a7 SHA512 c495943baad05e09b467d23c7afadb3edff7ae93ee96290d6db9e64739236888148b63dff7e8e25b331b11bd48c55fb0ca8901cf823d69b1a922e94915bab2f1
-DIST pytest-8.1.0.tar.gz 1407129 BLAKE2B 38118dc5d5ab11d14a40c3e0a304218f376ea4b31ee451bf8dbe29081d5faf9a1f57d2f47d1a14a344cb5855a1aec5f37ea6098b88d83f7b79822499fa8285a5 SHA512 9c527946dcf27924e1c9dd7e4e129bd1a6d46f07e75bba97dba6e980d3404b9542b2a5088623d45a9879e7bafc9f2377bda144ff4fae21a6888ac6583b027e2c
DIST pytest-8.1.1.tar.gz 1409703 BLAKE2B 8e382c87af1bbbc235f9b27f8bb892d08393e0a9821f32373ee2546112c24dc6f90e1990f10ef799a94a1426a83a2bc3de0be9e7efde90cbf4eac5a0c9ee375c SHA512 f1a9f69cd4eca3ab36c36bc666bf70b099125ed6e17b89d13554c3f13b100d05abfd0b35516660d00ca4fb9eca81164ab02bc8f7a9a8d90fd4302bf399cd88c0
diff --git a/dev-python/pytest/pytest-8.0.0.ebuild b/dev-python/pytest/pytest-8.0.0.ebuild
deleted file mode 100644
index 82ec54765b87..000000000000
--- a/dev-python/pytest/pytest-8.0.0.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{10..12} pypy3 )
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
-
-inherit distutils-r1 multiprocessing pypi
-
-DESCRIPTION="Simple powerful testing with Python"
-HOMEPAGE="
- https://pytest.org/
- https://github.com/pytest-dev/pytest/
- https://pypi.org/project/pytest/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/iniconfig[${PYTHON_USEDEP}]
- >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- >=dev-python/pluggy-1.3.0[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
- >=dev-python/tomli-1.0.0[${PYTHON_USEDEP}]
- ' 3.{9..10})
-"
-BDEPEND="
- >=dev-python/setuptools-scm-6.2.3[${PYTHON_USEDEP}]
- test? (
- ${RDEPEND}
- $(python_gen_cond_dep '
- dev-python/argcomplete[${PYTHON_USEDEP}]
- >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
- >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- >=dev-python/pygments-2.7.2[${PYTHON_USEDEP}]
- dev-python/pytest-xdist[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/xmlschema[${PYTHON_USEDEP}]
- ' "${PYTHON_TESTED[@]}")
- )
-"
-
-src_test() {
- # workaround new readline defaults
- echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
- local -x INPUTRC="${T}"/inputrc
- distutils-r1_src_test
-}
-
-python_test() {
- if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
- einfo "Skipping tests on ${EPYTHON}"
- return
- fi
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- local -x COLUMNS=80
-
- local EPYTEST_DESELECT=(
- # broken by epytest args
- testing/test_warnings.py::test_works_with_filterwarnings
-
- # tend to be broken by random pytest plugins
- # (these tests patch PYTEST_DISABLE_PLUGIN_AUTOLOAD out)
- testing/test_helpconfig.py::test_version_less_verbose
- testing/test_helpconfig.py::test_version_verbose
- testing/test_junitxml.py::test_random_report_log_xdist
- testing/test_junitxml.py::test_runs_twice_xdist
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal_count
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_verbose
- testing/test_terminal.py::TestProgressWithTeardown::test_xdist_normal
- testing/test_terminal.py::TestTerminalFunctional::test_header_trailer_info
- testing/test_terminal.py::TestTerminalFunctional::test_no_header_trailer_info
-
- # unstable with xdist
- testing/test_terminal.py::TestTerminalFunctional::test_verbose_reporting_xdist
-
- # TODO (XPASS)
- testing/test_debugging.py::TestDebuggingBreakpoints::test_pdb_not_altered
- testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_simple
- testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_twice
- testing/test_debugging.py::TestPDB::test_pdb_with_injected_do_debug
- testing/test_debugging.py::test_pdb_suspends_fixture_capturing
-
- # setuptools warnings
- testing/acceptance_test.py::TestInvocationVariants::test_cmdline_python_namespace_package
-
- # times out
- testing/test_debugging.py::TestPDB::test_pdb_interaction_exception
- )
-
- [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
- # regressions on pypy3.9
- # https://github.com/pytest-dev/pytest/issues/9787
- testing/test_skipping.py::test_errors_in_xfail_skip_expressions
- testing/test_unraisableexception.py
- )
-
- epytest -p xdist -n "$(makeopts_jobs)"
-}
diff --git a/dev-python/pytest/pytest-8.0.1.ebuild b/dev-python/pytest/pytest-8.0.1.ebuild
deleted file mode 100644
index 82ec54765b87..000000000000
--- a/dev-python/pytest/pytest-8.0.1.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{10..12} pypy3 )
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
-
-inherit distutils-r1 multiprocessing pypi
-
-DESCRIPTION="Simple powerful testing with Python"
-HOMEPAGE="
- https://pytest.org/
- https://github.com/pytest-dev/pytest/
- https://pypi.org/project/pytest/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/iniconfig[${PYTHON_USEDEP}]
- >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- >=dev-python/pluggy-1.3.0[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
- >=dev-python/tomli-1.0.0[${PYTHON_USEDEP}]
- ' 3.{9..10})
-"
-BDEPEND="
- >=dev-python/setuptools-scm-6.2.3[${PYTHON_USEDEP}]
- test? (
- ${RDEPEND}
- $(python_gen_cond_dep '
- dev-python/argcomplete[${PYTHON_USEDEP}]
- >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
- >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- >=dev-python/pygments-2.7.2[${PYTHON_USEDEP}]
- dev-python/pytest-xdist[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/xmlschema[${PYTHON_USEDEP}]
- ' "${PYTHON_TESTED[@]}")
- )
-"
-
-src_test() {
- # workaround new readline defaults
- echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
- local -x INPUTRC="${T}"/inputrc
- distutils-r1_src_test
-}
-
-python_test() {
- if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
- einfo "Skipping tests on ${EPYTHON}"
- return
- fi
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- local -x COLUMNS=80
-
- local EPYTEST_DESELECT=(
- # broken by epytest args
- testing/test_warnings.py::test_works_with_filterwarnings
-
- # tend to be broken by random pytest plugins
- # (these tests patch PYTEST_DISABLE_PLUGIN_AUTOLOAD out)
- testing/test_helpconfig.py::test_version_less_verbose
- testing/test_helpconfig.py::test_version_verbose
- testing/test_junitxml.py::test_random_report_log_xdist
- testing/test_junitxml.py::test_runs_twice_xdist
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal_count
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_verbose
- testing/test_terminal.py::TestProgressWithTeardown::test_xdist_normal
- testing/test_terminal.py::TestTerminalFunctional::test_header_trailer_info
- testing/test_terminal.py::TestTerminalFunctional::test_no_header_trailer_info
-
- # unstable with xdist
- testing/test_terminal.py::TestTerminalFunctional::test_verbose_reporting_xdist
-
- # TODO (XPASS)
- testing/test_debugging.py::TestDebuggingBreakpoints::test_pdb_not_altered
- testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_simple
- testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_twice
- testing/test_debugging.py::TestPDB::test_pdb_with_injected_do_debug
- testing/test_debugging.py::test_pdb_suspends_fixture_capturing
-
- # setuptools warnings
- testing/acceptance_test.py::TestInvocationVariants::test_cmdline_python_namespace_package
-
- # times out
- testing/test_debugging.py::TestPDB::test_pdb_interaction_exception
- )
-
- [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
- # regressions on pypy3.9
- # https://github.com/pytest-dev/pytest/issues/9787
- testing/test_skipping.py::test_errors_in_xfail_skip_expressions
- testing/test_unraisableexception.py
- )
-
- epytest -p xdist -n "$(makeopts_jobs)"
-}
diff --git a/dev-python/pytest/pytest-8.1.0.ebuild b/dev-python/pytest/pytest-8.1.0.ebuild
deleted file mode 100644
index f57a5169cba9..000000000000
--- a/dev-python/pytest/pytest-8.1.0.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{10..12} pypy3 )
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Simple powerful testing with Python"
-HOMEPAGE="
- https://pytest.org/
- https://github.com/pytest-dev/pytest/
- https://pypi.org/project/pytest/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/iniconfig[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- <dev-python/pluggy-2[${PYTHON_USEDEP}]
- >=dev-python/pluggy-1.4[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
- >=dev-python/tomli-1[${PYTHON_USEDEP}]
- ' 3.10)
- !!<=dev-python/flaky-3.7.0-r5
-"
-BDEPEND="
- >=dev-python/setuptools-scm-6.2.3[${PYTHON_USEDEP}]
- test? (
- ${RDEPEND}
- $(python_gen_cond_dep '
- dev-python/argcomplete[${PYTHON_USEDEP}]
- >=dev-python/attrs-19.2[${PYTHON_USEDEP}]
- >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- >=dev-python/pygments-2.7.2[${PYTHON_USEDEP}]
- dev-python/pytest-xdist[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/xmlschema[${PYTHON_USEDEP}]
- ' "${PYTHON_TESTED[@]}")
- )
-"
-
-src_test() {
- # workaround new readline defaults
- echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
- local -x INPUTRC="${T}"/inputrc
- distutils-r1_src_test
-}
-
-python_test() {
- if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
- einfo "Skipping tests on ${EPYTHON}"
- return
- fi
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- local -x COLUMNS=80
-
- local EPYTEST_DESELECT=(
- # broken by epytest args
- testing/test_warnings.py::test_works_with_filterwarnings
-
- # tend to be broken by random pytest plugins
- # (these tests patch PYTEST_DISABLE_PLUGIN_AUTOLOAD out)
- testing/test_helpconfig.py::test_version_less_verbose
- testing/test_helpconfig.py::test_version_verbose
- testing/test_junitxml.py::test_random_report_log_xdist
- testing/test_junitxml.py::test_runs_twice_xdist
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal_count
- testing/test_terminal.py::TestProgressOutputStyle::test_xdist_verbose
- testing/test_terminal.py::TestProgressWithTeardown::test_xdist_normal
- testing/test_terminal.py::TestTerminalFunctional::test_header_trailer_info
- testing/test_terminal.py::TestTerminalFunctional::test_no_header_trailer_info
-
- # unstable with xdist
- testing/test_terminal.py::TestTerminalFunctional::test_verbose_reporting_xdist
-
- # TODO (XPASS)
- testing/test_debugging.py::TestDebuggingBreakpoints::test_pdb_not_altered
- testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_simple
- testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_twice
- testing/test_debugging.py::TestPDB::test_pdb_with_injected_do_debug
- testing/test_debugging.py::test_pdb_suspends_fixture_capturing
-
- # setuptools warnings
- testing/acceptance_test.py::TestInvocationVariants::test_cmdline_python_namespace_package
-
- # times out
- testing/test_debugging.py::TestPDB::test_pdb_interaction_exception
- testing/test_debugging.py::TestPDB::test_pdb_with_caplog_on_pdb_invocation
- )
-
- [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
- # regressions on pypy3.9
- # https://github.com/pytest-dev/pytest/issues/9787
- testing/test_skipping.py::test_errors_in_xfail_skip_expressions
- testing/test_unraisableexception.py
- )
-
- local EPYTEST_XDIST=1
- epytest
-}
next reply other threads:[~2024-03-27 16:32 UTC|newest]
Thread overview: 355+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-27 16:32 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-14 12:42 [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest/ Michał Górny
2024-09-28 12:04 Michał Górny
2024-09-28 11:41 Arthur Zamarin
2024-09-10 16:28 Michał Górny
2024-08-10 6:46 Michał Górny
2024-08-10 6:43 Michał Górny
2024-07-26 1:27 Michał Górny
2024-07-21 2:31 Michał Górny
2024-06-22 13:48 Arthur Zamarin
2024-06-05 4:18 Michał Górny
2024-05-20 4:48 Michał Górny
2024-05-14 15:13 Michał Górny
2024-05-11 8:13 Michał Górny
2024-05-11 7:21 Arthur Zamarin
2024-05-08 18:31 Michał Górny
2024-04-28 2:24 Michał Górny
2024-04-26 18:55 Michał Górny
2024-04-25 17:56 Arthur Zamarin
2024-04-11 16:37 Arthur Zamarin
2024-03-09 15:11 Michał Górny
2024-03-07 5:00 Michał Górny
2024-03-04 6:31 Michał Górny
2024-02-25 4:07 Michał Górny
2024-02-17 5:38 Michał Górny
2024-01-28 3:51 Michał Górny
2024-01-18 18:46 Michał Górny
2024-01-18 18:17 Arthur Zamarin
2023-12-31 17:21 Michał Górny
2023-11-25 15:36 Michał Górny
2023-10-25 5:54 Michał Górny
2023-10-25 5:54 Michał Górny
2023-10-24 19:48 Arthur Zamarin
2023-10-06 18:12 Michał Górny
2023-09-08 5:36 Michał Górny
2023-09-03 4:12 Michał Górny
2023-07-28 9:37 Sam James
2023-07-05 6:02 Arthur Zamarin
2023-06-24 6:10 Michał Górny
2023-06-11 5:18 Michał Górny
2023-05-23 15:42 Michał Górny
2023-05-13 16:04 Michał Górny
2023-05-13 10:44 Arthur Zamarin
2023-04-15 8:23 Michał Górny
2023-04-09 6:21 Michał Górny
2023-04-05 15:58 Michał Górny
2023-04-05 12:44 Arthur Zamarin
2023-03-04 5:48 Michał Górny
2023-01-31 12:00 Michał Górny
2023-01-31 11:51 Arthur Zamarin
2023-01-15 7:02 Michał Górny
2022-11-29 8:48 Michał Górny
2022-11-29 7:35 Arthur Zamarin
2022-10-27 4:49 Michał Górny
2022-10-02 19:17 Arthur Zamarin
2022-09-02 16:16 Michał Górny
2022-05-09 20:38 Michał Górny
2022-04-23 15:56 Michał Górny
2022-04-14 18:41 Fabian Groffen
2022-03-18 10:08 Michał Górny
2022-02-11 21:18 Michał Górny
2022-01-28 21:50 Michał Górny
2022-01-28 21:50 Michał Górny
2022-01-28 21:50 Michał Górny
2022-01-28 21:50 Michał Górny
2022-01-28 21:50 Michał Górny
2021-12-24 22:52 Michał Górny
2021-11-12 18:12 Arthur Zamarin
2021-11-09 14:01 Michał Górny
2021-11-09 10:47 Michał Górny
2021-10-03 18:48 Sam James
2021-09-11 16:28 Michał Górny
2021-09-01 18:30 Arthur Zamarin
2021-09-01 18:30 Arthur Zamarin
2021-07-12 22:43 Michał Górny
2021-05-05 17:05 Michał Górny
2021-05-05 12:48 Michał Górny
2021-02-24 22:30 Michał Górny
2021-02-24 22:06 Sam James
2021-01-25 22:13 Michał Górny
2021-01-25 14:29 Michał Górny
2021-01-25 14:06 Sam James
2021-01-13 21:55 Sam James
2020-12-22 8:00 Sergei Trofimovich
2020-12-16 10:09 Michał Górny
2020-12-13 12:15 Michał Górny
2020-12-13 2:25 Sam James
2020-12-07 1:59 Matt Turner
2020-12-02 10:51 Michał Górny
2020-12-02 10:23 Sam James
2020-11-28 8:27 Sam James
2020-11-26 10:46 Sam James
2020-11-26 8:53 Michał Górny
2020-11-26 8:35 Sam James
2020-11-19 11:16 Agostino Sarubbo
2020-11-12 22:54 Thomas Deutschmann
2020-11-04 7:55 Sam James
2020-10-28 20:03 Michał Górny
2020-10-18 9:59 Sergei Trofimovich
2020-10-16 4:48 Joshua Kinard
2020-10-08 17:31 Sergei Trofimovich
2020-10-03 21:21 Michał Górny
2020-10-01 22:33 Sergei Trofimovich
2020-09-26 20:08 Michał Górny
2020-09-26 18:47 Matt Turner
2020-09-25 17:26 Sam James
2020-09-24 6:59 Agostino Sarubbo
2020-09-24 6:49 Agostino Sarubbo
2020-09-20 7:57 Michał Górny
2020-09-16 17:48 Sergei Trofimovich
2020-09-13 6:27 Sam James
2020-09-12 4:01 Michał Górny
2020-09-07 7:35 Sergei Trofimovich
2020-08-21 19:39 Michał Górny
2020-08-08 10:28 Sergei Trofimovich
2020-08-03 16:34 Sergei Trofimovich
2020-08-03 3:11 Sam James
2020-08-02 12:06 Sergei Trofimovich
2020-07-31 22:33 Aaron Bauman
2020-07-30 23:11 Sam James
2020-07-30 14:30 Michał Górny
2020-07-12 2:41 Sam James
2020-07-11 21:42 Sam James
2020-07-11 16:48 Sam James
2020-07-11 7:51 Michał Górny
2020-07-11 7:51 Michał Górny
2020-07-11 7:04 Michał Górny
2020-07-09 8:59 Agostino Sarubbo
2020-07-05 14:36 Michał Górny
2020-07-05 13:39 Agostino Sarubbo
2020-07-01 12:21 Michał Górny
2020-06-28 20:59 Thomas Deutschmann
2020-06-21 16:54 Agostino Sarubbo
2020-06-20 15:45 Thomas Deutschmann
2020-06-06 18:01 Michał Górny
2020-06-06 8:38 Michał Górny
2020-06-03 6:41 Michał Górny
2020-05-30 19:48 Michał Górny
2020-05-30 11:51 Michał Górny
2020-05-29 21:01 Michał Górny
2020-05-28 18:20 Sergei Trofimovich
2020-05-27 18:41 Sergei Trofimovich
2020-05-26 17:35 Sergei Trofimovich
2020-05-26 12:58 Michał Górny
2020-05-26 12:58 Michał Górny
2020-05-25 16:16 Michał Górny
2020-05-15 17:33 Sergei Trofimovich
2020-05-13 13:15 Michał Górny
2020-05-13 9:03 Michał Górny
2020-05-13 9:03 Michał Górny
2020-05-13 9:03 Michał Górny
2020-05-03 12:47 Michał Górny
2020-04-26 19:02 Matt Turner
2020-04-13 22:42 Sergei Trofimovich
2020-04-01 17:13 Sergei Trofimovich
2020-03-28 18:49 Michał Górny
2020-03-25 5:09 Georgy Yakovlev
2020-03-16 21:09 Michał Górny
2020-03-16 18:55 Michał Górny
2020-03-16 7:06 Michał Górny
2020-03-16 4:10 Matt Turner
2020-03-16 4:10 Matt Turner
2020-03-14 18:13 Mikle Kolyada
2020-03-14 18:09 Mikle Kolyada
2020-03-04 5:01 Michał Górny
2020-03-04 5:01 Michał Górny
2020-02-18 8:59 Sergei Trofimovich
2020-02-12 20:05 Sergei Trofimovich
2020-02-03 14:55 Michał Górny
2020-01-30 12:55 Agostino Sarubbo
2020-01-30 10:10 Agostino Sarubbo
2020-01-30 7:18 Michał Górny
2020-01-22 3:46 Michał Górny
2020-01-18 17:18 Michał Górny
2020-01-05 8:03 Michał Górny
2020-01-05 8:03 Michał Górny
2020-01-03 20:46 David Seifert
2020-01-03 12:40 Agostino Sarubbo
2019-12-24 14:15 Mikle Kolyada
2019-12-20 20:10 Michał Górny
2019-12-20 12:51 Agostino Sarubbo
2019-12-20 12:30 Agostino Sarubbo
2019-12-20 12:13 Agostino Sarubbo
2019-12-20 11:42 Agostino Sarubbo
2019-12-17 13:16 Michał Górny
2019-12-17 1:25 Aaron Bauman
2019-12-07 23:07 Matt Turner
2019-12-06 14:20 Michał Górny
2019-11-27 13:17 Michał Górny
2019-11-23 12:42 Michał Górny
2019-11-23 11:42 Michał Górny
2019-11-21 18:40 Michał Górny
2019-11-19 18:36 Matthew Thode
2019-11-15 14:54 Michał Górny
2019-11-15 12:13 Michał Górny
2019-11-01 20:02 Sergei Trofimovich
2019-10-12 20:23 Matt Turner
2019-07-02 8:13 Sergei Trofimovich
2019-06-06 21:33 Sergei Trofimovich
2019-05-11 16:02 Virgil Dupras
2019-05-10 12:53 Virgil Dupras
2019-04-28 8:15 Maxim Koltsov
2019-04-24 17:21 Virgil Dupras
2019-04-17 3:38 Aaron Bauman
2019-04-08 22:07 Sergei Trofimovich
2019-04-02 18:44 Virgil Dupras
2019-03-23 19:58 Matthew Thode
2019-03-19 1:51 Virgil Dupras
2019-03-19 1:51 Virgil Dupras
2019-03-15 10:13 Mikle Kolyada
2019-03-10 21:38 Matt Turner
2019-03-10 21:38 Matt Turner
2019-03-10 21:38 Matt Turner
2019-03-03 2:10 Matt Turner
2019-03-02 23:21 Matt Turner
2019-03-02 20:49 Thomas Deutschmann
2019-03-02 18:31 Mikle Kolyada
2019-02-26 20:07 Virgil Dupras
2019-02-22 20:17 Sergei Trofimovich
2019-02-21 20:28 Markus Meier
2019-02-17 18:04 Sergei Trofimovich
2019-02-16 1:49 Virgil Dupras
2019-02-07 16:39 Mikle Kolyada
2019-02-07 12:31 Tobias Klausmann
2019-02-04 20:50 Virgil Dupras
2019-02-04 20:16 Markus Meier
2019-02-01 2:13 Virgil Dupras
2019-01-30 16:04 Tobias Klausmann
2019-01-29 19:19 Virgil Dupras
2019-01-22 1:40 Virgil Dupras
2019-01-17 17:00 Mikle Kolyada
2019-01-15 22:10 Thomas Deutschmann
2019-01-14 7:14 Sergei Trofimovich
2019-01-09 17:11 Virgil Dupras
2018-12-22 7:15 Mikle Kolyada
2018-12-19 22:28 Sergei Trofimovich
2018-12-19 22:28 Sergei Trofimovich
2018-12-17 13:15 Virgil Dupras
2018-12-17 13:03 Virgil Dupras
2018-12-11 4:13 Virgil Dupras
2018-11-19 21:15 Fabian Groffen
2018-10-27 18:46 Sergei Trofimovich
2018-10-17 10:36 Tobias Klausmann
2018-10-17 10:36 Tobias Klausmann
2018-10-11 12:36 Virgil Dupras
2018-10-07 10:11 Jeroen Roovers
2018-10-05 16:49 Virgil Dupras
2018-10-01 19:21 Virgil Dupras
2018-10-01 19:21 Virgil Dupras
2018-09-24 0:32 Joshua Kinard
2018-09-11 19:05 Sergei Trofimovich
2018-09-11 6:43 Sergei Trofimovich
2018-09-10 19:51 Virgil Dupras
2018-08-13 21:15 Sergei Trofimovich
2018-08-06 9:01 Sergei Trofimovich
2018-07-16 13:19 Michał Górny
2018-07-16 7:42 Michał Górny
2018-07-15 22:22 Michał Górny
2018-07-11 22:11 Michał Górny
2018-07-11 22:11 Michał Górny
2018-07-11 22:11 Michał Górny
2018-07-11 22:11 Michał Górny
2018-07-11 22:11 Michał Górny
2018-07-11 22:11 Michał Górny
2018-07-11 22:11 Michał Górny
2018-06-27 6:25 Sergei Trofimovich
2018-06-08 10:01 Mikle Kolyada
2018-04-21 23:55 Thomas Deutschmann
2018-04-09 20:22 Stephen Klimaszewski
2018-04-08 23:06 Tim Harder
2018-03-21 19:41 Markus Meier
2018-03-15 1:03 Matt Turner
2018-02-26 17:32 Thomas Deutschmann
2018-02-24 3:21 Thomas Deutschmann
2018-02-17 21:51 Patrice Clement
2017-12-27 20:06 Sergei Trofimovich
2017-12-26 16:22 Jason Zaman
2017-12-23 21:58 Sergei Trofimovich
2017-12-21 22:34 Sergei Trofimovich
2017-12-17 0:25 Mike Gilbert
2017-12-15 23:29 Sergei Trofimovich
2017-11-28 15:33 Mike Gilbert
2017-11-24 15:19 Mike Gilbert
2017-11-24 15:19 Mike Gilbert
2017-11-24 15:19 Mike Gilbert
2017-09-27 19:37 Zac Medico
2017-07-30 17:43 David Seifert
2017-06-29 22:04 Sebastien Fabbro
2017-06-28 7:58 Sergei Trofimovich
2017-05-28 17:30 Mike Gilbert
2017-05-28 17:29 Mike Gilbert
2017-05-28 17:29 Mike Gilbert
2017-05-26 18:34 Mart Raudsepp
2017-05-26 10:49 Tobias Klausmann
2017-05-26 10:21 Tobias Klausmann
2017-05-18 20:12 Michael Weber
2017-05-15 13:15 Lars Wendler
2017-05-03 12:18 Michał Górny
2017-03-11 17:07 Agostino Sarubbo
2017-03-01 0:49 Michael Weber
2017-02-25 10:03 Agostino Sarubbo
2017-02-23 16:35 Michael Weber
2017-02-23 16:35 Michael Weber
2017-02-23 13:45 Michael Weber
2017-02-21 11:54 Tobias Klausmann
2017-02-19 8:40 Markus Meier
2017-02-19 8:40 Markus Meier
2017-02-12 17:10 Agostino Sarubbo
2017-02-04 12:08 Jeroen Roovers
2017-01-30 18:56 Lars Wendler
2017-01-25 6:39 Jeroen Roovers
2017-01-23 6:11 Jeroen Roovers
2017-01-15 20:21 Markus Meier
2017-01-08 9:52 Aaron Bauman
2017-01-06 14:33 Tobias Klausmann
2016-12-11 9:14 Justin Lecher
2016-11-30 18:05 Michał Górny
2016-11-30 13:54 Lars Wendler
2016-11-30 13:54 Lars Wendler
2016-11-06 21:39 Matt Thode
2016-10-14 19:25 Brian Dolbec
2016-10-07 18:11 Brian Dolbec
2016-10-01 13:59 Jeroen Roovers
2016-09-05 16:22 Mike Gilbert
2016-09-05 1:51 Mike Gilbert
2016-09-05 1:48 Mike Gilbert
2016-05-27 15:12 Tobias Klausmann
2016-04-01 19:11 Markus Meier
2016-03-20 15:43 Agostino Sarubbo
2016-03-20 12:32 Dirkjan Ochtman
2015-12-08 15:38 Justin Lecher
2015-12-07 18:33 Mike Frysinger
2015-12-07 8:58 Justin Lecher
2015-11-23 10:05 Justin Lecher
2015-11-23 6:44 Jeroen Roovers
2015-11-22 19:27 Markus Meier
2015-11-19 10:25 Agostino Sarubbo
2015-11-16 15:01 Agostino Sarubbo
2015-11-05 11:52 Agostino Sarubbo
2015-11-04 16:09 Agostino Sarubbo
2015-11-04 15:50 Agostino Sarubbo
2015-11-04 8:42 Justin Lecher
2015-11-02 13:12 Agostino Sarubbo
2015-11-02 13:09 Agostino Sarubbo
2015-11-02 11:50 Justin Lecher
2015-10-14 13:40 Justin Lecher
2015-10-11 11:25 Justin Lecher
2015-10-11 7:05 Justin Lecher
2015-10-01 7:03 Justin Lecher
2015-09-28 12:12 Justin Lecher
2015-09-20 9:33 Justin Lecher
2015-09-19 19:22 Patrice Clement
2015-09-19 19:02 Agostino Sarubbo
2015-09-16 14:14 Tobias Klausmann
2015-09-16 8:53 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=1711557078.6b64a709eec83e722ea3ff812254d1d8596bd549.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