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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9851C1382C5 for ; Sun, 9 May 2021 00:35:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8EF3E0391; Sun, 9 May 2021 00:35:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA9B5E01B5 for ; Sun, 9 May 2021 00:35:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C94E335D7D for ; Sun, 9 May 2021 00:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD5D94D2 for ; Sun, 9 May 2021 00:35:15 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1620519823.3c6bab5e2c6094e09d1047076cdb94fd1288a3b7.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/schedule/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/schedule/Manifest dev-python/schedule/schedule-1.1.0.ebuild X-VCS-Directories: dev-python/schedule/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 3c6bab5e2c6094e09d1047076cdb94fd1288a3b7 X-VCS-Branch: dev Date: Sun, 9 May 2021 00:35:15 +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: afec8048-7056-414e-9d1d-8bec47bfc13c X-Archives-Hash: ad1ded6f919fd80ad25ad48ec06fdadb commit: 3c6bab5e2c6094e09d1047076cdb94fd1288a3b7 Author: Alessandro Barbieri gmail com> AuthorDate: Sun May 9 00:23:43 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun May 9 00:23:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c6bab5e dev-python/schedule: new version Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/schedule/Manifest | 1 + dev-python/schedule/schedule-1.1.0.ebuild | 32 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-python/schedule/Manifest b/dev-python/schedule/Manifest index 314d09258..1b6aaab6a 100644 --- a/dev-python/schedule/Manifest +++ b/dev-python/schedule/Manifest @@ -1 +1,2 @@ DIST schedule-1.0.0.tar.gz 27992 BLAKE2B 620afa1d78065f189799e4deaae8a627d1698292cf885acdacdfd6688b8774ed155a13c8213bb0f6dfd70dec5e17ea317658f5d78e6cbdc87d670003c218e154 SHA512 79e350d5e5083bb6da70bbd12f4e8895a08fc79088f042fa9171aec48b8a45985f1638511136be2ee8f4aa92d6992978f8c85560867b6fa88a07383e952c8c4b +DIST schedule-1.1.0.tar.gz 31873 BLAKE2B 6e33e862f94c72f32ae3bba566ad4a64428cc90f80ed6ff8d577a29717b3cc5f3c91195742cedfedbcc4090d955f343097f53ed69e9922775969c854780798ce SHA512 3fe06e334ed532f013aeb806b7beacd9418c4dbbcb80d4b27090c08178f1874694ecfced24eeddc8450e99a80831d68b34a4a3b2638a870f30f53f570650795c diff --git a/dev-python/schedule/schedule-1.1.0.ebuild b/dev-python/schedule/schedule-1.1.0.ebuild new file mode 100644 index 000000000..8ec3bbef4 --- /dev/null +++ b/dev-python/schedule/schedule-1.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +#pypy3 fails tests +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Python job scheduling for humans" +HOMEPAGE="https://github.com/dbader/schedule" + +SRC_URI="https://github.com/dbader/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +LICENSE="MIT" +SLOT="0" + +RDEPEND="" +DEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest +distutils_enable_sphinx docs dev-python/pygments + +python_test() { + epytest --deselect test_schedule.py::SchedulerTests::test_until_time +}