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 449A3158089 for ; Sat, 16 Sep 2023 07:57:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87A262BC018; Sat, 16 Sep 2023 07:57:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 701C02BC01E for ; Sat, 16 Sep 2023 07:57:24 +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 B9737335D60 for ; Sat, 16 Sep 2023 07:57:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62C2F11BF for ; Sat, 16 Sep 2023 07:57:22 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1694851034.d981ddec9714faa5a211d8612ed6cf70b367b2df.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pipenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pipenv/pipenv-2023.7.11-r1.ebuild X-VCS-Directories: dev-python/pipenv/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: d981ddec9714faa5a211d8612ed6cf70b367b2df X-VCS-Branch: master Date: Sat, 16 Sep 2023 07:57:22 +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: 0a7676d7-f258-44ea-8b2a-e513b6c1df60 X-Archives-Hash: 10e3bc72175c09621b8e372e6aeda168 commit: d981ddec9714faa5a211d8612ed6cf70b367b2df Author: Oz Tiram gmail com> AuthorDate: Thu Aug 17 21:51:30 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Sep 16 07:57:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d981ddec dev-python/pipenv: lint pkgcheck scan errors Signed-off-by: Oz Tiram gmail.com> Signed-off-by: Joonas Niilola gentoo.org> dev-python/pipenv/pipenv-2023.7.11-r1.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/pipenv/pipenv-2023.7.11-r1.ebuild b/dev-python/pipenv/pipenv-2023.7.11-r1.ebuild index a504dfd03346..5b219cf5e8d2 100644 --- a/dev-python/pipenv/pipenv-2023.7.11-r1.ebuild +++ b/dev-python/pipenv/pipenv-2023.7.11-r1.ebuild @@ -95,8 +95,12 @@ src_prepare() { -e "s/from pipenv\.vendor import plette, toml, tomlkit, vistir/from pipenv\.vendor import plette, toml, vistir\\nimport tomlkit/g" # remove python ruaml yaml - sed --in-place -e "s/from pipenv\.vendor\.ruamel\.yaml import YAML/from ruamel\.yaml import YAML/g" pipenv/patched/safety/util.py || die "Failed sed in ruaml-yaml" - sed --in-place -e "s/from pipenv\.vendor\.ruamel\.yaml\.error import MarkedYAMLError/from ruamel\.yaml\.error import MarkedYAMLError/g" pipenv/patched/safety/util.py || die "Failed sed in ruamel-yaml" + sed --in-place -e \ + "s/from pipenv\.vendor\.ruamel\.yaml import YAML/from ruamel\.yaml import YAML/g" \ + pipenv/patched/safety/util.py || die "Failed sed in ruaml-yaml" + sed --in-place -e \ + "s/from pipenv\.vendor\.ruamel\.yaml\.error import MarkedYAMLError/from ruamel\.yaml\.error import MarkedYAMLError/g" \ + pipenv/patched/safety/util.py || die "Failed sed in ruamel-yaml" rm -vR pipenv/vendor/ruamel || die "Failed removing ruamel-yaml from vendor"