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 55236138359 for ; Thu, 22 Oct 2020 05:55:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 973E3E08CA; Thu, 22 Oct 2020 05:55:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 7C9E3E08CA for ; Thu, 22 Oct 2020 05:55:20 +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 D080A33BDCC for ; Thu, 22 Oct 2020 05:55:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D1F23B5 for ; Thu, 22 Oct 2020 05:55:17 +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: <1603345116.c3c8c839bb085e87e324cab30b51ff0b2f710017.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/kiwisolver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/kiwisolver/Manifest dev-python/kiwisolver/kiwisolver-1.3.0.ebuild X-VCS-Directories: dev-python/kiwisolver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c3c8c839bb085e87e324cab30b51ff0b2f710017 X-VCS-Branch: master Date: Thu, 22 Oct 2020 05:55:17 +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: da7ca626-4d6e-457b-b760-c124d64733c2 X-Archives-Hash: aac82ecf76b7cccd74a0f70300afe2f0 commit: c3c8c839bb085e87e324cab30b51ff0b2f710017 Author: Michał Górny gentoo org> AuthorDate: Thu Oct 22 05:38:36 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 22 05:38:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c8c839 dev-python/kiwisolver: Bump to 1.3.0 Signed-off-by: Michał Górny gentoo.org> dev-python/kiwisolver/Manifest | 1 + dev-python/kiwisolver/kiwisolver-1.3.0.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest index 57b68f1925c..d7004669eba 100644 --- a/dev-python/kiwisolver/Manifest +++ b/dev-python/kiwisolver/Manifest @@ -1 +1,2 @@ DIST kiwisolver-1.2.0.tar.gz 54244 BLAKE2B 42590c2cbb78b3c2ed568373616e772326bf5a0e133396d9e9cf6468132ec88b45d40f68f51baff7bc22ca261567ebab81cf2585009657bd2a59df4e97c33f1f SHA512 05541ff46cc64b9958d714452138dc7bb343e6cc9308408a3f8cf25242e9640af37f8bfd22a7038e8ca70a895f57bdb983346259bce22b1630ac10b974d00a0e +DIST kiwisolver-1.3.0.tar.gz 86440 BLAKE2B 931a230909a7778aac3bc93fb24538c7b9e0a3cf1dea33fcf374fd6576d56b80a50597d14c6431f659326222c8810416897fcc9ce2725ca5341891f65aedc5b2 SHA512 64bb475f86e6f409318c5030cd2874bf060c26bf6c1ea62bfb96c1ae27f7326fcd6fc575cbdad7351808d18ae9b9f6664eb312019d432cd6a4c0b8af4fa317b6 diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild new file mode 100644 index 00000000000..2d2ec37813a --- /dev/null +++ b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="An efficient C++ implementation of the Cassowary constraint solving algorithm" +HOMEPAGE="https://github.com/nucleic/kiwi" +SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/kiwi-${PV} + +LICENSE="Clear-BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +RDEPEND=" + >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest