From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/platformdirs/
Date: Sat, 28 Sep 2024 12:04:11 +0000 (UTC) [thread overview]
Message-ID: <1727525046.f5da69c5f5fee121b32f928072bbea5f9b8a527e.mgorny@gentoo> (raw)
commit: f5da69c5f5fee121b32f928072bbea5f9b8a527e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 28 12:00:16 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep 28 12:04:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5da69c5
dev-python/platformdirs: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/platformdirs/Manifest | 3 --
dev-python/platformdirs/platformdirs-4.2.2.ebuild | 54 -----------------------
dev-python/platformdirs/platformdirs-4.3.1.ebuild | 54 -----------------------
dev-python/platformdirs/platformdirs-4.3.2.ebuild | 54 -----------------------
4 files changed, 165 deletions(-)
diff --git a/dev-python/platformdirs/Manifest b/dev-python/platformdirs/Manifest
index d67b6ee9566b..9e0334ab73c1 100644
--- a/dev-python/platformdirs/Manifest
+++ b/dev-python/platformdirs/Manifest
@@ -1,5 +1,2 @@
-DIST platformdirs-4.2.2.tar.gz 20916 BLAKE2B d7c551a950118a127664b8210f33497760ce06381ac6a4ea098d1a1c60605507b5e2a9762d5f7d112332d3cebd63cb642b25e93a8b67dd2a1ee7cca189f3555f SHA512 e67aff332a6c84669d77a68e7d5546bfd14e08dcf61681b03447bf6381c0d981c63be0f87fd63bc99f0a51c92bf960902ded83ba8872801c14755ab163d45a0f
-DIST platformdirs-4.3.1.tar.gz 21236 BLAKE2B 852d402831ad6060c6efc3841dd56a8484aca547e820ad9b46cc838d92f560407a769a01942bf03c31949e4b37240d292358617afdfa0dd7ea03eeba6bc62086 SHA512 6d4cd808190808bab5a90f44d9fe2fda0d624c7a76faf9f4a4a6093cd098a28b79782dbf895dcd0eeb82778aa094deeb0959fcbe25bdd93818a47b9e197b6299
-DIST platformdirs-4.3.2.tar.gz 21276 BLAKE2B 9bd9a2b3258e2fe411062895bbcc5036c77d95e092df81c9b9b113f64b4568ee44623a747048c9011e9465fb22600db9256e4900c7710a75fc27cf19c07732c7 SHA512 0bad11558f3d60f1476cdcd36a405c7218b9ce68342e3a78f95936356d91fcaaa869549503cc35055d9ce3b3eec219a980ba35e814dd3706fb4b7812aff04dd4
DIST platformdirs-4.3.3.tar.gz 21304 BLAKE2B 94248b49ab0b0ea7c43231c15c3f479c1ea0a82242a9d274b6e6b71559710f1d3bbd8ad89083c89f7627956a983ad2902cbf33b8b99a12a1481214a969fcc292 SHA512 0dc8b8585c4130660a779a1846a4d468a182dfcc0f03700001242f1eb78ba2bd9799777f6ac29367034ed23c66f1af4eda4f294201197d6444d6fdd92e7f93a1
DIST platformdirs-4.3.6.tar.gz 21302 BLAKE2B 3488d33c70c420a7234fa773a7b61eaabc85e7aabfa75c9de308074ef653b534823a133038eb8098d41f987596d7fa6c70abd6cdde28234590261ecd6c8a9f56 SHA512 8a14126346f5472798074bd9ef73b39cd0c6517951556f7ab839d2c1993d8001a3359101fe3a7a00e803d8a5540cf33057d99e1a2e93b1bd5e20a948c89e4e44
diff --git a/dev-python/platformdirs/platformdirs-4.2.2.ebuild b/dev-python/platformdirs/platformdirs-4.2.2.ebuild
deleted file mode 100644
index 36cccfe9d296..000000000000
--- a/dev-python/platformdirs/platformdirs-4.2.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A small Python module for determining appropriate platform-specific dirs"
-HOMEPAGE="
- https://pypi.org/project/platformdirs/
- https://github.com/platformdirs/platformdirs/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
-
-BDEPEND="
- test? (
- dev-python/appdirs[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
- grep -q 'build-backend = "hatchling' pyproject.toml ||
- die "Upstream changed build-backend, recheck"
- # write a custom pyproject.toml to ease setuptools bootstrap
- cat > pyproject.toml <<-EOF || die
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
-
- [project]
- name = "${PN}"
- version = "${PV}"
- description = 'A small Python package for determining appropriate platform-specific dirs, e.g. a "user data dir".'
- EOF
- # sigh
- cat > src/platformdirs/version.py <<-EOF || die
- __version__ = version = '${PV}'
- __version_tuple__ = version_tuple = (${PV//./, })
- EOF
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p pytest_mock
-}
diff --git a/dev-python/platformdirs/platformdirs-4.3.1.ebuild b/dev-python/platformdirs/platformdirs-4.3.1.ebuild
deleted file mode 100644
index 7b2b77a80661..000000000000
--- a/dev-python/platformdirs/platformdirs-4.3.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A small Python module for determining appropriate platform-specific dirs"
-HOMEPAGE="
- https://pypi.org/project/platformdirs/
- https://github.com/tox-dev/platformdirs/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
-
-BDEPEND="
- test? (
- dev-python/appdirs[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
- grep -q 'build-backend = "hatchling' pyproject.toml ||
- die "Upstream changed build-backend, recheck"
- # write a custom pyproject.toml to ease setuptools bootstrap
- cat > pyproject.toml <<-EOF || die
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
-
- [project]
- name = "${PN}"
- version = "${PV}"
- description = 'A small Python package for determining appropriate platform-specific dirs, e.g. a "user data dir".'
- EOF
- # sigh
- cat > src/platformdirs/version.py <<-EOF || die
- __version__ = version = '${PV}'
- __version_tuple__ = version_tuple = (${PV//./, })
- EOF
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p pytest_mock
-}
diff --git a/dev-python/platformdirs/platformdirs-4.3.2.ebuild b/dev-python/platformdirs/platformdirs-4.3.2.ebuild
deleted file mode 100644
index 7b2b77a80661..000000000000
--- a/dev-python/platformdirs/platformdirs-4.3.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="A small Python module for determining appropriate platform-specific dirs"
-HOMEPAGE="
- https://pypi.org/project/platformdirs/
- https://github.com/tox-dev/platformdirs/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
-
-BDEPEND="
- test? (
- dev-python/appdirs[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
- grep -q 'build-backend = "hatchling' pyproject.toml ||
- die "Upstream changed build-backend, recheck"
- # write a custom pyproject.toml to ease setuptools bootstrap
- cat > pyproject.toml <<-EOF || die
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
-
- [project]
- name = "${PN}"
- version = "${PV}"
- description = 'A small Python package for determining appropriate platform-specific dirs, e.g. a "user data dir".'
- EOF
- # sigh
- cat > src/platformdirs/version.py <<-EOF || die
- __version__ = version = '${PV}'
- __version_tuple__ = version_tuple = (${PV//./, })
- EOF
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p pytest_mock
-}
next reply other threads:[~2024-09-28 12:04 UTC|newest]
Thread overview: 126+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-28 12:04 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-20 6:49 [gentoo-commits] repo/gentoo:master commit in: dev-python/platformdirs/ Michał Górny
2024-10-05 7:39 Michał Górny
2024-10-05 7:22 Sam James
2024-09-28 11:47 Arthur Zamarin
2024-09-18 14:03 Michał Górny
2024-09-14 6:27 Michał Górny
2024-09-09 2:24 Michał Górny
2024-09-08 2:52 Michał Górny
2024-06-01 8:19 Michał Górny
2024-06-01 8:09 Arthur Zamarin
2024-05-17 8:23 Michał Górny
2024-05-17 8:23 Michał Górny
2024-05-16 15:28 Michał Górny
2024-04-24 13:42 Michał Górny
2024-02-14 12:36 Michał Górny
2024-02-14 12:26 Michał Górny
2024-01-31 6:59 Michał Górny
2023-12-20 15:51 Michał Górny
2023-12-20 15:49 Michał Górny
2023-12-05 4:32 Michał Górny
2023-11-10 21:11 Michał Górny
2023-11-05 20:58 Michał Górny
2023-11-05 19:08 Arthur Zamarin
2023-10-02 18:35 Arthur Zamarin
2023-08-11 19:08 Michał Górny
2023-08-11 19:03 Arthur Zamarin
2023-07-30 17:51 Michał Górny
2023-07-16 3:06 Michał Górny
2023-07-07 3:18 Michał Górny
2023-07-07 3:15 Michał Górny
2023-07-07 2:14 Sam James
2023-06-23 5:35 Michał Górny
2023-06-21 4:14 Michał Górny
2023-06-19 4:58 Michał Górny
2023-06-10 14:44 Michał Górny
2023-06-10 4:40 Michał Górny
2023-05-29 4:37 Michał Górny
2023-05-28 18:56 Arthur Zamarin
2023-05-23 15:42 Michał Górny
2023-05-12 2:55 Michał Górny
2023-04-28 5:56 Michał Górny
2023-04-27 3:10 Michał Górny
2023-04-26 5:36 Michał Górny
2023-04-22 16:12 Michał Górny
2023-04-22 10:53 Sam James
2023-03-26 3:02 Michał Górny
2023-03-17 15:58 Michał Górny
2023-03-17 15:52 Arthur Zamarin
2023-03-11 18:17 Michał Górny
2023-03-11 6:55 Michał Górny
2023-03-07 16:42 Fabian Groffen
2023-03-04 5:48 Michał Górny
2023-02-19 4:04 Michał Górny
2023-02-13 3:31 Matt Turner
2023-01-31 13:16 Michał Górny
2023-01-31 13:02 Sam James
2023-01-19 8:09 Joshua Kinard
2023-01-16 18:21 Michał Górny
2023-01-08 20:13 Michał Górny
2023-01-08 18:04 Arthur Zamarin
2022-12-29 5:22 Michał Górny
2022-12-28 19:11 Arthur Zamarin
2022-12-10 9:09 Michał Górny
2022-12-10 8:59 Arthur Zamarin
2022-12-07 15:59 Michał Górny
2022-11-13 18:57 Michał Górny
2022-11-07 5:54 Michał Górny
2022-06-14 5:12 Michał Górny
2022-06-13 21:24 Jakov Smolić
2022-06-13 16:29 Sam James
2022-06-13 10:22 Agostino Sarubbo
2022-06-13 10:21 Agostino Sarubbo
2022-06-13 9:46 Agostino Sarubbo
2022-06-13 7:10 Agostino Sarubbo
2022-06-13 7:09 Agostino Sarubbo
2022-05-12 10:40 Michał Górny
2022-05-11 17:54 Michał Górny
2022-05-11 17:24 Arthur Zamarin
2022-05-11 17:24 Arthur Zamarin
2022-05-11 17:15 Arthur Zamarin
2022-05-11 17:15 Arthur Zamarin
2022-05-11 17:13 Arthur Zamarin
2022-05-11 17:13 Arthur Zamarin
2022-05-11 17:13 Arthur Zamarin
2022-05-11 17:13 Arthur Zamarin
2022-05-11 17:13 Arthur Zamarin
2022-05-11 8:32 James Le Cuirot
2022-05-11 7:25 WANG Xuerui
2022-05-11 5:20 Jakov Smolić
2022-05-10 16:27 Michał Górny
2022-03-15 14:26 Michał Górny
2022-03-15 13:07 Jakov Smolić
2022-02-20 14:03 Michał Górny
2022-02-09 19:45 Michał Górny
2022-01-27 12:34 Michał Górny
2022-01-26 20:18 Jakov Smolić
2021-12-26 18:49 Arthur Zamarin
2021-10-31 20:29 Michał Górny
2021-10-15 19:11 Sam James
2021-09-25 22:00 Michał Górny
2021-09-25 22:00 Michał Górny
2021-09-25 19:53 Sam James
2021-09-25 13:23 Michał Górny
2021-09-23 8:15 James Le Cuirot
2021-09-08 0:42 Sam James
2021-09-06 23:38 Sam James
2021-09-06 17:29 Sam James
2021-09-06 5:40 Agostino Sarubbo
2021-09-06 0:15 Sam James
2021-09-05 20:07 Agostino Sarubbo
2021-09-05 20:04 Agostino Sarubbo
2021-09-05 20:01 Agostino Sarubbo
2021-09-05 6:02 Sam James
2021-08-31 7:56 Michał Górny
2021-08-22 8:01 Michał Górny
2021-08-06 20:51 Sam James
2021-08-06 20:51 Sam James
2021-08-06 20:49 Sam James
2021-08-04 18:19 Marek Szuba
2021-08-02 3:58 Sam James
2021-08-01 20:30 Matt Turner
2021-07-31 22:26 Joshua Kinard
2021-07-28 15:58 Sergei Trofimovich
2021-07-27 6:19 Sergei Trofimovich
2021-07-16 7:10 Michał Górny
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=1727525046.f5da69c5f5fee121b32f928072bbea5f9b8a527e.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