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 28E68138334 for ; Fri, 22 Nov 2019 19:41:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79932E083B; Fri, 22 Nov 2019 19:41:19 +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 4F5ECE083B for ; Fri, 22 Nov 2019 19:41:19 +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 6125434D227 for ; Fri, 22 Nov 2019 19:41:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B170F889 for ; Fri, 22 Nov 2019 19:41:15 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1574451664.575442b4b5fbe62b7fe8564efd420f8ca1c9baa0.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/towncrier/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/towncrier/Manifest dev-python/towncrier/metadata.xml dev-python/towncrier/towncrier-19.2.0.ebuild X-VCS-Directories: dev-python/towncrier/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 575442b4b5fbe62b7fe8564efd420f8ca1c9baa0 X-VCS-Branch: master Date: Fri, 22 Nov 2019 19:41: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: 37c2ea59-3413-4b4d-ba35-eae0ea215ee7 X-Archives-Hash: 02403d100f71a23613f4f99a7c489a5f commit: 575442b4b5fbe62b7fe8564efd420f8ca1c9baa0 Author: Patrick McLean sony com> AuthorDate: Fri Nov 22 18:47:18 2019 +0000 Commit: Patrick McLean gentoo org> CommitDate: Fri Nov 22 19:41:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=575442b4 dev-python/towncrier: New package Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Patrick McLean gentoo.org> dev-python/towncrier/Manifest | 1 + dev-python/towncrier/metadata.xml | 11 +++++++++ dev-python/towncrier/towncrier-19.2.0.ebuild | 37 ++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/dev-python/towncrier/Manifest b/dev-python/towncrier/Manifest new file mode 100644 index 00000000000..962e0caf23e --- /dev/null +++ b/dev-python/towncrier/Manifest @@ -0,0 +1 @@ +DIST towncrier-19.2.0.tar.gz 18089 BLAKE2B d1e17e707b90089b19d9eedebd898b71fcc9a582cbae0166650a6bd52a8ac6bb3921a458a6d2c10e5930b92230ddf5efc5a428646c464edb6eb4bfc06949e217 SHA512 60999446c4ae404fb54ea6282a862621d49f62a2488d31eecf8fed9dd7afa6e01f4feac6e3dd26b882ee75f747424d63d05521e33b5f6b8df7059ce32dbe5c4f diff --git a/dev-python/towncrier/metadata.xml b/dev-python/towncrier/metadata.xml new file mode 100644 index 00000000000..580f32722c5 --- /dev/null +++ b/dev-python/towncrier/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + towncrier + + diff --git a/dev-python/towncrier/towncrier-19.2.0.ebuild b/dev-python/towncrier/towncrier-19.2.0.ebuild new file mode 100644 index 00000000000..417f5b3cfaa --- /dev/null +++ b/dev-python/towncrier/towncrier-19.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) +inherit distutils-r1 + +DESCRIPTION="Building newsfiles for your project" +HOMEPAGE="https://github.com/hawkowl/towncrier" +SRC_URI="https://github.com/hawkowl/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-python/click[${PYTHON_USEDEP}] + dev-python/click-default-group[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/incremental[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] +" +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-vcs/git + >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}] + )" + +RESTRICT="!test? ( test )" + +python_test() { + distutils_install_for_testing + + trial towncrier || die "tests failed with ${EPYTHON}" +}