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 07AB1138334 for ; Wed, 28 Aug 2019 15:48:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B17DE0849; Wed, 28 Aug 2019 15:48:25 +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 F3D76E0849 for ; Wed, 28 Aug 2019 15:48:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 706B434A1EA for ; Wed, 28 Aug 2019 15:48:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6753B622 for ; Wed, 28 Aug 2019 15:48:21 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1567007286.f8255bc0c85f1b66b6883532ff797d5abfaffa1a.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/python-gantt/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/python-gantt/metadata.xml dev-python/python-gantt/python-gantt-0.6.0.ebuild X-VCS-Directories: dev-python/python-gantt/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: f8255bc0c85f1b66b6883532ff797d5abfaffa1a X-VCS-Branch: master Date: Wed, 28 Aug 2019 15:48:21 +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: 44f5675e-6dfb-4fbb-b379-440026d6dcb3 X-Archives-Hash: 3eb4145423bd4db99cae1491c90a0d3f commit: f8255bc0c85f1b66b6883532ff797d5abfaffa1a Author: Horea Christian chymera eu> AuthorDate: Wed Aug 28 15:48:06 2019 +0000 Commit: Horea Christian gmail com> CommitDate: Wed Aug 28 15:48:06 2019 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f8255bc0 dev-python/python-gantt: new package Package-Manager: Portage-2.3.72, Repoman-2.3.17 Signed-off-by: Horea Christian chymera.eu> dev-python/python-gantt/metadata.xml | 16 +++++++++++++ dev-python/python-gantt/python-gantt-0.6.0.ebuild | 29 +++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/dev-python/python-gantt/metadata.xml b/dev-python/python-gantt/metadata.xml new file mode 100644 index 000000000..5bb000bcb --- /dev/null +++ b/dev-python/python-gantt/metadata.xml @@ -0,0 +1,16 @@ + + + + + chr@chymera.eu + Horea Christian + + + sci@gentoo.org + Gentoo Science Project + + + Python-Gantt makes it possible to easily draw gantt charts from Python + and export outputs as scalable vector graphics (SVG). + + diff --git a/dev-python/python-gantt/python-gantt-0.6.0.ebuild b/dev-python/python-gantt/python-gantt-0.6.0.ebuild new file mode 100644 index 000000000..47b93c751 --- /dev/null +++ b/dev-python/python-gantt/python-gantt-0.6.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_6 python3_7 ) + +inherit distutils-r1 + +DESCRIPTION="Draw Gantt charts from Python" +HOMEPAGE="https://pypi.org/project/python-gantt/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + " +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/svgwrite[${PYTHON_USEDEP}] + " + +python_test() { + nosetests -v || die "Tests fail with ${EPYTHON}" +}