From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A521158090 for ; Mon, 16 May 2022 12:56:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DEBDE0905; Mon, 16 May 2022 12:56:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DBC5E0905 for ; Mon, 16 May 2022 12:56:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 24712341461 for ; Mon, 16 May 2022 12:56:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 651C9475 for ; Mon, 16 May 2022 12:55:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1652705750.580772e7e2de7a1cee6c7f233d0b00bb76d341eb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/APScheduler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/APScheduler/APScheduler-3.8.1.ebuild dev-python/APScheduler/APScheduler-3.9.0.ebuild dev-python/APScheduler/Manifest X-VCS-Directories: dev-python/APScheduler/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 580772e7e2de7a1cee6c7f233d0b00bb76d341eb X-VCS-Branch: master Date: Mon, 16 May 2022 12:55:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 67b2eba9-657c-4cad-a5be-73d6f19b5ef9 X-Archives-Hash: f51089c69416322d240ef30d8043d85e commit: 580772e7e2de7a1cee6c7f233d0b00bb76d341eb Author: Michał Górny gentoo org> AuthorDate: Mon May 16 12:54:37 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 16 12:55:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=580772e7 dev-python/APScheduler: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/APScheduler/APScheduler-3.8.1.ebuild | 49 ------------------------ dev-python/APScheduler/APScheduler-3.9.0.ebuild | 50 ------------------------- dev-python/APScheduler/Manifest | 2 - 3 files changed, 101 deletions(-) diff --git a/dev-python/APScheduler/APScheduler-3.8.1.ebuild b/dev-python/APScheduler/APScheduler-3.8.1.ebuild deleted file mode 100644 index 470a0d39cdcf..000000000000 --- a/dev-python/APScheduler/APScheduler-3.8.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="In-process task scheduler with Cron-like capabilities" -HOMEPAGE="https://github.com/agronholm/apscheduler" -SRC_URI="mirror://pypi/A/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - >=dev-python/six-1.4.0[${PYTHON_USEDEP}] - >=dev-python/tzlocal-4[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - dev-python/sqlalchemy[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -PATCHES=( - # disable test fixtures using external servers (mongodb, redis...) - # these fixtures are using markers in git master, so the patch - # should be no longer necessary with next major bump - "${FILESDIR}"/APScheduler-3.8.1-external-server-tests.patch -) - -EPYTEST_DESELECT=( - tests/test_jobstores.py::test_repr_mongodbjobstore - tests/test_jobstores.py::test_repr_redisjobstore - tests/test_jobstores.py::test_repr_zookeeperjobstore -) - -python_prepare_all() { - # suppress setuptools warning #797751 - sed -e 's|^upload-dir|upload_dir|' -i setup.cfg || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/APScheduler/APScheduler-3.9.0.ebuild b/dev-python/APScheduler/APScheduler-3.9.0.ebuild deleted file mode 100644 index 6535d1243da6..000000000000 --- a/dev-python/APScheduler/APScheduler-3.9.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="In-process task scheduler with Cron-like capabilities" -HOMEPAGE="https://github.com/agronholm/apscheduler" -SRC_URI="mirror://pypi/A/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] - >=dev-python/six-1.4.0[${PYTHON_USEDEP}] - >=dev-python/tzlocal-4[${PYTHON_USEDEP}]" -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - dev-python/sqlalchemy[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -PATCHES=( - # disable test fixtures using external servers (mongodb, redis...) - # these fixtures are using markers in git master, so the patch - # should be no longer necessary with next major bump - "${FILESDIR}"/APScheduler-3.8.1-external-server-tests.patch -) - -EPYTEST_DESELECT=( - tests/test_jobstores.py::test_repr_mongodbjobstore - tests/test_jobstores.py::test_repr_redisjobstore - tests/test_jobstores.py::test_repr_zookeeperjobstore -) - -python_prepare_all() { - # suppress setuptools warning #797751 - sed -e 's|^upload-dir|upload_dir|' -i setup.cfg || die - sed -e '/addopts/d' -i setup.cfg || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/APScheduler/Manifest b/dev-python/APScheduler/Manifest index 8bc4be634098..f7cc8a75c5a7 100644 --- a/dev-python/APScheduler/Manifest +++ b/dev-python/APScheduler/Manifest @@ -1,3 +1 @@ -DIST APScheduler-3.8.1.tar.gz 98699 BLAKE2B 7a8320251670de29f76375387f8a3817b3a9c401befd4bfefba106817ec3d21fc0f60af9b7a7620f83c0e1c651bc3eb8c62036a17e01ff91bf5dcf492ff78911 SHA512 553af2532b32bcdc7dc3047bf4f51623e87dbee62dac40b7ca8c3e64881467ecf6c50df56c863d5a44c6b8a99eb02ae22ae008d76ee4836ba398afd280bed99b -DIST APScheduler-3.9.0.tar.gz 100492 BLAKE2B c1d15dcbebf52034cad0a1317bca68cf567d5acbf6619a5905e1793702339a68cef0a639463f887bb71cb96f15762bea5e5521230fa957e2fbb2ae501ca3cb36 SHA512 40b180f0297b0be125dea89d518331c1f78b1468b6507651c8e9b06cbb44f700ef1f1c44be8bf08f562b67ac6e89ac5022598ad79081bdf0290c207063e0898a DIST APScheduler-3.9.1.tar.gz 100567 BLAKE2B a31e2591c47d451e95a982b4d85a70ee9a33bf2370a70e0e1ba2a8e31ae718d5853aad6242cbd8f90dc5bc6912af3ea96270e9f514c3903d041af450c1d8ead5 SHA512 901e04140dc9af3b67887cd3200131cc4121cad71b7ca4afe7cc0adf1a58cebb02eee5abed1f97fc95fe9fef843d00cd6611ab3fbff8ace9247894d6f0720dff