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 1DD17138350 for ; Tue, 7 Apr 2020 01:22:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A1B0E0DA6; Tue, 7 Apr 2020 01:22:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 08DCDE0DA6 for ; Tue, 7 Apr 2020 01:22:53 +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 9CB3434F04E for ; Tue, 7 Apr 2020 01:22:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D22A19B for ; Tue, 7 Apr 2020 01:22:50 +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: <1586221946.820111997c5e4f6347ece1f825743f8d30cfe555.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/metadata.xml dev-python/schedule/schedule-0.6.0-r1.ebuild dev-python/schedule/schedule-9999.ebuild X-VCS-Directories: dev-python/schedule/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 820111997c5e4f6347ece1f825743f8d30cfe555 X-VCS-Branch: dev Date: Tue, 7 Apr 2020 01:22:50 +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: 25e527e9-6e74-451b-9dc3-8eaa5c5330f6 X-Archives-Hash: c87086740af0421ea834ec03b2e659df commit: 820111997c5e4f6347ece1f825743f8d30cfe555 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Apr 6 22:17:21 2020 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Tue Apr 7 01:12:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82011199 dev-python/schedule: treecleaned package Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/schedule/Manifest | 1 + dev-python/schedule/metadata.xml | 12 ++++++++++ dev-python/schedule/schedule-0.6.0-r1.ebuild | 35 ++++++++++++++++++++++++++++ dev-python/schedule/schedule-9999.ebuild | 35 ++++++++++++++++++++++++++++ 4 files changed, 83 insertions(+) diff --git a/dev-python/schedule/Manifest b/dev-python/schedule/Manifest new file mode 100644 index 0000000..cfc14fd --- /dev/null +++ b/dev-python/schedule/Manifest @@ -0,0 +1 @@ +DIST schedule-0.6.0.tar.gz 21671 BLAKE2B 6076aff0c906782e554175b7e90cfca1417a31170e99009caccb5cbe318b5eb1295b24dfe1835109aec78fee53b615e170f03a7ec4470f596a9a2775c1072d5f SHA512 48424707b57cbc7ce9440e1658784347b691a013552b9969fd95dd260efa2d8ba56b41920628540fc4ebebbc3dc78e8e919b83cfddfe9a3cc3d60ece6ef0998f diff --git a/dev-python/schedule/metadata.xml b/dev-python/schedule/metadata.xml new file mode 100644 index 0000000..724ce6c --- /dev/null +++ b/dev-python/schedule/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + dbader/schedule + schedule + + diff --git a/dev-python/schedule/schedule-0.6.0-r1.ebuild b/dev-python/schedule/schedule-0.6.0-r1.ebuild new file mode 100644 index 0000000..dae9aea --- /dev/null +++ b/dev-python/schedule/schedule-0.6.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Python job scheduling for humans" +HOMEPAGE="https://github.com/dbader/schedule" + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/dbader/schedule" + EGIT_BRANCH="master" + inherit git-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/dbader/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND="" +DEPEND=" + test? ( + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] + >=dev-python/pytest-3.0.3[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest +distutils_enable_sphinx docs diff --git a/dev-python/schedule/schedule-9999.ebuild b/dev-python/schedule/schedule-9999.ebuild new file mode 100644 index 0000000..dae9aea --- /dev/null +++ b/dev-python/schedule/schedule-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Python job scheduling for humans" +HOMEPAGE="https://github.com/dbader/schedule" + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/dbader/schedule" + EGIT_BRANCH="master" + inherit git-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/dbader/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND="" +DEPEND=" + test? ( + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] + >=dev-python/pytest-3.0.3[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest +distutils_enable_sphinx docs