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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AEC0D1382C5 for ; Fri, 14 May 2021 17:31:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFAE4E08EC; Fri, 14 May 2021 17:31:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C62E2E08EC for ; Fri, 14 May 2021 17:31:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F4DD340E13 for ; Fri, 14 May 2021 17:31:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACFC1643 for ; Fri, 14 May 2021 17:31:53 +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: <1621013499.bb3520a86b51deb4c0492082092163a505e7ee8d.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/stomp-py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/stomp-py/Manifest dev-python/stomp-py/stomp-py-7.0.0.ebuild X-VCS-Directories: dev-python/stomp-py/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: bb3520a86b51deb4c0492082092163a505e7ee8d X-VCS-Branch: master Date: Fri, 14 May 2021 17:31:53 +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: 2843ee92-c94f-49d6-aa98-d46113f85b40 X-Archives-Hash: f354b56092672b823aa80ecaf50d8767 commit: bb3520a86b51deb4c0492082092163a505e7ee8d Author: Marek Szuba gentoo org> AuthorDate: Fri May 14 17:24:43 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri May 14 17:31:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3520a8 dev-python/stomp-py: add 7.0.0 Nb. ready for python3_10 support, will add it as soon as dev-python/docopt has been updated for this as well. Signed-off-by: Marek Szuba gentoo.org> dev-python/stomp-py/Manifest | 1 + dev-python/stomp-py/stomp-py-7.0.0.ebuild | 33 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/dev-python/stomp-py/Manifest b/dev-python/stomp-py/Manifest index 36c72ae4158..aff0d9f2684 100644 --- a/dev-python/stomp-py/Manifest +++ b/dev-python/stomp-py/Manifest @@ -1 +1,2 @@ DIST stomp.py-6.1.0.tar.gz 34690 BLAKE2B bf7ec2899be25bdc373e7d0d73281a6c4aa8b91a05e6ede263f0f9498b2ba3b9bd2c90b0fe472664c930dadf68ccaf09c74b69e7270259c3959396edff04e07b SHA512 73284b5dac8b9ef0d1251cc1059c4b1a545018a39498303d211fd165f0fb80439f2e01f82e18644cfd5d77a4badedcbced57d184ffc7c19f57945e5262f2394a +DIST stomp.py-7.0.0.tar.gz 34772 BLAKE2B 838ee5ebf520bcf0c65d89b00e94c8cadb77204a4d387fa0261b8b8046d123d436fe587481c9a3db9d515b11fcdf246993c955834ff18b9161ff3355341caa3a SHA512 2cce1803125bb60c98ebf7c58c27130a13a2c42c0135e590752fae7a13a82edf3337c85f6ec2fb050e9ece0d3dc604a526610445a1a410fbe440ac8596608f34 diff --git a/dev-python/stomp-py/stomp-py-7.0.0.ebuild b/dev-python/stomp-py/stomp-py-7.0.0.ebuild new file mode 100644 index 00000000000..3174c667421 --- /dev/null +++ b/dev-python/stomp-py/stomp-py-7.0.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS="pyproject.toml" + +inherit distutils-r1 + +MY_PN="${PN//-/.}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Python client library for the STOMP messaging protocol" +HOMEPAGE="https://pypi.org/project/stomp.py/ https://github.com/jasonrbriggs/stomp.py/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="