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 18C6315808B for ; Tue, 22 Feb 2022 09:38:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C22BB2BC00A; Tue, 22 Feb 2022 09:38:32 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A17B3E0B30 for ; Tue, 22 Feb 2022 09:38:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B7FAE34379C for ; Tue, 22 Feb 2022 09:38:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66FC42F0 for ; Tue, 22 Feb 2022 09:38:30 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1645522706.cde6996b2a49ab208fc7e498be1710bf8626cfd1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpbin/, dev-python/httpbin/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httpbin/files/httpbin-0.7.0-brotlicffi.patch dev-python/httpbin/files/httpbin-0.7.0-optional-raven.patch dev-python/httpbin/httpbin-0.7.0-r2.ebuild dev-python/httpbin/httpbin-0.7.0-r3.ebuild X-VCS-Directories: dev-python/httpbin/files/ dev-python/httpbin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cde6996b2a49ab208fc7e498be1710bf8626cfd1 X-VCS-Branch: master Date: Tue, 22 Feb 2022 09:38:30 +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: 552e87bf-ddfa-4a72-b661-c1fd4c692183 X-Archives-Hash: 3bec8b10a38193e264ff745e5909e195 commit: cde6996b2a49ab208fc7e498be1710bf8626cfd1 Author: Michał Górny gentoo org> AuthorDate: Tue Feb 22 09:33:37 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 22 09:38:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde6996b dev-python/httpbin: Strip raven from requirements too Signed-off-by: Michał Górny gentoo.org> dev-python/httpbin/files/httpbin-0.7.0-brotlicffi.patch | 2 +- dev-python/httpbin/files/httpbin-0.7.0-optional-raven.patch | 12 ++++++++++++ .../{httpbin-0.7.0-r2.ebuild => httpbin-0.7.0-r3.ebuild} | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/dev-python/httpbin/files/httpbin-0.7.0-brotlicffi.patch b/dev-python/httpbin/files/httpbin-0.7.0-brotlicffi.patch index f74474a70aa1..8031ad72de5b 100644 --- a/dev-python/httpbin/files/httpbin-0.7.0-brotlicffi.patch +++ b/dev-python/httpbin/files/httpbin-0.7.0-brotlicffi.patch @@ -35,7 +35,7 @@ index 7f9956b..8e17ef3 100644 install_requires=[ - 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlipy', + 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlicffi', - 'raven[flask]', 'werkzeug>=0.14.1' + 'werkzeug>=0.14.1' ], ) -- diff --git a/dev-python/httpbin/files/httpbin-0.7.0-optional-raven.patch b/dev-python/httpbin/files/httpbin-0.7.0-optional-raven.patch index 8602ed7641be..5d626768bd27 100644 --- a/dev-python/httpbin/files/httpbin-0.7.0-optional-raven.patch +++ b/dev-python/httpbin/files/httpbin-0.7.0-optional-raven.patch @@ -17,3 +17,15 @@ diff -dupr a/httpbin/core.py b/httpbin/core.py sentry = Sentry(app, dsn=os.environ['SENTRY_DSN']) # Set up Bugsnag exception tracking, if desired. To use Bugsnag, install the +diff --git a/setup.py b/setup.py +index 7f9956b..3cab2ae 100644 +--- a/setup.py ++++ b/setup.py +@@ -35,6 +35,6 @@ setup( + include_package_data = True, # include files listed in MANIFEST.in + install_requires=[ + 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlipy', +- 'raven[flask]', 'werkzeug>=0.14.1' ++ 'werkzeug>=0.14.1' + ], + ) diff --git a/dev-python/httpbin/httpbin-0.7.0-r2.ebuild b/dev-python/httpbin/httpbin-0.7.0-r3.ebuild similarity index 97% rename from dev-python/httpbin/httpbin-0.7.0-r2.ebuild rename to dev-python/httpbin/httpbin-0.7.0-r3.ebuild index 8c04217f15d8..99f8b0295ddd 100644 --- a/dev-python/httpbin/httpbin-0.7.0-r2.ebuild +++ b/dev-python/httpbin/httpbin-0.7.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7