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 8BFF415801B for ; Sat, 8 Apr 2023 20:56:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B275E088B; Sat, 8 Apr 2023 20:56:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66ED6E088B for ; Sat, 8 Apr 2023 20:56:48 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AF03933E830 for ; Sat, 8 Apr 2023 20:56:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23454A37 for ; Sat, 8 Apr 2023 20:56:43 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1680987385.8086b07eec8f590e6e00afa07f447d2f206c070c.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/vim-flake8/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/vim-flake8/Manifest app-vim/vim-flake8/vim-flake8-1.7.ebuild X-VCS-Directories: app-vim/vim-flake8/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 8086b07eec8f590e6e00afa07f447d2f206c070c X-VCS-Branch: master Date: Sat, 8 Apr 2023 20:56:43 +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: 4ff8cd7c-6b8a-4f81-953e-af57648df7aa X-Archives-Hash: 37ad172f6b6203341d7c3deccd0d9284 commit: 8086b07eec8f590e6e00afa07f447d2f206c070c Author: Marek Szuba gentoo org> AuthorDate: Sat Apr 8 20:25:21 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sat Apr 8 20:56:25 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8086b07e app-vim/vim-flake8: add 1.7 Signed-off-by: Marek Szuba gentoo.org> app-vim/vim-flake8/Manifest | 1 + app-vim/vim-flake8/vim-flake8-1.7.ebuild | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/app-vim/vim-flake8/Manifest b/app-vim/vim-flake8/Manifest index d44e59d86df7..cb759c7adb26 100644 --- a/app-vim/vim-flake8/Manifest +++ b/app-vim/vim-flake8/Manifest @@ -1 +1,2 @@ DIST vim-flake8-1.6.tar.gz 5345 BLAKE2B dd726798a49231841f9fcb915999cf965a42b8b5f593a66f97268bc6d7993584d5f9ed0cfc50508bc57d60c5dcd19c8476e86ae26fb8be9c1dcf7007db2d0323 SHA512 a4208478f9754ef2d188a51e3262c449ef16b48fc0208425795d71c304118c129ae20a723fff96863291bae66237f1479a591cc23e5ec90222e0614d2dcccce9 +DIST vim-flake8-1.7.tar.gz 6080 BLAKE2B bf78e2c4e9976fc148cf18fc5ec58c2807a9c82a6893160ca4a107664d438fc955c2eac3e41373529cc1dc5295acab06c7c9007c1ad72095548362e903d7d31a SHA512 c29cfc00e4fd94128be02e003116647819cd3b39916527b70a7684c19ef4184bce1c1556051fc269bde4696a98b752fb7b4e081c2aac46cdcdfdf35735ec76b0 diff --git a/app-vim/vim-flake8/vim-flake8-1.7.ebuild b/app-vim/vim-flake8/vim-flake8-1.7.ebuild new file mode 100644 index 000000000000..b8772d16ea7d --- /dev/null +++ b/app-vim/vim-flake8/vim-flake8-1.7.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit vim-plugin + +DESCRIPTION="vim plugin: runs the currently open file through flake8" +HOMEPAGE="https://github.com/nvie/vim-flake8" +SRC_URI="https://github.com/nvie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +RDEPEND="dev-python/flake8"