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 15BCD1382C5 for ; Tue, 2 Jun 2020 07:16:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29F27E0845; Tue, 2 Jun 2020 07:16:10 +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 EE9CCE0845 for ; Tue, 2 Jun 2020 07:16:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4E52D340A12 for ; Tue, 2 Jun 2020 07:16:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70A82261 for ; Tue, 2 Jun 2020 07:16:05 +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: <1591081861.3e24f76827fb4b305327d68a57216e4c73befd00.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/Rx/, profiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/Rx/Manifest dev-python/Rx/Rx-3.1.0.ebuild profiles/package.mask X-VCS-Directories: profiles/ dev-python/Rx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3e24f76827fb4b305327d68a57216e4c73befd00 X-VCS-Branch: master Date: Tue, 2 Jun 2020 07:16:05 +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: b93745ea-68a8-4669-9415-ef29633cf74c X-Archives-Hash: 7e409c75067944ecb14450b477d1acf6 commit: 3e24f76827fb4b305327d68a57216e4c73befd00 Author: Christopher Head chead ca> AuthorDate: Mon Jun 1 06:18:53 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 2 07:11:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e24f768 dev-python/Rx-3.1.0: bump * Switch to EAPI 7 * Support Python 3.7/3.8/3.9 * Run tests Bug: https://bugs.gentoo.org/708270 Signed-off-by: Christopher Head chead.ca> Closes: https://github.com/gentoo/gentoo/pull/16040 Signed-off-by: Michał Górny gentoo.org> dev-python/Rx/Manifest | 1 + dev-python/Rx/Rx-3.1.0.ebuild | 30 ++++++++++++++++++++++++++++++ profiles/package.mask | 1 - 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/dev-python/Rx/Manifest b/dev-python/Rx/Manifest index 118d4672457..8ad0bfc293a 100644 --- a/dev-python/Rx/Manifest +++ b/dev-python/Rx/Manifest @@ -1 +1,2 @@ DIST Rx-1.6.1.tar.gz 89543 BLAKE2B ee0b6c30c794febdd045231ff61a330a512c86a9dd3c56a6afa900c31ca774725d7bf5b589d46b60f79cd1f0bc967b5ab5bc87a58f6d3dbebbdb1b6618db875d SHA512 8602b5175c058e855ac4b67d8feed435f93632da2f4033fe0db54fcbb012a702786b29f97fe3fd641f054c3a61478dccac21c614b5708f7bfb0b986c9951e6a9 +DIST Rx-3.1.0.tar.gz 890293 BLAKE2B 268f6df5450d1235d50f9aee5cd43fe6e229acf7b2ddab5f1f97e80594aeff7beaa280fe272ac9cc8b80dc6874f4bb76e438e94c09712f2c37e72d8d40f9f283 SHA512 1d9f6639ef08dc991326b95fcbf0978adea55b35acab653fc16bd94ccf2ad3a1515e8cb4e8d2ff38d7a506306e310394339a8651a2a02fa22bfb7f17d86297f1 diff --git a/dev-python/Rx/Rx-3.1.0.ebuild b/dev-python/Rx/Rx-3.1.0.ebuild new file mode 100644 index 00000000000..dca57f5969d --- /dev/null +++ b/dev-python/Rx/Rx-3.1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 python3_7 python3_8 python3_9 ) + +inherit distutils-r1 virtualx + +MY_P="RxPY" +DESCRIPTION="Reactive Extensions for Python" +HOMEPAGE="http://reactivex.io/" +SRC_URI="https://github.com/ReactiveX/${MY_P}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_test() { + virtx distutils-r1_src_test +} diff --git a/profiles/package.mask b/profiles/package.mask index cb0ab1374ca..fc7c7211763 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -90,7 +90,6 @@ dev-python/toro # Outdated. Not touched since the initial commit. Lacks py3.7 support. # No reverse dependencies outside the three packages. # Removal in 30 days. Bug #708270. -dev-python/Rx dev-python/graphql-core dev-python/gql