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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1F18315838C for ; Wed, 31 Jan 2024 18:51:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E353E2B16; Wed, 31 Jan 2024 18:51:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1480FE2B16 for ; Wed, 31 Jan 2024 18:51:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2E758343014 for ; Wed, 31 Jan 2024 18:51:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AF57AE3 for ; Wed, 31 Jan 2024 18:51:49 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1706704961.a352fd3645e94d1e55efb80cf8dd0c80fb82ba01.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/proselint/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/proselint/Manifest dev-python/proselint/proselint-0.13.0.ebuild X-VCS-Directories: dev-python/proselint/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: a352fd3645e94d1e55efb80cf8dd0c80fb82ba01 X-VCS-Branch: master Date: Wed, 31 Jan 2024 18:51:49 +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: fb1178fa-5142-4cec-83ab-08a0e5663d27 X-Archives-Hash: 50309255347c167fcbcaec448867aeec commit: a352fd3645e94d1e55efb80cf8dd0c80fb82ba01 Author: Ronaldo V. Lobato gmail com> AuthorDate: Wed Jan 31 12:42:41 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Wed Jan 31 12:42:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a352fd36 dev-python/proselint: new package, add 0.13.0 Signed-off-by: Ronaldo V. Lobato gmail.com> dev-python/proselint/Manifest | 2 ++ dev-python/proselint/proselint-0.13.0.ebuild | 34 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/dev-python/proselint/Manifest b/dev-python/proselint/Manifest new file mode 100644 index 0000000000..465945210f --- /dev/null +++ b/dev-python/proselint/Manifest @@ -0,0 +1,2 @@ +DIST proselint-0.13.0.tar.gz 96876 BLAKE2B 780d1c217244e7909fb017d4c8fe4061e8328280119694f6e40630393f52bd00498382d3944d598f34751c7afecbcf5f2e76f1e204b073d28cd363452683e91f SHA512 6379c63fba0be8c5944c67ef4d3c0fd4ae4deb0076813531cddcdbc632bb254a4e213f88f07d96679465d740c1936a2b1502f852959a8ac9789ab1b983b8a0ef +EBUILD proselint-0.13.0.ebuild 574 BLAKE2B c44d89808243c221d3e2c6ffe399be2bfb93015d9b871c1000b4c2e2764057582c4a57c4cabc90b3ea493d57b4550ed6572fba654225c37a182b68fa6b341e89 SHA512 ebb1e430a65de8fe0e0da35e0fa8bf7588dd493ec896d5a109c4ac450624c6abe81c283833d66ca480d6f9abc37e77c307c47b9a7a5c45ad58dc7ee6088af5e1 diff --git a/dev-python/proselint/proselint-0.13.0.ebuild b/dev-python/proselint/proselint-0.13.0.ebuild new file mode 100644 index 0000000000..9afb138888 --- /dev/null +++ b/dev-python/proselint/proselint-0.13.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYPI_PN=${PN^} +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A linter for prose" +HOMEPAGE=" + https://github.com/amperser/proselint/ + https://pypi.org/project/proselint/ +" + +LICENSE="BSD-3-Clause" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/click-8.0.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + epytest +} + +python_install_all() { + distutils-r1_python_install_all +}