From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DEEE7139BC6 for ; Fri, 18 Sep 2015 00:21:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F14FE21C014; Fri, 18 Sep 2015 00:21:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 89D7D21C014 for ; Fri, 18 Sep 2015 00:21:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50D45340A7F for ; Fri, 18 Sep 2015 00:21:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 961AB1FB for ; Fri, 18 Sep 2015 00:21:42 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1442535693.491c1c9025e288147c2abee5646790b3d714e0c3.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: dev-util/cookiecutter/ X-VCS-Repository: dev/mrueg X-VCS-Files: dev-util/cookiecutter/Manifest dev-util/cookiecutter/cookiecutter-1.0.0.ebuild dev-util/cookiecutter/metadata.xml X-VCS-Directories: dev-util/cookiecutter/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 491c1c9025e288147c2abee5646790b3d714e0c3 X-VCS-Branch: master Date: Fri, 18 Sep 2015 00:21:42 +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-Archives-Salt: c52181a9-4f2d-41c3-999b-31d7bc970aff X-Archives-Hash: 6135545102a5cb13bd3d0cdbacebe480 commit: 491c1c9025e288147c2abee5646790b3d714e0c3 Author: Manuel Rüger gentoo org> AuthorDate: Fri Sep 18 00:21:33 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Sep 18 00:21:33 2015 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=491c1c90 dev-util/cookiecutter: Initial version Package-Manager: portage-2.2.20.1 dev-util/cookiecutter/Manifest | 1 + dev-util/cookiecutter/cookiecutter-1.0.0.ebuild | 35 +++++++++++++++++++++++++ dev-util/cookiecutter/metadata.xml | 8 ++++++ 3 files changed, 44 insertions(+) diff --git a/dev-util/cookiecutter/Manifest b/dev-util/cookiecutter/Manifest new file mode 100644 index 0000000..5ecae32 --- /dev/null +++ b/dev-util/cookiecutter/Manifest @@ -0,0 +1 @@ +DIST cookiecutter-1.0.0.tar.gz 114813 SHA256 0217730c32b640a53eff16d268a8359f9171e15018d8c1d52a98c1da0b2b68d8 SHA512 be36d89d85761d11f64fb670c0542eb40b7cc6b0feda6453656bf9bfd8f16d332fea779c3d477a0e5422532698be29bc5e8facd2c328cc0a425e2b6e7d95e593 WHIRLPOOL 85cdd448c0325ce2f7adfb474beec0d11852d315e617760902231611bf13fb6e4f92082af5f9725b87d9cf543b5d3bdc05d71dc0435037200ffe2c28b2f9ac77 diff --git a/dev-util/cookiecutter/cookiecutter-1.0.0.ebuild b/dev-util/cookiecutter/cookiecutter-1.0.0.ebuild new file mode 100644 index 0000000..dd79c01 --- /dev/null +++ b/dev-util/cookiecutter/cookiecutter-1.0.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="A command-line utility that creates projects from cookiecutters (project templates)" +HOMEPAGE="https://github.com/audreyr/cookiecutter" +SRC_URI="https://github.com/audreyr/cookiecutter/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RESTRICT="test" # tests currently fail here + +RDEPEND="dev-python/binaryornot[${PYTHON_USEDEP}] + >=dev-python/jinja-2.7[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + dev-python/whichcraft[${PYTHON_USEDEP}]" + +DEPEND="test? ( ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] )" + +DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst ) + +python_test() { + py.test || die +} diff --git a/dev-util/cookiecutter/metadata.xml b/dev-util/cookiecutter/metadata.xml new file mode 100644 index 0000000..bfcb697 --- /dev/null +++ b/dev-util/cookiecutter/metadata.xml @@ -0,0 +1,8 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + +