From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dask/
Date: Sat, 4 Mar 2023 05:48:15 +0000 (UTC) [thread overview]
Message-ID: <1677908885.6fac9a1d417c1293897d1a32a6592aeaf0763fff.mgorny@gentoo> (raw)
commit: 6fac9a1d417c1293897d1a32a6592aeaf0763fff
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 05:13:20 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 05:48:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fac9a1d
dev-python/dask: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dask/Manifest | 4 --
dev-python/dask/dask-2022.12.1-r2.ebuild | 62 ----------------------------
dev-python/dask/dask-2023.1.0-r1.ebuild | 62 ----------------------------
dev-python/dask/dask-2023.1.1.ebuild | 69 --------------------------------
dev-python/dask/dask-2023.2.0.ebuild | 69 --------------------------------
5 files changed, 266 deletions(-)
diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index 84f06f79d189..f74ceea2e85e 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,6 +1,2 @@
-DIST dask-2022.12.1.gh.tar.gz 8233697 BLAKE2B 90caeb7a8a9abc03b035c787ae2f26d5dacbd8da9314b65deb7c38e1990a7d3067b4066c8f2bbb6d8179d03af471374df28e511f000097cb7b031e692e72ccd9 SHA512 1945f5737de55c559aff14c67efeee00afef18ff5dbdc07aa79affd89eb45a0808078bbc7ce24c904168e7c7a74a678a8dc90ed129593777dd25598cb45372b6
-DIST dask-2023.1.0.gh.tar.gz 8234373 BLAKE2B 39f4d6336604a66ac769732a36c718b983d2fc37a59276c4140e35354c5c469b5edbff2333ae0b52f3f1462b85ae5c11fc994a99a79330394fff0d7ead14035f SHA512 99650fd2d3805e557ee91bd578e8e4af7f12cc78bbaf72f406d13ff7805591ca0f307d78bb68fdb320dab82da23def01244708e31a87d1a8b5b18dcec8a048fb
-DIST dask-2023.1.1.gh.tar.gz 8497754 BLAKE2B ff9f9f738a557fa0b6a57e0a006fb0c7a29d37c38d4d6ee8656e2e5519a44d7ac6235f106c09c8d28b402bc32909bd065df1cb3d2f9baf8b0ac86bf5ed858969 SHA512 7638a8c8213bec4870bfc1d649bec6ab50354e20df722c3f715b9e438435838253907ead4c13a73d5f1570f63d745059e579274fd0e85c5cdf64411e9d8a761b
-DIST dask-2023.2.0.gh.tar.gz 8499228 BLAKE2B eb8a3345702d8ffd0314963f2d8a358bb28a65be4a3c61efa473514b4eb49baa1a69766a7e71812a13aee72ab6e98298358755c2597a8cafeff12d009fb9f482 SHA512 787f1a9e3c7d27f7fe78c5cd1f6ab0a2c30c36298ec8af4555711cd63018d6d92ed26ef5159cd81b65f1c30c74d24e81c0a2277e00a5cb621b5fd2abff8b3462
DIST dask-2023.2.1.gh.tar.gz 8514054 BLAKE2B 6f94172cf9f921675fc53cf59e9cbbe211f576374190eecf8e17ad9943bbd1ba15fb002e7cf81f0043b4f2450a0cde7bdb6feb42a08160d0fbaee24d4a2f483a SHA512 1af031fd2992377297daff42c4f706e4e5573cce86a9158ea1fa4f09cf0c8a51ff5fb33d7bc551c16eb0a8e5052e76b32a143b2793027becb4e2367572c46219
DIST dask-2023.3.0.gh.tar.gz 8514069 BLAKE2B 427b975010e08d23bb55606da726c64a08bf17144d50f0b4641469f30620359052434a9108510c08a7d646fd567cbeafb99afe9162a0becc3417fceecf4604d3 SHA512 1834c98edb1fd92fd022d472ec9d05497e7845d712d0e2faae27b6a408faff3678908d3109db5ae50642348a4fa6832af995f2fb67782c7a71933126699577da
diff --git a/dev-python/dask/dask-2022.12.1-r2.ebuild b/dev-python/dask/dask-2022.12.1-r2.ebuild
deleted file mode 100644
index e51e92b4be5a..000000000000
--- a/dev-python/dask/dask-2022.12.1-r2.ebuild
+++ /dev/null
@@ -1,62 +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_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
-HOMEPAGE="
- https://www.dask.org/
- https://github.com/dask/dask/
- https://pypi.org/project/dask/
-"
-SRC_URI="
- https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- >=dev-python/click-7.0[${PYTHON_USEDEP}]
- >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
- >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
- >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
- >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
- >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
- >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
- dev-python/psutil[${PYTHON_USEDEP}]
- >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
- >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/toolz[${PYTHON_USEDEP}]
- test? (
- dev-python/moto[${PYTHON_USEDEP}]
- dev-python/numexpr[${PYTHON_USEDEP}]
- dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # another test relying on -Werror
- "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
- # TODO
- dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
- dask/tests/test_config.py::test__get_paths
- dask/array/tests/test_linalg.py::test_solve_assume_a
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>0-float-5-1-True]"
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>1-float-5-1-True]"
-)
-
-python_test() {
- epytest -p no:flaky -m "not network"
-}
diff --git a/dev-python/dask/dask-2023.1.0-r1.ebuild b/dev-python/dask/dask-2023.1.0-r1.ebuild
deleted file mode 100644
index 190dd2df1ce7..000000000000
--- a/dev-python/dask/dask-2023.1.0-r1.ebuild
+++ /dev/null
@@ -1,62 +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_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
-HOMEPAGE="
- https://www.dask.org/
- https://github.com/dask/dask/
- https://pypi.org/project/dask/
-"
-SRC_URI="
- https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- >=dev-python/click-7.0[${PYTHON_USEDEP}]
- >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
- >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
- >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
- >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
- >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
- >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
- dev-python/psutil[${PYTHON_USEDEP}]
- >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
- >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/toolz[${PYTHON_USEDEP}]
- test? (
- dev-python/moto[${PYTHON_USEDEP}]
- dev-python/numexpr[${PYTHON_USEDEP}]
- dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # another test relying on -Werror
- "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
- # TODO
- dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
- dask/tests/test_config.py::test__get_paths
- dask/array/tests/test_linalg.py::test_solve_assume_a
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>0-float-5-1-True]"
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>1-float-5-1-True]"
-)
-
-python_test() {
- epytest -p no:flaky -m "not network"
-}
diff --git a/dev-python/dask/dask-2023.1.1.ebuild b/dev-python/dask/dask-2023.1.1.ebuild
deleted file mode 100644
index ec63a8cffc84..000000000000
--- a/dev-python/dask/dask-2023.1.1.ebuild
+++ /dev/null
@@ -1,69 +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_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
-HOMEPAGE="
- https://www.dask.org/
- https://github.com/dask/dask/
- https://pypi.org/project/dask/
-"
-SRC_URI="
- https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
- >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
- >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
- >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
- >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
- >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
- dev-python/psutil[${PYTHON_USEDEP}]
- >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
- >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/toolz[${PYTHON_USEDEP}]
- test? (
- dev-python/moto[${PYTHON_USEDEP}]
- dev-python/numexpr[${PYTHON_USEDEP}]
- dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # another test relying on -Werror
- "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
- # TODO
- dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
- dask/tests/test_config.py::test__get_paths
- dask/array/tests/test_linalg.py::test_solve_assume_a
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>0-float-5-1-True]"
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>1-float-5-1-True]"
- # require sqlalchemy<2.0
- dask/dataframe/io/tests/test_sql.py
-)
-
-src_prepare() {
- # fails with sqlalchemy-2.0, even though we don't use it x_x
- sed -i -e '/RemovedIn20Warning/d' setup.cfg || die
- distutils-r1_src_prepare
-}
-
-python_test() {
- epytest -p no:flaky -m "not network"
-}
diff --git a/dev-python/dask/dask-2023.2.0.ebuild b/dev-python/dask/dask-2023.2.0.ebuild
deleted file mode 100644
index ec63a8cffc84..000000000000
--- a/dev-python/dask/dask-2023.2.0.ebuild
+++ /dev/null
@@ -1,69 +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_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
-HOMEPAGE="
- https://www.dask.org/
- https://github.com/dask/dask/
- https://pypi.org/project/dask/
-"
-SRC_URI="
- https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
- >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
- >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
- >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
- >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
- >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
- dev-python/psutil[${PYTHON_USEDEP}]
- >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
- >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/toolz[${PYTHON_USEDEP}]
- test? (
- dev-python/moto[${PYTHON_USEDEP}]
- dev-python/numexpr[${PYTHON_USEDEP}]
- dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
- # another test relying on -Werror
- "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
- # TODO
- dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
- dask/tests/test_config.py::test__get_paths
- dask/array/tests/test_linalg.py::test_solve_assume_a
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>0-float-5-1-True]"
- "dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>1-float-5-1-True]"
- # require sqlalchemy<2.0
- dask/dataframe/io/tests/test_sql.py
-)
-
-src_prepare() {
- # fails with sqlalchemy-2.0, even though we don't use it x_x
- sed -i -e '/RemovedIn20Warning/d' setup.cfg || die
- distutils-r1_src_prepare
-}
-
-python_test() {
- epytest -p no:flaky -m "not network"
-}
next reply other threads:[~2023-03-04 5:48 UTC|newest]
Thread overview: 215+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-04 5:48 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-20 5:40 [gentoo-commits] repo/gentoo:master commit in: dev-python/dask/ Michał Górny
2024-04-20 5:40 Michał Górny
2024-04-05 19:45 Michał Górny
2024-04-02 5:16 Michał Górny
2024-03-30 17:02 Arthur Zamarin
2024-03-16 8:17 Michał Górny
2024-03-15 13:15 Michał Górny
2024-03-15 12:29 Jakov Smolić
2024-03-13 15:03 Arthur Zamarin
2024-03-12 17:51 Michał Górny
2024-02-24 20:07 Michał Górny
2024-02-24 19:46 Arthur Zamarin
2024-02-24 8:49 Michał Górny
2024-02-11 13:10 Michał Górny
2024-02-11 11:11 Sam James
2024-02-10 9:15 Michał Górny
2024-01-29 10:11 Michał Górny
2024-01-29 8:02 Sam James
2024-01-27 8:57 Michał Górny
2024-01-26 17:07 Michał Górny
2024-01-26 17:07 Michał Górny
2024-01-13 8:20 Michał Górny
2023-12-30 14:40 Michał Górny
2023-12-20 16:48 Michał Górny
2023-12-20 16:26 Michał Górny
2023-12-16 4:01 Michał Górny
2023-12-02 7:09 Michał Górny
2023-11-30 20:29 Michał Górny
2023-11-15 17:10 Michał Górny
2023-11-15 16:34 Arthur Zamarin
2023-11-11 8:35 Michał Górny
2023-10-28 3:18 Michał Górny
2023-10-18 15:49 Michał Górny
2023-10-18 9:02 Sam James
2023-10-14 6:29 Michał Górny
2023-09-30 7:08 Michał Górny
2023-09-30 4:56 Michał Górny
2023-09-26 4:42 Michał Górny
2023-09-25 19:12 Arthur Zamarin
2023-09-16 13:54 Michał Górny
2023-09-07 3:19 Michał Górny
2023-09-02 14:11 Michał Górny
2023-08-24 12:47 Michał Górny
2023-08-19 6:44 Michał Górny
2023-08-05 5:10 Michał Górny
2023-07-24 18:49 Michał Górny
2023-07-24 18:43 Sam James
2023-07-21 6:06 Michał Górny
2023-07-08 7:30 Michał Górny
2023-06-27 3:54 Michał Górny
2023-06-10 4:40 Michał Górny
2023-06-08 6:48 Michał Górny
2023-06-02 4:52 Michał Górny
2023-06-01 20:04 Sam James
2023-05-27 5:32 Michał Górny
2023-05-16 5:28 Michał Górny
2023-05-16 3:39 Sam James
2023-05-13 4:46 Michał Górny
2023-04-29 7:00 Michał Górny
2023-04-15 8:23 Michał Górny
2023-04-05 9:14 Michał Górny
2023-04-05 8:48 Arthur Zamarin
2023-03-25 6:39 Michał Górny
2023-03-11 6:55 Michał Górny
2023-03-03 19:37 Arthur Zamarin
2023-03-02 16:49 Michał Górny
2023-02-25 6:42 Michał Górny
2023-02-11 7:27 Michał Górny
2023-01-28 8:09 Sam James
2023-01-28 8:03 Michał Górny
2023-01-14 4:57 Michał Górny
2023-01-10 11:07 Arthur Zamarin
2023-01-10 9:00 Sam James
2022-12-25 17:55 Michał Górny
2022-12-25 17:11 Arthur Zamarin
2022-12-21 6:46 Michał Górny
2022-12-17 12:34 Michał Górny
2022-12-03 9:51 Michał Górny
2022-11-19 16:52 Michał Górny
2022-11-19 16:40 Sam James
2022-11-19 9:42 Michał Górny
2022-11-17 6:15 Michał Górny
2022-10-29 6:46 Arthur Zamarin
2022-10-25 14:06 Michał Górny
2022-10-25 12:49 Sam James
2022-10-17 12:03 Andrew Ammerlaan
2022-10-15 8:04 Michał Górny
2022-10-05 19:23 Michał Górny
2022-10-05 11:35 Sam James
2022-10-01 9:26 Arthur Zamarin
2022-09-22 7:40 Michał Górny
2022-09-07 5:16 Michał Górny
2022-09-06 21:44 Jakov Smolić
2022-09-03 12:04 Michał Górny
2022-08-27 8:42 Michał Górny
2022-08-27 8:27 Agostino Sarubbo
2022-08-20 11:22 Arthur Zamarin
2022-08-09 8:14 Michał Górny
2022-08-09 7:43 Agostino Sarubbo
2022-08-06 13:09 Arthur Zamarin
2022-07-23 6:22 Michał Górny
2022-07-16 10:16 Michał Górny
2022-07-15 7:21 Agostino Sarubbo
2022-07-09 8:41 Michał Górny
2022-06-27 9:29 Michał Górny
2022-06-27 7:35 Agostino Sarubbo
2022-06-24 20:32 Arthur Zamarin
2022-06-12 5:41 Michał Górny
2022-06-06 9:53 Michał Górny
2022-06-06 9:29 Jakov Smolić
2022-05-27 6:10 Michał Górny
2022-05-25 7:12 Michał Górny
2022-05-06 13:30 Michał Górny
2022-05-06 12:45 Jakov Smolić
2022-05-03 8:51 Michał Górny
2022-04-30 9:09 Michał Górny
2022-04-16 18:30 Arthur Zamarin
2022-04-02 9:46 Michał Górny
2022-04-02 8:32 Michał Górny
2022-04-02 7:59 Agostino Sarubbo
2022-03-21 21:11 Michał Górny
2022-03-21 21:11 Michał Górny
2022-03-19 9:36 Michał Górny
2022-03-08 13:04 Agostino Sarubbo
2022-02-25 23:41 Michał Górny
2022-02-11 21:18 Michał Górny
2022-01-28 23:01 Michał Górny
2022-01-28 18:41 Arthur Zamarin
2022-01-18 12:24 Sam James
2022-01-15 9:52 Michał Górny
2021-12-14 19:52 Andrew Ammerlaan
2021-12-13 3:09 Yixun Lan
2021-12-11 7:09 Michał Górny
2021-11-27 20:14 Michał Górny
2021-11-27 7:46 Arthur Zamarin
2021-11-06 10:59 Michał Górny
2021-10-25 17:20 Arthur Zamarin
2021-10-10 16:18 Michał Górny
2021-09-22 7:37 Michał Górny
2021-09-20 15:11 Arthur Zamarin
2021-09-20 13:41 Michał Górny
2021-09-19 21:35 Agostino Sarubbo
2021-09-04 7:47 Michał Górny
2021-08-21 7:56 Michał Górny
2021-08-16 6:38 Michał Górny
2021-08-16 5:13 Agostino Sarubbo
2021-08-14 8:03 Michał Górny
2021-07-24 8:23 Michał Górny
2021-07-12 22:46 Michał Górny
2021-07-12 21:50 Sam James
2021-07-10 7:34 Michał Górny
2021-06-23 9:28 Michał Górny
2021-06-18 21:19 Michał Górny
2021-06-15 5:40 Michał Górny
2021-06-15 5:25 Sam James
2021-06-05 8:28 Michał Górny
2021-05-29 8:06 Michał Górny
2021-05-26 8:36 Michał Górny
2021-05-15 8:39 Michał Górny
2021-04-24 9:04 Michał Górny
2021-04-13 9:05 Michał Górny
2021-04-13 7:36 Agostino Sarubbo
2021-03-07 22:39 Michał Górny
2021-03-07 19:48 Sam James
2021-03-06 10:45 Michał Górny
2021-02-26 13:18 Michał Górny
2021-02-26 12:07 Agostino Sarubbo
2021-02-05 21:28 Michał Górny
2021-01-22 20:33 Michał Górny
2021-01-16 10:11 Michał Górny
2020-11-26 23:48 Michał Górny
2020-11-18 14:33 Michał Górny
2020-11-16 0:02 Michał Górny
2020-11-15 23:50 Sam James
2020-11-12 13:17 Michał Górny
2020-11-12 12:28 Sam James
2020-10-25 21:48 Sam James
2020-10-25 21:34 Thomas Deutschmann
2020-10-07 7:28 Michał Górny
2020-10-07 7:28 Michał Górny
2020-10-03 17:00 Michał Górny
2020-09-26 10:55 Michał Górny
2020-09-19 7:21 Michał Górny
2020-09-18 7:29 Agostino Sarubbo
2020-09-16 7:13 Michał Górny
2020-09-12 22:58 Michał Górny
2020-09-12 4:01 Michał Górny
2020-09-02 8:30 Mikle Kolyada
2020-09-01 20:36 Sam James
2020-08-29 6:13 Michał Górny
2020-08-23 15:18 Michał Górny
2020-08-21 13:35 Michał Górny
2020-08-18 5:52 Sam James
2020-08-18 5:28 Sam James
2020-08-16 8:12 Michał Górny
2020-08-03 17:58 Michał Górny
2020-08-01 10:09 Michał Górny
2020-01-17 7:47 Michał Górny
2019-12-26 14:36 David Seifert
2019-04-27 2:52 Virgil Dupras
2019-04-27 2:45 Virgil Dupras
2019-03-26 18:52 Aaron Bauman
2019-03-20 21:35 Patrice Clement
2018-08-23 19:09 Virgil Dupras
2018-07-21 0:06 Mikle Kolyada
2018-06-24 9:40 Mikle Kolyada
2018-01-03 9:11 Michał Górny
2017-07-31 18:12 Sebastien Fabbro
2017-05-02 11:58 Michał Górny
2017-04-12 2:15 Benda XU
2017-01-30 19:47 Sebastien Fabbro
2017-01-09 22:36 Aaron Bauman
2016-08-11 1:29 Benda XU
2016-03-18 19:18 Sebastien Fabbro
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=1677908885.6fac9a1d417c1293897d1a32a6592aeaf0763fff.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