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 24162158086 for ; Thu, 21 Oct 2021 12:30:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 686ECE0898; Thu, 21 Oct 2021 12:30:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3DE3DE0898 for ; Thu, 21 Oct 2021 12:30:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F1FF23435EC for ; Thu, 21 Oct 2021 12:30:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2190D8F for ; Thu, 21 Oct 2021 12:30:15 +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: <1634819412.c93c777211efe4da54e15f212a19657452510d06.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paho-mqtt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/paho-mqtt/Manifest dev-python/paho-mqtt/paho-mqtt-1.6.0.ebuild X-VCS-Directories: dev-python/paho-mqtt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c93c777211efe4da54e15f212a19657452510d06 X-VCS-Branch: master Date: Thu, 21 Oct 2021 12:30:15 +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: a6bee0af-39ee-48e4-81cd-f162e1dd6012 X-Archives-Hash: 2efc5751935a816679315cfb21e8e3d7 commit: c93c777211efe4da54e15f212a19657452510d06 Author: Michał Górny gentoo org> AuthorDate: Thu Oct 21 12:00:41 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 21 12:30:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93c7772 dev-python/paho-mqtt: Bump to 1.6.0 Signed-off-by: Michał Górny gentoo.org> dev-python/paho-mqtt/Manifest | 1 + dev-python/paho-mqtt/paho-mqtt-1.6.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/paho-mqtt/Manifest b/dev-python/paho-mqtt/Manifest index 6c31a90cfb4..835b27430be 100644 --- a/dev-python/paho-mqtt/Manifest +++ b/dev-python/paho-mqtt/Manifest @@ -1 +1,2 @@ DIST paho-mqtt-1.5.1.tar.gz 144740 BLAKE2B 1c218f1109476fe9b28c26e1113717448377c53a2b9e01437f93d4a29f77e3b61f59492c263f160825ddcce25f907dbf72d3078954cc378d4846afb435d79bba SHA512 7e686bcc702f70c45ab061aa9833d42c4356d5002d27a035a685ca384a5b7d5e9dfd88ac95183816e08dd131463582707acd1d2e0f6de0f7dbbb6a6d0a615c97 +DIST paho-mqtt-1.6.0.tar.gz 145605 BLAKE2B 8f8dfba1c57520793041221e470258a644a0e5c9d462244615f7d7481d1ef8ef4d3209ea9664c4f34bcd70f07addd7fbfbe5857853339b02a266ad2e43acbf90 SHA512 06a18a83b6743c816b4323324c78906ea8937366424d2c3aab3eac565dff040254f1384500cee9cff60d3931131b9f6298ae24795eaff486b03fc998140ece72 diff --git a/dev-python/paho-mqtt/paho-mqtt-1.6.0.ebuild b/dev-python/paho-mqtt/paho-mqtt-1.6.0.ebuild new file mode 100644 index 00000000000..d920cf440c4 --- /dev/null +++ b/dev-python/paho-mqtt/paho-mqtt-1.6.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A client class with support for MQTT v5.0, v3.1.1, and v3.1" +HOMEPAGE="https://www.eclipse.org/paho/index.php?page=clients/python https://github.com/eclipse/paho.mqtt.python" +SRC_URI="https://github.com/eclipse/paho.mqtt.python/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/paho.mqtt.python-${PV}" + +LICENSE="EPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +BDEPEND=" + test? ( + dev-python/six[${PYTHON_USEDEP}] + ) " + +distutils_enable_tests pytest