From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/websockets/
Date: Wed, 10 May 2023 19:24:17 +0000 (UTC) [thread overview]
Message-ID: <1683746233.9b0f31fe9462ac9b4d7d77de598f6d4eba7a8e80.mgorny@gentoo> (raw)
commit: 9b0f31fe9462ac9b4d7d77de598f6d4eba7a8e80
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 19:17:01 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 10 19:17:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b0f31fe
dev-python/websockets: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/websockets/Manifest | 3 --
dev-python/websockets/websockets-10.4.ebuild | 35 ----------------------
dev-python/websockets/websockets-11.0.1.ebuild | 41 --------------------------
dev-python/websockets/websockets-11.0.ebuild | 41 --------------------------
4 files changed, 120 deletions(-)
diff --git a/dev-python/websockets/Manifest b/dev-python/websockets/Manifest
index e1ab4763d0f3..fedc94cd9e1d 100644
--- a/dev-python/websockets/Manifest
+++ b/dev-python/websockets/Manifest
@@ -1,5 +1,2 @@
-DIST websockets-10.4.gh.tar.gz 309611 BLAKE2B f3a739368ff9d78fef79324af59d1e77b3fb654b8b1a847373a29f19b11ae9266b9a938d235ee27d12b59d9b4cf29825fc7298ff2f35e5b260df2c7a41a1bd78 SHA512 087b1920ff26e21b8d3b80b53249d44b841fc45a4992df1ad725112404f724a41aaa2d759a2bd521dfe337459f8bf0d2ae048c423489f527c68f6825f928b582
-DIST websockets-11.0.1.gh.tar.gz 347321 BLAKE2B 21ebcf13c41f5e7ea5247174684e8e37ac383fe94da7f6a1ebfeaf6024669fd2b362847055775a81cb4a36722526a42b91c9e28e1a8d016918ffe16481375f7b SHA512 a9c3bf215c5c5cf1032cf8f2cd85cc8d78e3486f4e40e301be246181dc64a5543377bc7205695f89f7141b2c48115cbcd1cca6a353ad9d36ac9cb294d48b2e2e
DIST websockets-11.0.2.gh.tar.gz 347575 BLAKE2B 1d609298d072dbd986fa2adcac1c8f80720622fdcd44cb8ab079ba812fa7a750cdd4a5b432a74d422ca3ac8e7baef8e38e227569b8681e033f599fa29b19383c SHA512 e397d7b51c3edcc68fd32dbf8fcd46f5c9230c270be46c45a503108690d5513e2626fc4f4f5d271c831570abeeff51bf27c09ea69459b970a41fb64eb84fc87e
DIST websockets-11.0.3.gh.tar.gz 347652 BLAKE2B b7d796744cb4c7b944e98644dfb9c0e44ba465a6dba71b9e891604f3012b025557dbcd5b7eeae02e71c84350e05b334f99404ddfda814a8984b7a893d3f092f7 SHA512 37a84d7c57da7a3e48870abf992ba96ee454b342610d51c06f7dfc7ee082b7fb51304518c208379c3dbd039eafb1a85444c257fed20b4605a52dc8fc938a4cca
-DIST websockets-11.0.gh.tar.gz 347307 BLAKE2B b40b8e88375a1e5e0f6ae1c73169703d206800dcec15d858a0360374701b681ec17c457b014a29dc34962ca1f62261a8b8298e34092429864d790dd4a060e8d8 SHA512 367347464d5d721ad65055743df92311e7d98d0391ff437ab8c3224f1c1e4193b5abbdbf1498cd040d9b30251e6bc051e9c1ec54122b87e4c937026e0f6f3b8e
diff --git a/dev-python/websockets/websockets-10.4.ebuild b/dev-python/websockets/websockets-10.4.ebuild
deleted file mode 100644
index 27f8123c30f1..000000000000
--- a/dev-python/websockets/websockets-10.4.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for building WebSocket servers and clients in Python"
-HOMEPAGE="
- https://websockets.readthedocs.io/
- https://github.com/aaugustin/websockets/
- https://pypi.org/project/websockets/
-"
-SRC_URI="
- https://github.com/aaugustin/websockets/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # very fragile to speed
- tests/legacy/test_protocol.py::ServerTests::test_local_close_receive_close_frame_timeout
- )
-
- epytest tests
-}
diff --git a/dev-python/websockets/websockets-11.0.1.ebuild b/dev-python/websockets/websockets-11.0.1.ebuild
deleted file mode 100644
index b9486a23c5db..000000000000
--- a/dev-python/websockets/websockets-11.0.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for building WebSocket servers and clients in Python"
-HOMEPAGE="
- https://websockets.readthedocs.io/
- https://github.com/aaugustin/websockets/
- https://pypi.org/project/websockets/
-"
-# tests are missing pypi sdist, as of 11.0
-SRC_URI="
- https://github.com/aaugustin/websockets/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-IUSE="+native-extensions"
-
-distutils_enable_tests pytest
-
-src_configure() {
- export BUILD_EXTENSION=$(usex native-extensions)
-}
-
-python_test() {
- local EPYTEST_DESELECT=(
- # very fragile to speed
- tests/legacy/test_protocol.py::ServerTests::test_local_close_receive_close_frame_timeout
- )
-
- epytest tests
-}
diff --git a/dev-python/websockets/websockets-11.0.ebuild b/dev-python/websockets/websockets-11.0.ebuild
deleted file mode 100644
index b9486a23c5db..000000000000
--- a/dev-python/websockets/websockets-11.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for building WebSocket servers and clients in Python"
-HOMEPAGE="
- https://websockets.readthedocs.io/
- https://github.com/aaugustin/websockets/
- https://pypi.org/project/websockets/
-"
-# tests are missing pypi sdist, as of 11.0
-SRC_URI="
- https://github.com/aaugustin/websockets/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-IUSE="+native-extensions"
-
-distutils_enable_tests pytest
-
-src_configure() {
- export BUILD_EXTENSION=$(usex native-extensions)
-}
-
-python_test() {
- local EPYTEST_DESELECT=(
- # very fragile to speed
- tests/legacy/test_protocol.py::ServerTests::test_local_close_receive_close_frame_timeout
- )
-
- epytest tests
-}
next reply other threads:[~2023-05-10 19:24 UTC|newest]
Thread overview: 148+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-10 19:24 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-20 5:34 [gentoo-commits] repo/gentoo:master commit in: dev-python/websockets/ Michał Górny
2025-01-20 5:34 Michał Górny
2024-11-30 13:37 Sam James
2024-11-30 12:13 Jakov Smolić
2024-11-30 12:04 Arthur Zamarin
2024-11-30 11:40 Michał Górny
2024-11-30 11:40 Michał Górny
2024-11-14 4:39 Michał Górny
2024-11-10 3:24 Michał Górny
2024-10-13 12:17 Sam James
2024-10-12 14:57 Sam James
2024-10-12 14:57 Sam James
2024-10-10 12:20 Arthur Zamarin
2024-10-08 18:52 Arthur Zamarin
2024-10-08 18:52 Arthur Zamarin
2024-10-05 12:51 Sam James
2024-10-05 8:22 Arthur Zamarin
2024-09-22 2:28 Michał Górny
2024-08-29 4:52 Michał Górny
2024-05-11 17:36 Michał Górny
2023-11-29 7:44 Michał Górny
2023-11-29 6:15 Arthur Zamarin
2023-11-29 6:14 Arthur Zamarin
2023-11-29 6:14 Arthur Zamarin
2023-11-23 19:53 Sam James
2023-11-22 12:12 Arthur Zamarin
2023-11-22 11:56 Sam James
2023-11-22 11:11 Sam James
2023-11-22 11:06 Michał Górny
2023-10-22 6:55 Michał Górny
2023-10-18 15:56 Michał Górny
2023-10-18 10:18 Sam James
2023-10-18 10:18 Sam James
2023-10-18 10:18 Sam James
2023-10-18 10:18 Sam James
2023-10-18 10:18 Sam James
2023-10-14 18:17 Arthur Zamarin
2023-10-14 16:59 Arthur Zamarin
2023-10-14 16:53 Arthur Zamarin
2023-10-14 16:52 Arthur Zamarin
2023-10-02 15:41 Sam James
2023-10-02 15:41 Sam James
2023-09-01 12:16 Sam James
2023-08-04 20:20 Arthur Zamarin
2023-07-15 13:15 Arthur Zamarin
2023-07-03 18:55 Michał Górny
2023-06-10 4:20 Sam James
2023-06-09 18:02 Arthur Zamarin
2023-05-30 19:00 Sam James
2023-05-10 17:23 Arthur Zamarin
2023-05-10 17:22 Arthur Zamarin
2023-05-08 4:36 Michał Górny
2023-05-05 13:24 Arthur Zamarin
2023-05-05 9:39 Arthur Zamarin
2023-05-05 8:02 Arthur Zamarin
2023-05-05 7:42 Sam James
2023-05-05 7:36 Arthur Zamarin
2023-05-05 6:56 Arthur Zamarin
2023-04-29 5:48 Michał Górny
2023-04-07 4:19 Michał Górny
2023-04-03 2:57 Michał Górny
2023-02-13 3:22 Matt Turner
2022-12-02 11:55 Arthur Zamarin
2022-11-25 19:11 Sam James
2022-11-25 14:01 Arthur Zamarin
2022-11-25 14:00 Arthur Zamarin
2022-11-25 13:57 Arthur Zamarin
2022-11-25 13:52 Arthur Zamarin
2022-11-25 13:50 Arthur Zamarin
2022-11-25 13:47 Arthur Zamarin
2022-10-26 4:03 Michał Górny
2022-06-05 10:35 Michał Górny
2022-06-05 9:08 Sam James
2022-05-31 11:05 Jakov Smolić
2022-05-31 11:05 Jakov Smolić
2022-05-31 8:54 Agostino Sarubbo
2022-05-31 8:51 Agostino Sarubbo
2022-05-31 8:01 Jakov Smolić
2022-05-31 7:56 Jakov Smolić
2022-05-31 7:56 Jakov Smolić
2022-05-11 12:56 Jakov Smolić
2022-05-01 1:52 WANG Xuerui
2022-04-18 8:19 Michał Górny
2022-04-08 14:34 Arthur Zamarin
2022-04-08 14:23 Arthur Zamarin
2022-04-08 14:23 Arthur Zamarin
2022-04-08 11:09 Michał Górny
2022-04-08 11:09 Michał Górny
2022-04-02 14:19 Arthur Zamarin
2022-03-28 6:51 Agostino Sarubbo
2022-03-27 6:27 Agostino Sarubbo
2022-03-26 19:45 Sam James
2022-03-26 19:15 Arthur Zamarin
2022-03-26 17:42 Arthur Zamarin
2022-03-26 16:52 Arthur Zamarin
2022-02-21 9:15 Michał Górny
2021-12-16 7:44 Agostino Sarubbo
2021-12-15 17:26 Arthur Zamarin
2021-12-15 17:08 Arthur Zamarin
2021-12-15 17:08 Arthur Zamarin
2021-12-15 16:59 Arthur Zamarin
2021-12-15 16:56 Arthur Zamarin
2021-12-15 16:50 Jakov Smolić
2021-12-15 16:49 Arthur Zamarin
2021-12-03 20:47 Arthur Zamarin
2021-12-03 16:41 Michał Górny
2021-11-18 9:09 Sam James
2021-11-15 8:34 Michał Górny
2021-11-13 21:09 Jakov Smolić
2021-11-13 19:50 Sam James
2021-10-31 18:03 Sam James
2021-10-30 7:52 James Le Cuirot
2021-10-20 0:11 Sam James
2021-10-16 1:14 Sam James
2021-10-15 22:43 Sam James
2021-09-25 7:45 Michał Górny
2021-09-25 5:18 Agostino Sarubbo
2021-09-18 12:30 Agostino Sarubbo
2021-09-18 4:25 Sam James
2021-09-17 14:14 Agostino Sarubbo
2021-09-17 9:19 Agostino Sarubbo
2021-09-16 18:56 Sam James
2021-09-16 6:29 Sam James
2021-08-24 21:02 Marek Szuba
2021-08-05 18:53 Louis Sautier
2021-07-27 5:37 Michał Górny
2021-07-26 2:14 Sam James
2021-07-26 2:14 Sam James
2021-06-17 15:56 Sergei Trofimovich
2021-05-30 10:08 Michał Górny
2021-05-30 5:15 Sam James
2021-05-29 8:41 Agostino Sarubbo
2021-05-28 7:35 Agostino Sarubbo
2021-05-27 23:18 Michał Górny
2021-05-18 17:28 Sam James
2021-05-15 21:18 Michał Górny
2021-05-03 9:16 Michał Górny
2021-05-02 15:12 Michał Górny
2021-05-02 15:12 Michał Górny
2021-02-18 16:46 Rick Farina
2021-02-18 8:20 Sam James
2021-02-15 2:19 Rick Farina
2020-12-21 22:39 Sam James
2020-12-20 17:24 Sam James
2020-12-20 16:50 Sam James
2020-09-30 21:20 James Le Cuirot
2020-04-25 15:49 James Le Cuirot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1683746233.9b0f31fe9462ac9b4d7d77de598f6d4eba7a8e80.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox