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 0DEC3138335 for ; Mon, 26 Nov 2018 10:15:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FCA8E0A03; Mon, 26 Nov 2018 10:15:40 +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 DAFA6E0A03 for ; Mon, 26 Nov 2018 10:15:39 +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 92A0E335D9B for ; Mon, 26 Nov 2018 10:15:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 080414B6 for ; Mon, 26 Nov 2018 10:15:36 +0000 (UTC) From: "gerion" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "gerion" Message-ID: <1543227318.22253584c295ba3113dc4a775b4cd4a30c57c5d1.gerion@gentoo> Subject: [gentoo-commits] repo/user/gerislay:master commit in: dev-vcs/gitlint/ X-VCS-Repository: repo/user/gerislay X-VCS-Files: dev-vcs/gitlint/Manifest dev-vcs/gitlint/gitlint-0.10.0.ebuild X-VCS-Directories: dev-vcs/gitlint/ X-VCS-Committer: gerion X-VCS-Committer-Name: gerion X-VCS-Revision: 22253584c295ba3113dc4a775b4cd4a30c57c5d1 X-VCS-Branch: master Date: Mon, 26 Nov 2018 10:15:36 +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: 0e92d8f4-1f27-4f78-a578-062efd2035cc X-Archives-Hash: 09dc70e3d5db87b0d4a397d4f5ff5308 commit: 22253584c295ba3113dc4a775b4cd4a30c57c5d1 Author: Gerion Entrup flump de> AuthorDate: Mon Nov 26 10:12:31 2018 +0000 Commit: gerion flump de> CommitDate: Mon Nov 26 10:15:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=22253584 dev-vcs/gitlint: add for zephyr Signed-off-by: Gerion Entrup flump.de> dev-vcs/gitlint/Manifest | 2 ++ dev-vcs/gitlint/gitlint-0.10.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-vcs/gitlint/Manifest b/dev-vcs/gitlint/Manifest new file mode 100644 index 0000000..78b1ab4 --- /dev/null +++ b/dev-vcs/gitlint/Manifest @@ -0,0 +1,2 @@ +DIST gitlint-0.10.0.tar.gz 124351 BLAKE2B d599a72a7c908e8674545db9b2131026a9a792e0151f8e37c3b9d6cb3271d1b92071b55d681debb61704d981ab9633d82cc7d0544a40745c178c1e9da28667e0 SHA512 44a021b87e9fa2cea81b112c11e01ff1c05baa6d128ddbb89d6d4b58f17b80e42a888b690fa8c624b646b5d97372e8d5aa18ff0d1bb3b5d7c7a1695a48f660ee +EBUILD gitlint-0.10.0.ebuild 622 BLAKE2B 8c6560cad625ffb3ca70a406ac0be7083a16199c341d1e04ca5343fa56f68fe7a7b46553373206c24f2c8542153719caf9de3c914189bb19c002748e903ea442 SHA512 ce1dce509b94155b8a0e7c3532ee6ed5a69c0e82d90997662a4f9294e8c1f9b9f8384b3fa6fc05231823d7b7e523a9c3d9f7a48a46db002bef8ea2afdb6278c6 diff --git a/dev-vcs/gitlint/gitlint-0.10.0.ebuild b/dev-vcs/gitlint/gitlint-0.10.0.ebuild new file mode 100644 index 0000000..dd046b2 --- /dev/null +++ b/dev-vcs/gitlint/gitlint-0.10.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{5,6,7} ) +inherit distutils-r1 + +DESCRIPTION="Linting for your git commit messages" +HOMEPAGE="https://github.com/jorisroovers/gitlint" +SRC_URI="https://github.com/jorisroovers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + dev-python/sh[${PYTHON_USEDEP}] + dev-python/arrow[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}"