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 71D9313835A for ; Sun, 7 Jun 2020 07:27:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79CFBE0908; Sun, 7 Jun 2020 07:27:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 60851E08C8 for ; Sun, 7 Jun 2020 07:27:46 +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 3F5B634F0AC for ; Sun, 7 Jun 2020 07:27:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02101288 for ; Sun, 7 Jun 2020 07:27:41 +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: <1591513703.3280a547bcb024268f5d554ed8b36f308f6ff910.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sortedcontainers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sortedcontainers/Manifest dev-python/sortedcontainers/sortedcontainers-2.2.1.ebuild X-VCS-Directories: dev-python/sortedcontainers/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3280a547bcb024268f5d554ed8b36f308f6ff910 X-VCS-Branch: master Date: Sun, 7 Jun 2020 07:27:41 +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: c3b415d9-41b3-4149-869c-a991a7ff7fab X-Archives-Hash: ff71a74f93cdeba794e27da3745435ea commit: 3280a547bcb024268f5d554ed8b36f308f6ff910 Author: Michał Górny gentoo org> AuthorDate: Sun Jun 7 07:08:23 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jun 7 07:08:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3280a547 dev-python/sortedcontainers: Bump to 2.2.1 Signed-off-by: Michał Górny gentoo.org> dev-python/sortedcontainers/Manifest | 1 + .../sortedcontainers/sortedcontainers-2.2.1.ebuild | 28 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/sortedcontainers/Manifest b/dev-python/sortedcontainers/Manifest index fe3923871e9..c9ed13d4b33 100644 --- a/dev-python/sortedcontainers/Manifest +++ b/dev-python/sortedcontainers/Manifest @@ -1 +1,2 @@ DIST python-sortedcontainers-2.1.0.gh.tar.gz 9220860 BLAKE2B a667fa817f0b240b8af9758d5d3942710cfe6a39109c41e6e66d0dd464b300d2201a679335e418442aaa6e1953e38a43b46c2bd6ce631b7c168d6173ca36998e SHA512 1c56daea5d491dbeea9c677677a79ef5c4805325ea3d5da97005cd3b269003a99459550a793dfe65820f152c774371472ba471a7daf61c9d97b36744bafb013b +DIST python-sortedcontainers-2.2.1.gh.tar.gz 9228694 BLAKE2B ccbcaf8ef1582c3229cfd82699b642c9cd86db69f68cca56d35fab05fe6b8bef5281af53eae3b697b1a8d7aaad9140d2f3de611eeb5774319a64ff9c5fc602be SHA512 d4a45c4db9ec86c83c71506525a452fd5716818326635f69fb6e830d86803c5d39821678cb67e142ddd1ae9d093f9bb583c29b6bdc59a18a5ec0213eea4a1e29 diff --git a/dev-python/sortedcontainers/sortedcontainers-2.2.1.ebuild b/dev-python/sortedcontainers/sortedcontainers-2.2.1.ebuild new file mode 100644 index 00000000000..e70f737c3eb --- /dev/null +++ b/dev-python/sortedcontainers/sortedcontainers-2.2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) + +inherit distutils-r1 + +MY_P=python-${P} +DESCRIPTION="Python library to sort collections and containers" +HOMEPAGE="http://www.grantjenks.com/docs/sortedcontainers/ + https://pypi.org/project/sortedcontainers/ + https://github.com/grantjenks/python-sortedcontainers/" +SRC_URI=" + https://github.com/grantjenks/python-sortedcontainers/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests pytest + +python_test() { + local -x PYTHONPATH=. + pytest -vv --ignore docs/conf.py || die "Tests fail with ${EPYTHON}" +}