From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/
Date: Fri, 3 Nov 2023 17:10:34 +0000 (UTC) [thread overview]
Message-ID: <1699031360.1c088dcf92bdf265ac228d1564d3e1c5af9726bc.mgorny@gentoo> (raw)
commit: 1c088dcf92bdf265ac228d1564d3e1c5af9726bc
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 3 17:09:20 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 3 17:09:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c088dcf
dev-python/fonttools: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/fonttools/Manifest | 3 --
dev-python/fonttools/fonttools-4.42.0.ebuild | 67 ---------------------------
dev-python/fonttools/fonttools-4.42.1.ebuild | 68 ----------------------------
dev-python/fonttools/fonttools-4.43.0.ebuild | 68 ----------------------------
4 files changed, 206 deletions(-)
diff --git a/dev-python/fonttools/Manifest b/dev-python/fonttools/Manifest
index 2b240ff09b75..5aaa846305a5 100644
--- a/dev-python/fonttools/Manifest
+++ b/dev-python/fonttools/Manifest
@@ -1,4 +1 @@
-DIST fonttools-4.42.0.gh.tar.gz 3764057 BLAKE2B ef6340a58d1b8dc0fa87a6514792da76c63ee39fa7c0f420e637bb008ae4d6078722b695625bbba72481bfb47f239cd734288b6f5f89d57fcb1acca1e732f460 SHA512 c5b6963d420dd8bf2bae776880bf23c9e91aeb04f62fb3231cfb0af00008b82a19814138311c2b06cc8df1dbb83c0cd1fc1312a540918a3727407cee81d19116
-DIST fonttools-4.42.1.gh.tar.gz 3767442 BLAKE2B 902eb47cfea3c113cab7e6ccf9a0b768782bd7243690cafdde9c6c76f057bc425fd17b0c1e62a43b0c40c2c26969ead1fc9e842a8dca74f063a29c3333f9250f SHA512 0bf48873c3fb8389851de44425f7b949b1de4ae7d2f46b5041225890ce3b853351f69b0d22cb647090568947b4f09ccd4450d022fd918d92ddd0dd9325397100
-DIST fonttools-4.43.0.gh.tar.gz 3767455 BLAKE2B 1c58f9d5611af9f3ee68218958a7188268207055702641bbb6505895b89c3f8cf34f285a7fcd40bf8d9ea079e05da1642a52a6f55512851322995e42e77f881d SHA512 631e7458ec7849a98b2ccb0e4ad46e6bc5bfd6206f7d478308d08348713c2ae8b63a201c19f1080427b1f377143bd930f591ee376cc573de3dea2ba4dcb7ba08
DIST fonttools-4.43.1.gh.tar.gz 3770153 BLAKE2B d5abb086605126bbb814f4631e1da412f0f98f678274097340516bc0c9e8572039778ef3acd1fee1943e9bf431b1120de1a6809d64e64a77d81af63f61a49755 SHA512 5c505098c2f82421ef5daa0c3bad03910e978dc2dba17a80c9dcd27d5692822ae3579f1d6bc2184e80dcded0dcf61f4a859cc1b5951f07f3467197c21954ac38
diff --git a/dev-python/fonttools/fonttools-4.42.0.ebuild b/dev-python/fonttools/fonttools-4.42.0.ebuild
deleted file mode 100644
index 44e81ffabd42..000000000000
--- a/dev-python/fonttools/fonttools-4.42.0.ebuild
+++ /dev/null
@@ -1,67 +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_{10..11} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
-HOMEPAGE="
- https://github.com/fonttools/fonttools/
- https://pypi.org/project/fonttools/
-"
-SRC_URI="
- https://github.com/fonttools/fonttools/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
-
-RDEPEND="
- >=dev-python/fs-2.4.9[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- test? (
- app-arch/brotli[python,${PYTHON_USEDEP}]
- app-arch/zopfli
- )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # When dev-python/pytest-shutil is installed, we get weird import errors.
- # This is due to incomplete nesting in the Tests/ tree:
- #
- # Tests/feaLib/__init__.py
- # Tests/ufoLib/__init__.py
- # Tests/svgLib/path/__init__.py
- # Tests/otlLib/__init__.py
- # Tests/varLib/__init__.py
- #
- # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148.
- touch Tests/svgLib/__init__.py || die
-
- distutils-r1_python_prepare_all
-}
-
-src_configure() {
- export FONTTOOLS_WITH_CYTHON=1
-}
-
-src_test() {
- # virtualx used when matplotlib is installed causing plot module tests to run
- virtx distutils-r1_src_test
-}
-
-python_test() {
- epytest Tests fontTools || die "Tests failed with ${EPYTHON}"
-}
diff --git a/dev-python/fonttools/fonttools-4.42.1.ebuild b/dev-python/fonttools/fonttools-4.42.1.ebuild
deleted file mode 100644
index 837c041a5308..000000000000
--- a/dev-python/fonttools/fonttools-4.42.1.ebuild
+++ /dev/null
@@ -1,68 +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_{10..11} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
-HOMEPAGE="
- https://github.com/fonttools/fonttools/
- https://pypi.org/project/fonttools/
-"
-SRC_URI="
- https://github.com/fonttools/fonttools/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
-
-RDEPEND="
- >=dev-python/fs-2.4.9[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- test? (
- app-arch/brotli[python,${PYTHON_USEDEP}]
- app-arch/zopfli
- )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # When dev-python/pytest-shutil is installed, we get weird import errors.
- # This is due to incomplete nesting in the Tests/ tree:
- #
- # Tests/feaLib/__init__.py
- # Tests/ufoLib/__init__.py
- # Tests/svgLib/path/__init__.py
- # Tests/otlLib/__init__.py
- # Tests/varLib/__init__.py
- #
- # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148.
- touch Tests/svgLib/__init__.py || die
-
- distutils-r1_python_prepare_all
-}
-
-src_configure() {
- export FONTTOOLS_WITH_CYTHON=1
-}
-
-src_test() {
- # virtualx used when matplotlib is installed causing plot module tests to run
- virtx distutils-r1_src_test
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest Tests fontTools || die "Tests failed with ${EPYTHON}"
-}
diff --git a/dev-python/fonttools/fonttools-4.43.0.ebuild b/dev-python/fonttools/fonttools-4.43.0.ebuild
deleted file mode 100644
index a65b02e28c6a..000000000000
--- a/dev-python/fonttools/fonttools-4.43.0.ebuild
+++ /dev/null
@@ -1,68 +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_{10..11} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
-HOMEPAGE="
- https://github.com/fonttools/fonttools/
- https://pypi.org/project/fonttools/
-"
-SRC_URI="
- https://github.com/fonttools/fonttools/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
-
-RDEPEND="
- >=dev-python/fs-2.4.9[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- test? (
- app-arch/brotli[python,${PYTHON_USEDEP}]
- app-arch/zopfli
- )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # When dev-python/pytest-shutil is installed, we get weird import errors.
- # This is due to incomplete nesting in the Tests/ tree:
- #
- # Tests/feaLib/__init__.py
- # Tests/ufoLib/__init__.py
- # Tests/svgLib/path/__init__.py
- # Tests/otlLib/__init__.py
- # Tests/varLib/__init__.py
- #
- # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148.
- touch Tests/svgLib/__init__.py || die
-
- distutils-r1_python_prepare_all
-}
-
-src_configure() {
- export FONTTOOLS_WITH_CYTHON=1
-}
-
-src_test() {
- # virtualx used when matplotlib is installed causing plot module tests to run
- virtx distutils-r1_src_test
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest Tests fontTools || die "Tests failed with ${EPYTHON}"
-}
next reply other threads:[~2023-11-03 17:10 UTC|newest]
Thread overview: 454+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-03 17:10 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-15 4:59 [gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/ Michał Górny
2024-10-13 18:45 Arthur Zamarin
2024-10-12 7:52 Michał Górny
2024-10-12 7:28 Michał Górny
2024-10-12 7:28 Michał Górny
2024-10-12 7:28 Michał Górny
2024-10-12 7:04 Michał Górny
2024-09-25 4:39 Michał Górny
2024-09-24 6:41 Michał Górny
2024-07-20 12:50 Arthur Zamarin
2024-07-20 8:14 Arthur Zamarin
2024-07-20 7:42 Arthur Zamarin
2024-07-11 11:59 Michał Górny
2024-07-05 16:29 Arthur Zamarin
2024-06-29 15:09 Andreas K. Hüttel
2024-06-25 7:27 Petr Vaněk
2024-06-24 3:02 Sam James
2024-06-22 17:18 Sam James
2024-06-22 17:18 Sam James
2024-06-22 14:23 Arthur Zamarin
2024-06-22 13:49 Arthur Zamarin
2024-06-22 13:49 Arthur Zamarin
2024-06-22 13:48 Arthur Zamarin
2024-06-18 11:38 Michał Górny
2024-06-13 21:29 James Le Cuirot
2024-06-12 21:50 Sam James
2024-06-12 21:50 Sam James
2024-06-12 21:50 Sam James
2024-06-08 17:14 Arthur Zamarin
2024-06-08 6:06 Arthur Zamarin
2024-06-01 3:57 Michał Górny
2024-05-30 4:36 Ionen Wolkens
2024-05-28 6:25 Jakov Smolić
2024-05-28 4:27 Michał Górny
2024-05-25 12:39 WANG Xuerui
2024-05-25 6:17 Arthur Zamarin
2024-05-25 6:17 Arthur Zamarin
2024-05-25 6:08 Arthur Zamarin
2024-05-25 6:08 Arthur Zamarin
2024-05-25 4:11 Michał Górny
2024-05-25 3:50 Michał Górny
2024-04-20 10:49 Michał Górny
2024-04-20 10:49 Michał Górny
2024-04-20 10:49 Michał Górny
2024-04-20 10:04 Sam James
2024-04-20 9:54 Michał Górny
2024-04-20 9:54 Michał Górny
2024-04-20 9:51 Michał Górny
2024-04-18 18:13 Michał Górny
2024-04-05 18:52 Michał Górny
2024-03-30 15:39 Arthur Zamarin
2024-03-30 15:28 Michał Górny
2024-03-30 15:28 Michał Górny
2024-03-30 14:59 Michał Górny
2024-03-30 14:53 Michał Górny
2024-03-30 14:53 Michał Górny
2024-03-30 14:53 Michał Górny
2024-03-19 5:52 Michał Górny
2024-03-19 3:42 Ionen Wolkens
2024-03-16 6:54 Michał Górny
2024-03-03 19:03 Michał Górny
2024-03-03 0:25 Sam James
2024-03-02 22:50 Sam James
2024-03-02 20:41 Sam James
2024-03-02 18:49 Sam James
2024-03-02 10:57 Arthur Zamarin
2024-03-02 10:01 Arthur Zamarin
2024-02-24 19:22 Arthur Zamarin
2024-02-24 10:26 Sam James
2024-02-24 10:14 Michał Górny
2024-02-16 5:40 Michał Górny
2024-02-13 19:05 Michał Górny
2024-02-13 5:43 Viorel Munteanu
2024-02-07 8:29 Michał Górny
2024-01-29 8:57 Sam James
2024-01-29 8:37 Sam James
2024-01-29 8:19 Sam James
2024-01-29 8:19 Sam James
2024-01-29 8:02 Sam James
2024-01-29 8:01 Sam James
2024-01-29 7:02 Arthur Zamarin
2024-01-23 16:53 Michał Górny
2024-01-23 4:17 Sam James
2024-01-21 7:58 Viorel Munteanu
2024-01-21 7:58 Viorel Munteanu
2024-01-11 15:24 Michał Górny
2024-01-09 11:47 Michał Górny
2024-01-06 10:29 Michał Górny
2024-01-06 10:27 Michał Górny
2024-01-06 10:24 Michał Górny
2024-01-06 10:08 Michał Górny
2024-01-06 9:59 Michał Górny
2023-12-19 6:11 Michał Górny
2023-12-18 5:18 Michał Górny
2023-12-17 23:55 Ionen Wolkens
2023-12-16 2:45 Sam James
2023-12-09 19:00 Arthur Zamarin
2023-12-09 15:13 Michał Górny
2023-12-09 14:30 Michał Górny
2023-12-09 14:10 Michał Górny
2023-12-09 14:04 Michał Górny
2023-12-09 14:04 Michał Górny
2023-12-09 13:56 Michał Górny
2023-12-02 13:11 Michał Górny
2023-11-29 17:13 Sam James
2023-11-29 14:42 Arthur Zamarin
2023-11-29 14:42 Arthur Zamarin
2023-11-29 10:30 Michał Górny
2023-11-29 10:04 Michał Górny
2023-11-23 15:02 Michał Górny
2023-11-21 19:05 Michał Górny
2023-11-20 19:17 Michał Górny
2023-11-17 16:51 Michał Górny
2023-11-17 16:51 Michał Górny
2023-11-17 16:51 Michał Górny
2023-11-17 16:51 Michał Górny
2023-11-16 4:09 Michał Górny
2023-11-14 20:06 Michał Górny
2023-11-03 18:35 Michał Górny
2023-11-03 15:08 Arthur Zamarin
2023-11-01 19:03 Arthur Zamarin
2023-10-24 15:25 Michał Górny
2023-10-06 15:08 Michał Górny
2023-09-29 19:13 Arthur Zamarin
2023-09-27 19:22 Arthur Zamarin
2023-09-25 18:31 Arthur Zamarin
2023-09-25 18:31 Arthur Zamarin
2023-09-25 18:27 Arthur Zamarin
2023-09-25 17:34 Arthur Zamarin
2023-09-25 17:33 Arthur Zamarin
2023-09-25 16:57 Arthur Zamarin
2023-08-20 17:41 Michał Górny
2023-08-20 10:57 Michał Górny
2023-08-20 10:29 Sam James
2023-08-20 5:43 Sam James
2023-08-19 16:51 Arthur Zamarin
2023-08-19 16:23 Arthur Zamarin
2023-08-19 16:20 Arthur Zamarin
2023-08-19 16:01 Arthur Zamarin
2023-08-19 15:58 Arthur Zamarin
2023-08-19 15:58 Arthur Zamarin
2023-08-03 6:09 Michał Górny
2023-08-02 15:05 Michał Górny
2023-08-02 13:35 Sam James
2023-08-02 4:27 Sam James
2023-07-24 10:05 Jakov Smolić
2023-07-24 8:54 Jakov Smolić
2023-07-21 19:05 Arthur Zamarin
2023-07-13 5:28 Michał Górny
2023-06-13 5:51 Michał Górny
2023-06-11 19:19 Michał Górny
2023-06-11 18:38 Jakov Smolić
2023-06-11 16:46 Sam James
2023-06-11 15:04 Sam James
2023-06-11 13:53 Sam James
2023-06-11 13:46 Sam James
2023-05-11 6:26 Michał Górny
2023-05-04 16:11 Michał Górny
2023-04-08 12:31 Michał Górny
2023-04-08 12:26 Arthur Zamarin
2023-04-08 11:16 Arthur Zamarin
2023-04-08 10:43 Arthur Zamarin
2023-04-08 9:41 Arthur Zamarin
2023-04-08 8:42 Arthur Zamarin
2023-04-08 8:42 Arthur Zamarin
2023-04-08 8:22 Arthur Zamarin
2023-04-08 8:01 Arthur Zamarin
2023-03-29 5:49 Michał Górny
2023-03-17 5:32 Michał Górny
2023-03-07 7:08 Michał Górny
2022-11-25 20:36 Arthur Zamarin
2022-11-25 19:11 Sam James
2022-11-25 19:11 Sam James
2022-11-25 14:08 Arthur Zamarin
2022-11-25 14:08 Arthur Zamarin
2022-11-25 14:07 Arthur Zamarin
2022-11-25 14:02 Arthur Zamarin
2022-11-25 13:59 Arthur Zamarin
2022-11-25 13:55 Arthur Zamarin
2022-10-25 14:06 Michał Górny
2022-10-25 12:49 Sam James
2022-10-25 9:49 Sam James
2022-10-23 7:53 Agostino Sarubbo
2022-10-22 16:45 Arthur Zamarin
2022-10-22 16:28 Arthur Zamarin
2022-10-22 16:10 Arthur Zamarin
2022-10-22 15:58 Arthur Zamarin
2022-10-22 15:49 Arthur Zamarin
2022-10-22 6:22 Michał Górny
2022-10-01 9:26 Arthur Zamarin
2022-09-22 7:40 Michał Górny
2022-09-20 8:08 Michał Górny
2022-09-20 7:43 Jakov Smolić
2022-09-20 0:07 Sam James
2022-09-20 0:07 Sam James
2022-09-19 19:56 Arthur Zamarin
2022-09-19 19:54 Arthur Zamarin
2022-09-19 19:49 Arthur Zamarin
2022-09-19 19:46 Arthur Zamarin
2022-09-19 19:40 Arthur Zamarin
2022-09-16 6:36 Arthur Zamarin
2022-08-24 19:36 Arthur Zamarin
2022-08-20 7:59 Agostino Sarubbo
2022-08-19 16:54 Sam James
2022-08-19 10:25 Arthur Zamarin
2022-08-19 8:47 Arthur Zamarin
2022-08-19 8:21 Arthur Zamarin
2022-08-19 7:54 Arthur Zamarin
2022-08-19 7:43 Arthur Zamarin
2022-08-19 7:41 Arthur Zamarin
2022-08-17 18:28 Arthur Zamarin
2022-08-15 19:06 Arthur Zamarin
2022-07-19 1:09 Sam James
2022-05-19 21:42 Michał Górny
2022-05-18 18:31 Sam James
2022-05-17 9:24 Agostino Sarubbo
2022-05-16 21:50 Sam James
2022-05-15 11:09 Jakov Smolić
2022-05-15 9:16 Jakov Smolić
2022-05-15 9:05 Jakov Smolić
2022-05-15 8:54 Jakov Smolić
2022-05-15 8:23 Jakov Smolić
2022-05-07 4:28 WANG Xuerui
2022-05-06 20:09 Arthur Zamarin
2022-05-06 20:04 Arthur Zamarin
2022-04-26 12:41 Michał Górny
2022-04-25 17:16 Sam James
2022-04-23 7:12 Arthur Zamarin
2022-04-22 16:51 Arthur Zamarin
2022-04-21 20:48 Michał Górny
2022-04-20 17:02 Arthur Zamarin
2022-04-20 6:37 Agostino Sarubbo
2022-04-20 6:37 Agostino Sarubbo
2022-04-19 16:56 Arthur Zamarin
2022-04-19 16:56 Arthur Zamarin
2022-04-19 13:46 Jakov Smolić
2022-04-19 13:46 Jakov Smolić
2022-04-18 18:39 Michał Górny
2022-04-18 18:22 Arthur Zamarin
2022-04-18 9:27 Agostino Sarubbo
2022-04-16 18:45 Sam James
2022-04-16 7:38 Sam James
2022-04-15 18:50 Arthur Zamarin
2022-04-15 18:30 Arthur Zamarin
2022-04-15 15:38 Arthur Zamarin
2022-04-15 15:24 Arthur Zamarin
2022-04-08 21:18 Michał Górny
2022-03-23 8:58 Michał Górny
2022-03-18 22:28 Michał Górny
2022-03-12 19:49 Michał Górny
2022-03-12 10:50 Arthur Zamarin
2022-03-12 9:40 Arthur Zamarin
2022-03-10 18:36 Arthur Zamarin
2022-03-06 7:43 Sam James
2022-02-27 16:38 Sam James
2022-02-01 22:03 Michał Górny
2022-01-31 0:26 Michał Górny
2022-01-24 23:05 Michał Górny
2022-01-24 23:00 Sam James
2022-01-24 22:14 Michał Górny
2022-01-20 12:58 Arthur Zamarin
2022-01-20 9:46 Jakov Smolić
2022-01-20 9:43 Arthur Zamarin
2022-01-20 9:33 Arthur Zamarin
2022-01-20 9:13 Jakov Smolić
2022-01-20 8:42 Arthur Zamarin
2022-01-20 8:39 Arthur Zamarin
2022-01-06 0:12 Michał Górny
2022-01-05 18:51 Arthur Zamarin
2022-01-04 3:22 Sam James
2022-01-04 3:22 Sam James
2022-01-04 3:20 Sam James
2022-01-04 3:20 Sam James
2022-01-03 19:23 Jakov Smolić
2022-01-03 18:38 Arthur Zamarin
2022-01-03 18:37 Arthur Zamarin
2021-12-25 21:30 Michał Górny
2021-12-25 21:14 Sam James
2021-12-22 22:40 Sam James
2021-12-22 20:21 Arthur Zamarin
2021-12-22 19:41 Arthur Zamarin
2021-12-22 19:41 Arthur Zamarin
2021-12-22 19:38 Arthur Zamarin
2021-12-22 19:38 Arthur Zamarin
2021-12-22 19:33 Jakov Smolić
2021-12-19 20:50 Arthur Zamarin
2021-12-16 8:46 Michał Górny
2021-12-10 19:40 Michał Górny
2021-12-10 19:33 Arthur Zamarin
2021-12-10 7:39 Agostino Sarubbo
2021-12-10 4:40 Sam James
2021-12-10 0:27 Sam James
2021-12-09 22:33 Arthur Zamarin
2021-12-09 22:01 Arthur Zamarin
2021-12-09 22:01 Arthur Zamarin
2021-12-09 21:55 Arthur Zamarin
2021-12-03 19:46 Michał Górny
2021-11-22 8:08 Michał Górny
2021-11-10 15:19 Arthur Zamarin
2021-11-09 22:35 Sam James
2021-11-09 10:23 Michał Górny
2021-11-06 10:59 Michał Górny
2021-10-31 18:07 Sam James
2021-10-31 18:07 Sam James
2021-10-31 18:04 Sam James
2021-10-31 18:02 Sam James
2021-10-31 18:02 Sam James
2021-10-31 17:58 Sam James
2021-10-07 13:42 Michał Górny
2021-10-07 6:37 Sam James
2021-09-26 22:28 James Le Cuirot
2021-09-24 6:33 Michał Górny
2021-09-14 21:35 Michał Górny
2021-09-12 22:59 Sam James
2021-09-12 7:37 Sam James
2021-09-12 7:31 Sam James
2021-09-12 7:24 Agostino Sarubbo
2021-09-12 7:21 Agostino Sarubbo
2021-09-12 7:09 Agostino Sarubbo
2021-09-11 15:59 Sam James
2021-08-10 5:57 Michał Górny
2021-08-07 14:31 Michał Górny
2021-08-07 14:07 Michał Górny
2021-08-07 14:07 Michał Górny
2021-08-07 8:50 Michał Górny
2021-08-04 6:13 Michał Górny
2021-07-27 7:05 Michał Górny
2021-07-16 22:37 Michał Górny
2021-07-12 9:11 Michał Górny
2021-07-12 6:41 Sam James
2021-07-06 7:58 Michał Górny
2021-07-06 1:48 Sam James
2021-07-05 6:06 Sergei Trofimovich
2021-07-03 6:25 Agostino Sarubbo
2021-07-03 6:24 Agostino Sarubbo
2021-07-03 6:22 Agostino Sarubbo
2021-07-03 6:20 Agostino Sarubbo
2021-06-23 10:09 Michał Górny
2021-06-22 18:07 Sam James
2021-06-05 21:08 Michał Górny
2021-05-26 8:19 Michał Górny
2021-05-21 8:07 Michał Górny
2021-05-17 16:35 Michał Górny
2021-05-14 11:19 Sam James
2021-05-14 10:44 Sam James
2021-05-14 8:14 Michał Górny
2021-05-06 11:12 Michał Górny
2021-05-06 10:06 Sam James
2021-04-27 7:08 Michał Górny
2021-04-02 8:51 Michał Górny
2021-03-30 11:10 Michał Górny
2021-03-30 9:27 Sam James
2021-02-27 8:09 Michał Górny
2021-02-23 15:32 Pacho Ramos
2021-01-18 14:44 Michał Górny
2021-01-18 14:10 Sam James
2021-01-13 20:16 Michał Górny
2021-01-13 19:04 Sam James
2020-12-27 12:26 Jonas Stein
2020-12-16 17:18 Michał Górny
2020-12-09 17:02 Pacho Ramos
2020-12-01 10:35 Sam James
2020-04-19 2:35 Craig Andrews
2020-04-12 18:28 Sergei Trofimovich
2020-03-27 10:52 Michał Górny
2020-03-27 10:22 Michał Górny
2020-03-27 10:22 Michał Górny
2020-03-27 10:22 Michał Górny
2020-03-25 12:08 Michał Górny
2020-03-25 12:08 Michał Górny
2020-01-03 14:39 Agostino Sarubbo
2019-12-13 22:37 Sergei Trofimovich
2019-12-11 22:07 Aaron Bauman
2019-12-11 20:26 David Seifert
2019-12-11 19:24 Matt Turner
2019-12-11 16:31 Aaron Bauman
2019-12-11 16:03 Matt Turner
2019-12-11 16:03 Matt Turner
2019-12-11 16:01 Matt Turner
2019-12-11 16:01 Matt Turner
2019-12-10 15:05 Agostino Sarubbo
2019-12-10 9:19 Agostino Sarubbo
2019-12-10 9:18 Agostino Sarubbo
2019-12-10 8:57 Agostino Sarubbo
2019-12-10 8:54 Agostino Sarubbo
2019-12-10 8:47 Agostino Sarubbo
2019-12-09 13:48 Agostino Sarubbo
2019-12-03 11:58 Agostino Sarubbo
2019-12-03 10:07 Agostino Sarubbo
2019-12-03 8:38 Agostino Sarubbo
2019-12-01 14:23 Agostino Sarubbo
2019-11-29 9:13 Agostino Sarubbo
2019-11-28 4:33 Michał Górny
2019-11-27 13:28 Mikle Kolyada
2019-11-25 13:03 Aaron Bauman
2019-11-24 23:46 Aaron Bauman
2019-11-23 21:32 Sergei Trofimovich
2019-11-23 21:32 Sergei Trofimovich
2019-11-23 19:28 Matt Turner
2019-11-23 17:37 Matt Turner
2019-11-23 16:48 Matt Turner
2019-10-12 21:25 Matt Turner
2019-10-12 21:25 Matt Turner
2019-09-15 2:50 Matt Turner
2019-09-15 2:50 Matt Turner
2019-09-15 0:36 Matt Turner
2019-09-15 0:36 Matt Turner
2019-09-15 0:35 Matt Turner
2019-09-15 0:35 Matt Turner
2019-09-15 0:35 Matt Turner
2019-09-15 0:35 Matt Turner
2019-09-15 0:35 Matt Turner
2019-09-15 0:35 Matt Turner
2019-09-14 20:55 Matt Turner
2019-09-14 18:54 Matt Turner
2019-09-14 18:54 Matt Turner
2019-09-14 18:54 Matt Turner
2019-05-02 22:00 Mikle Kolyada
2019-03-20 18:59 Mikle Kolyada
2019-03-02 20:02 Matt Turner
2019-02-19 21:15 Markus Meier
2019-02-17 17:58 Mikle Kolyada
2019-02-17 16:05 Mart Raudsepp
2019-02-17 15:31 Mikle Kolyada
2018-08-17 1:38 Mikle Kolyada
2018-06-25 19:07 Tim Harder
2018-03-31 5:37 Tim Harder
2018-03-28 19:09 Matt Turner
2018-03-19 5:45 Tim Harder
2018-03-06 7:50 Tim Harder
2018-02-13 9:54 Jonas Stein
2018-01-05 10:25 Tim Harder
2018-01-04 22:11 Sergei Trofimovich
2018-01-03 23:35 Michał Górny
2017-11-25 13:20 Tim Harder
2017-11-19 2:50 Tim Harder
2017-11-06 7:46 Tim Harder
2017-10-19 8:20 Tim Harder
2017-08-31 17:38 Tim Harder
2017-05-02 17:43 Michał Górny
2017-04-26 8:20 Tim Harder
2017-03-29 21:26 Michael Weber
2017-03-29 21:26 Michael Weber
2017-01-24 13:41 Agostino Sarubbo
2016-12-11 21:46 Tim Harder
2016-07-04 9:19 Tobias Klausmann
2016-06-07 17:36 Tobias Klausmann
2016-05-20 12:46 Tobias Klausmann
2016-04-28 16:32 Tobias Klausmann
2016-03-26 9:25 Jeroen Roovers
2016-03-22 14:32 Agostino Sarubbo
2016-03-07 3:17 Jeroen Roovers
2016-02-18 18:40 Patrick Lauer
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=1699031360.1c088dcf92bdf265ac228d1564d3e1c5af9726bc.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