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 2E330138334 for ; Wed, 8 May 2019 17:26:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FC46E08CD; Wed, 8 May 2019 17:26:12 +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 45AEFE08CD for ; Wed, 8 May 2019 17:26:12 +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 3E01D343B7A for ; Wed, 8 May 2019 17:26:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8A33452 for ; Wed, 8 May 2019 17:26:09 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1557336364.d33fcd9d4fdabe101d6f95a207d9a7f676e2b76a.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/css-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/css-parser/css-parser-1.0.4-r1.ebuild X-VCS-Directories: dev-python/css-parser/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d33fcd9d4fdabe101d6f95a207d9a7f676e2b76a X-VCS-Branch: master Date: Wed, 8 May 2019 17:26:09 +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: 9e23ff61-20fd-496c-b6fa-66378eee44b9 X-Archives-Hash: 7ad2586b476c45f8def165f4221b9d4c commit: d33fcd9d4fdabe101d6f95a207d9a7f676e2b76a Author: Zamarin Arthur gmail com> AuthorDate: Wed May 8 07:12:55 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 8 17:26:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d33fcd9d dev-python/css-parser: add Python3.7 support, EAPI=7 Closes: https://github.com/gentoo/gentoo/pull/11936 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Zamarin Arthur gmail.com> Signed-off-by: Zac Medico gentoo.org> dev-python/css-parser/css-parser-1.0.4-r1.ebuild | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/dev-python/css-parser/css-parser-1.0.4-r1.ebuild b/dev-python/css-parser/css-parser-1.0.4-r1.ebuild new file mode 100644 index 00000000000..29254e698e3 --- /dev/null +++ b/dev-python/css-parser/css-parser-1.0.4-r1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy ) + +inherit distutils-r1 + +DESCRIPTION="A CSS Cascading Style Sheets library (fork of cssutils)" +HOMEPAGE="https://pypi.org/project/css-parser/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"